@joeygrable94/utm-src-pub-validators 0.0.115 → 0.0.116
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 +1772 -1934
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +68 -186
- package/dist/index.d.ts +68 -186
- package/dist/index.js +1778 -1925
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,25 +1,18 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
|
|
3
|
-
declare const SQuerySortDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
4
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>, "updatedAt">;
|
|
5
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
6
|
-
}, undefined>, undefined>;
|
|
7
|
-
type SQuerySortDocuments = v.InferOutput<typeof SQuerySortDocuments>;
|
|
8
3
|
declare const SQueryListDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
9
4
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
10
|
-
readonly page: v.
|
|
11
|
-
readonly size: v.
|
|
12
|
-
readonly sort: v.OptionalSchema<v.
|
|
13
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>, "updatedAt">;
|
|
14
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
15
|
-
}, undefined>, undefined>;
|
|
5
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
6
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
7
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC")[], number, undefined>]>, undefined>;
|
|
16
8
|
}, undefined>, undefined>;
|
|
17
9
|
type SQueryListDocuments = v.InferOutput<typeof SQueryListDocuments>;
|
|
18
10
|
|
|
19
11
|
declare const SQueryListGroupUserDocuments: v.ObjectSchema<{
|
|
20
12
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
21
|
-
readonly page: v.
|
|
22
|
-
readonly size: v.
|
|
13
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
14
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
15
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "scopes:ASC" | "scopes:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "scopes:ASC" | "scopes:DESC")[], number, undefined>]>, undefined>;
|
|
23
16
|
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>;
|
|
24
17
|
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>;
|
|
25
18
|
}, undefined>;
|
|
@@ -72,24 +65,16 @@ declare const SGroupUserDocumentStatus: v.ObjectSchema<{
|
|
|
72
65
|
}, undefined>;
|
|
73
66
|
type SGroupUserDocumentStatus = v.InferOutput<typeof SGroupUserDocumentStatus>;
|
|
74
67
|
|
|
75
|
-
declare const SQuerySortGroupDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
76
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "apply_value_to", "apply_value_as", "createdAt", "updatedAt"], undefined>, "label">;
|
|
77
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
78
|
-
}, undefined>, undefined>;
|
|
79
|
-
type SQuerySortGroupDocuments = v.InferOutput<typeof SQuerySortGroupDocuments>;
|
|
80
68
|
declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
81
|
-
readonly page: v.
|
|
82
|
-
readonly size: v.
|
|
69
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
70
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
71
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "apply_value_to:ASC" | "apply_value_as:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC" | "apply_value_to:DESC" | "apply_value_as:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "apply_value_to:ASC" | "apply_value_as:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC" | "apply_value_to:DESC" | "apply_value_as:DESC")[], number, undefined>]>, undefined>;
|
|
83
72
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
84
73
|
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, 16, "the value is too long, it must be 16 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
85
74
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
86
75
|
readonly apply_value_to: v.OptionalSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
87
76
|
readonly apply_value_as: v.OptionalSchema<v.PicklistSchema<readonly ["prefix", "suffix"], undefined>, undefined>;
|
|
88
77
|
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>;
|
|
89
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
90
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "apply_value_to", "apply_value_as", "createdAt", "updatedAt"], undefined>, "label">;
|
|
91
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
92
|
-
}, undefined>, undefined>;
|
|
93
78
|
}, undefined>;
|
|
94
79
|
type SQueryListGroupDocuments = v.InferOutput<typeof SQueryListGroupDocuments>;
|
|
95
80
|
declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
@@ -410,15 +395,11 @@ declare const SStripeCheckoutCreateSession: v.ObjectSchema<{
|
|
|
410
395
|
}, undefined>;
|
|
411
396
|
type SStripeCheckoutCreateSession = v.InferOutput<typeof SStripeCheckoutCreateSession>;
|
|
412
397
|
|
|
413
|
-
declare const SQuerySortTrackingLinkDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
414
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "url", "destination", "is_active", "protocol", "domain", "path", "query", "fragment", "utm_source", "utm_medium", "utm_campaign", "utm_creative_format", "utm_content", "utm_term", "utm_id", "createdAt", "updatedAt"], undefined>, "createdAt">;
|
|
415
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
416
|
-
}, undefined>, undefined>;
|
|
417
|
-
type SQuerySortTrackingLinkDocuments = v.InferOutput<typeof SQuerySortTrackingLinkDocuments>;
|
|
418
398
|
declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
419
399
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
420
|
-
readonly page: v.
|
|
421
|
-
readonly size: v.
|
|
400
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
401
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
402
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "is_active:ASC" | "value:DESC" | "is_active:DESC" | "path:ASC" | "query:ASC" | "fragment:ASC" | "utm_source:ASC" | "utm_medium:ASC" | "utm_campaign:ASC" | "utm_creative_format:ASC" | "utm_content:ASC" | "utm_term:ASC" | "utm_id:ASC" | "destination:ASC" | "protocol:ASC" | "domain:ASC" | "path:DESC" | "query:DESC" | "fragment:DESC" | "utm_source:DESC" | "utm_medium:DESC" | "utm_campaign:DESC" | "utm_creative_format:DESC" | "utm_content:DESC" | "utm_term:DESC" | "utm_id:DESC" | "destination:DESC" | "protocol:DESC" | "domain:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "is_active:ASC" | "value:DESC" | "is_active:DESC" | "path:ASC" | "query:ASC" | "fragment:ASC" | "utm_source:ASC" | "utm_medium:ASC" | "utm_campaign:ASC" | "utm_creative_format:ASC" | "utm_content:ASC" | "utm_term:ASC" | "utm_id:ASC" | "destination:ASC" | "protocol:ASC" | "domain:ASC" | "path:DESC" | "query:DESC" | "fragment:DESC" | "utm_source:DESC" | "utm_medium:DESC" | "utm_campaign:DESC" | "utm_creative_format:DESC" | "utm_content:DESC" | "utm_term:DESC" | "utm_id:DESC" | "destination:DESC" | "protocol:DESC" | "domain:DESC")[], number, undefined>]>, undefined>;
|
|
422
403
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
423
404
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
424
405
|
readonly destination: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
@@ -436,10 +417,6 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
436
417
|
readonly utm_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
437
418
|
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>;
|
|
438
419
|
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>;
|
|
439
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
440
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "url", "destination", "is_active", "protocol", "domain", "path", "query", "fragment", "utm_source", "utm_medium", "utm_campaign", "utm_creative_format", "utm_content", "utm_term", "utm_id", "createdAt", "updatedAt"], undefined>, "createdAt">;
|
|
441
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
442
|
-
}, undefined>, undefined>;
|
|
443
420
|
}, undefined>;
|
|
444
421
|
type SQueryListTrackingLinkDocuments = v.InferOutput<typeof SQueryListTrackingLinkDocuments>;
|
|
445
422
|
declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
@@ -695,8 +672,9 @@ type SDeleteTrackingLinkDocument = v.InferOutput<typeof SDeleteTrackingLinkDocum
|
|
|
695
672
|
|
|
696
673
|
declare const SQueryListUserAccountDocuments: v.ObjectSchema<{
|
|
697
674
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
698
|
-
readonly page: v.
|
|
699
|
-
readonly size: v.
|
|
675
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
676
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
677
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "customer_id:ASC" | "subscription_id:ASC" | "current_period_start:ASC" | "current_period_end:ASC" | "trial_period_end:ASC" | "subscription_status:ASC" | "customer_id:DESC" | "subscription_id:DESC" | "current_period_start:DESC" | "current_period_end:DESC" | "trial_period_end:DESC" | "subscription_status:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "customer_id:ASC" | "subscription_id:ASC" | "current_period_start:ASC" | "current_period_end:ASC" | "trial_period_end:ASC" | "subscription_status:ASC" | "customer_id:DESC" | "subscription_id:DESC" | "current_period_start:DESC" | "current_period_end:DESC" | "trial_period_end:DESC" | "subscription_status:DESC")[], number, undefined>]>, undefined>;
|
|
700
678
|
readonly customer_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a customer ID">, v.TrimAction, v.MaxLengthAction<string, 255, "the customer ID is too long, it must be 255 characters or less">]>, undefined>;
|
|
701
679
|
readonly subscription_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a subscription ID">, v.TrimAction, v.MaxLengthAction<string, 255, "the subscription ID is too long, it must be 255 characters or less">]>, undefined>;
|
|
702
680
|
readonly subscription_status: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a subscription status">, v.TrimAction, v.PicklistSchema<readonly ["incomplete", "incomplete_expired", "trialing", "active", "past_due", "canceled", "unpaid", "paused"], undefined>]>, undefined>;
|
|
@@ -738,8 +716,9 @@ type SUpdateUserAccountDocument = v.InferOutput<typeof SUpdateUserAccountDocumen
|
|
|
738
716
|
|
|
739
717
|
declare const SQueryListUserLimitationDocuments: v.ObjectSchema<{
|
|
740
718
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
741
|
-
readonly page: v.
|
|
742
|
-
readonly size: v.
|
|
719
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
720
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
721
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "limit_groups:ASC" | "limit_group_users:ASC" | "limit_websites:ASC" | "limit_tracking_links:ASC" | "limit_sources:ASC" | "limit_mediums:ASC" | "limit_campaign_ids:ASC" | "limit_campaign_keys:ASC" | "limit_campaign_phases:ASC" | "limit_campaign_products:ASC" | "limit_campaign_targets:ASC" | "limit_contents:ASC" | "limit_creative_formats:ASC" | "limit_creative_format_variants:ASC" | "limit_terms:ASC" | "limit_groups:DESC" | "limit_group_users:DESC" | "limit_websites:DESC" | "limit_tracking_links:DESC" | "limit_sources:DESC" | "limit_mediums:DESC" | "limit_campaign_ids:DESC" | "limit_campaign_keys:DESC" | "limit_campaign_phases:DESC" | "limit_campaign_products:DESC" | "limit_campaign_targets:DESC" | "limit_contents:DESC" | "limit_creative_formats:DESC" | "limit_creative_format_variants:DESC" | "limit_terms:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "limit_groups:ASC" | "limit_group_users:ASC" | "limit_websites:ASC" | "limit_tracking_links:ASC" | "limit_sources:ASC" | "limit_mediums:ASC" | "limit_campaign_ids:ASC" | "limit_campaign_keys:ASC" | "limit_campaign_phases:ASC" | "limit_campaign_products:ASC" | "limit_campaign_targets:ASC" | "limit_contents:ASC" | "limit_creative_formats:ASC" | "limit_creative_format_variants:ASC" | "limit_terms:ASC" | "limit_groups:DESC" | "limit_group_users:DESC" | "limit_websites:DESC" | "limit_tracking_links:DESC" | "limit_sources:DESC" | "limit_mediums:DESC" | "limit_campaign_ids:DESC" | "limit_campaign_keys:DESC" | "limit_campaign_phases:DESC" | "limit_campaign_products:DESC" | "limit_campaign_targets:DESC" | "limit_contents:DESC" | "limit_creative_formats:DESC" | "limit_creative_format_variants:DESC" | "limit_terms:DESC")[], number, undefined>]>, undefined>;
|
|
743
722
|
}, undefined>;
|
|
744
723
|
type SQueryListUserLimitationDocuments = v.InferOutput<typeof SQueryListUserLimitationDocuments>;
|
|
745
724
|
declare const SCreateUserLimitationsDocument: v.ObjectSchema<{
|
|
@@ -788,28 +767,20 @@ declare const SUpdateUserLimitationsDocument: v.ObjectSchema<{
|
|
|
788
767
|
}, undefined>;
|
|
789
768
|
type SUpdateUserLimitationsDocument = v.InferOutput<typeof SUpdateUserLimitationsDocument>;
|
|
790
769
|
|
|
791
|
-
declare const SQuerySortUserDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
792
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "email", "username", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>, "createdAt">;
|
|
793
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
794
|
-
}, undefined>, undefined>;
|
|
795
|
-
type SQuerySortUserDocuments = v.InferOutput<typeof SQuerySortUserDocuments>;
|
|
796
770
|
declare const SQueryListUserDocuments: v.ObjectSchema<{
|
|
797
|
-
readonly page: v.
|
|
798
|
-
readonly size: v.
|
|
771
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
772
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
773
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "email:ASC" | "username:ASC" | "provider:ASC" | "confirmed:ASC" | "blocked:ASC" | "email:DESC" | "username:DESC" | "provider:DESC" | "confirmed:DESC" | "blocked:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "email:ASC" | "username:ASC" | "provider:ASC" | "confirmed:ASC" | "blocked:ASC" | "email:DESC" | "username:DESC" | "provider:DESC" | "confirmed:DESC" | "blocked:DESC")[], number, undefined>]>, undefined>;
|
|
799
774
|
readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 6, "your email is too short, it must be at least 6 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>;
|
|
800
775
|
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>;
|
|
801
776
|
readonly confirmed: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
802
777
|
readonly blocked: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
803
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
804
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "email", "username", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>, "createdAt">;
|
|
805
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
806
|
-
}, undefined>, undefined>;
|
|
807
778
|
}, undefined>;
|
|
808
779
|
type SQueryListUserDocuments = v.InferOutput<typeof SQueryListUserDocuments>;
|
|
809
780
|
declare const SQueryListUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
810
781
|
readonly identifier: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
811
|
-
readonly page: v.
|
|
812
|
-
readonly size: v.
|
|
782
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
783
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
813
784
|
}, undefined>;
|
|
814
785
|
type SQueryListUserDocumentsByIdentifier = v.InferOutput<typeof SQueryListUserDocumentsByIdentifier>;
|
|
815
786
|
declare const SCreateUserDocument: v.ObjectSchema<{
|
|
@@ -839,15 +810,11 @@ declare const SUpdateUserDocument: v.ObjectSchema<{
|
|
|
839
810
|
}, undefined>;
|
|
840
811
|
type SUpdateUserDocument = v.InferOutput<typeof SUpdateUserDocument>;
|
|
841
812
|
|
|
842
|
-
declare const SQuerySortCampaignIdDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
843
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "cost", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
844
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
845
|
-
}, undefined>, undefined>;
|
|
846
|
-
type SQuerySortCampaignIdDocuments = v.InferOutput<typeof SQuerySortCampaignIdDocuments>;
|
|
847
813
|
declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
|
|
848
814
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
849
|
-
readonly page: v.
|
|
850
|
-
readonly size: v.
|
|
815
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
816
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
817
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC" | "cost:ASC" | "cost:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC" | "cost:ASC" | "cost:DESC")[], number, undefined>]>, undefined>;
|
|
851
818
|
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
819
|
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
820
|
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>;
|
|
@@ -856,10 +823,6 @@ declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
|
|
|
856
823
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
857
824
|
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
825
|
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>;
|
|
859
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
860
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "cost", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
861
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
862
|
-
}, undefined>, undefined>;
|
|
863
826
|
}, undefined>;
|
|
864
827
|
type SQueryListCampaignIdDocuments = v.InferOutput<typeof SQueryListCampaignIdDocuments>;
|
|
865
828
|
declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
@@ -951,24 +914,16 @@ declare const SDeleteCampaignIdDocument: v.ObjectSchema<{
|
|
|
951
914
|
}, undefined>;
|
|
952
915
|
type SDeleteCampaignIdDocument = v.InferOutput<typeof SDeleteCampaignIdDocument>;
|
|
953
916
|
|
|
954
|
-
declare const SQuerySortCampaignKeyDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
955
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
956
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
957
|
-
}, undefined>, undefined>;
|
|
958
|
-
type SQuerySortCampaignKeyDocuments = v.InferOutput<typeof SQuerySortCampaignKeyDocuments>;
|
|
959
917
|
declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
|
|
960
918
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
961
|
-
readonly page: v.
|
|
962
|
-
readonly size: v.
|
|
919
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
920
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
921
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
963
922
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
964
923
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
965
924
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
966
925
|
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>;
|
|
967
926
|
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>;
|
|
968
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
969
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
970
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
971
|
-
}, undefined>, undefined>;
|
|
972
927
|
}, undefined>;
|
|
973
928
|
type SQueryListCampaignKeyDocuments = v.InferOutput<typeof SQueryListCampaignKeyDocuments>;
|
|
974
929
|
declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
@@ -1054,24 +1009,16 @@ declare const SDeleteCampaignKeyDocument: v.ObjectSchema<{
|
|
|
1054
1009
|
}, undefined>;
|
|
1055
1010
|
type SDeleteCampaignKeyDocument = v.InferOutput<typeof SDeleteCampaignKeyDocument>;
|
|
1056
1011
|
|
|
1057
|
-
declare const SQuerySortCampaignPhaseDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1058
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1059
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1060
|
-
}, undefined>, undefined>;
|
|
1061
|
-
type SQuerySortCampaignPhaseDocuments = v.InferOutput<typeof SQuerySortCampaignPhaseDocuments>;
|
|
1062
1012
|
declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
|
|
1063
1013
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1064
|
-
readonly page: v.
|
|
1065
|
-
readonly size: v.
|
|
1014
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1015
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1016
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1066
1017
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1067
1018
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1068
1019
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1069
1020
|
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>;
|
|
1070
1021
|
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>;
|
|
1071
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1072
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1073
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1074
|
-
}, undefined>, undefined>;
|
|
1075
1022
|
}, undefined>;
|
|
1076
1023
|
type SQueryListCampaignPhaseDocuments = v.InferOutput<typeof SQueryListCampaignPhaseDocuments>;
|
|
1077
1024
|
declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
@@ -1157,24 +1104,16 @@ declare const SDeleteCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
1157
1104
|
}, undefined>;
|
|
1158
1105
|
type SDeleteCampaignPhaseDocument = v.InferOutput<typeof SDeleteCampaignPhaseDocument>;
|
|
1159
1106
|
|
|
1160
|
-
declare const SQuerySortCampaignProductDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1161
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1162
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1163
|
-
}, undefined>, undefined>;
|
|
1164
|
-
type SQuerySortCampaignProductDocuments = v.InferOutput<typeof SQuerySortCampaignProductDocuments>;
|
|
1165
1107
|
declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
|
|
1166
1108
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1167
|
-
readonly page: v.
|
|
1168
|
-
readonly size: v.
|
|
1109
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1110
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1111
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1169
1112
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1170
1113
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1171
1114
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1172
1115
|
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>;
|
|
1173
1116
|
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>;
|
|
1174
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1175
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1176
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1177
|
-
}, undefined>, undefined>;
|
|
1178
1117
|
}, undefined>;
|
|
1179
1118
|
type SQueryListCampaignProductDocuments = v.InferOutput<typeof SQueryListCampaignProductDocuments>;
|
|
1180
1119
|
declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
@@ -1260,24 +1199,16 @@ declare const SDeleteCampaignProductDocument: v.ObjectSchema<{
|
|
|
1260
1199
|
}, undefined>;
|
|
1261
1200
|
type SDeleteCampaignProductDocument = v.InferOutput<typeof SDeleteCampaignProductDocument>;
|
|
1262
1201
|
|
|
1263
|
-
declare const SQuerySortCampaignTargetDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1264
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1265
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1266
|
-
}, undefined>, undefined>;
|
|
1267
|
-
type SQuerySortCampaignTargetDocuments = v.InferOutput<typeof SQuerySortCampaignTargetDocuments>;
|
|
1268
1202
|
declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
|
|
1269
1203
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1270
|
-
readonly page: v.
|
|
1271
|
-
readonly size: v.
|
|
1204
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1205
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1206
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1272
1207
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1273
1208
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1274
1209
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1275
1210
|
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>;
|
|
1276
1211
|
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>;
|
|
1277
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1278
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1279
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1280
|
-
}, undefined>, undefined>;
|
|
1281
1212
|
}, undefined>;
|
|
1282
1213
|
type SQueryListCampaignTargetDocuments = v.InferOutput<typeof SQueryListCampaignTargetDocuments>;
|
|
1283
1214
|
declare const SCreateCampaignTargetDocument: v.ObjectSchema<{
|
|
@@ -1363,24 +1294,16 @@ declare const SDeleteCampaignTargetDocument: v.ObjectSchema<{
|
|
|
1363
1294
|
}, undefined>;
|
|
1364
1295
|
type SDeleteCampaignTargetDocument = v.InferOutput<typeof SDeleteCampaignTargetDocument>;
|
|
1365
1296
|
|
|
1366
|
-
declare const SQuerySortContentDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1367
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1368
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1369
|
-
}, undefined>, undefined>;
|
|
1370
|
-
type SQuerySortContentDocuments = v.InferOutput<typeof SQuerySortContentDocuments>;
|
|
1371
1297
|
declare const SQueryListContentDocuments: v.ObjectSchema<{
|
|
1372
1298
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1373
|
-
readonly page: v.
|
|
1374
|
-
readonly size: v.
|
|
1299
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1300
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1301
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1375
1302
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1376
1303
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1377
1304
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1378
1305
|
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>;
|
|
1379
1306
|
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>;
|
|
1380
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1381
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1382
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1383
|
-
}, undefined>, undefined>;
|
|
1384
1307
|
}, undefined>;
|
|
1385
1308
|
type SQueryListContentDocuments = v.InferOutput<typeof SQueryListContentDocuments>;
|
|
1386
1309
|
declare const SCreateContentDocument: v.ObjectSchema<{
|
|
@@ -1466,24 +1389,16 @@ declare const SDeleteContentDocument: v.ObjectSchema<{
|
|
|
1466
1389
|
}, undefined>;
|
|
1467
1390
|
type SDeleteContentDocument = v.InferOutput<typeof SDeleteContentDocument>;
|
|
1468
1391
|
|
|
1469
|
-
declare const SQuerySortCreativeFormatVariantDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1470
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1471
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1472
|
-
}, undefined>, undefined>;
|
|
1473
|
-
type SQuerySortCreativeFormatVariantDocuments = v.InferOutput<typeof SQuerySortCreativeFormatVariantDocuments>;
|
|
1474
1392
|
declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
1475
1393
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1476
|
-
readonly page: v.
|
|
1477
|
-
readonly size: v.
|
|
1394
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1395
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1396
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1478
1397
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1479
1398
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1480
1399
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1481
1400
|
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>;
|
|
1482
1401
|
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>;
|
|
1483
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1484
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1485
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1486
|
-
}, undefined>, undefined>;
|
|
1487
1402
|
}, undefined>;
|
|
1488
1403
|
type SQueryListCreativeFormatVariantDocuments = v.InferOutput<typeof SQueryListCreativeFormatVariantDocuments>;
|
|
1489
1404
|
declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
@@ -1569,24 +1484,16 @@ declare const SDeleteCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
1569
1484
|
}, undefined>;
|
|
1570
1485
|
type SDeleteCreativeFormatVariantDocument = v.InferOutput<typeof SDeleteCreativeFormatVariantDocument>;
|
|
1571
1486
|
|
|
1572
|
-
declare const SQuerySortCreativeFormatDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1573
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1574
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1575
|
-
}, undefined>, undefined>;
|
|
1576
|
-
type SQuerySortCreativeFormatDocuments = v.InferOutput<typeof SQuerySortCreativeFormatDocuments>;
|
|
1577
1487
|
declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
|
|
1578
1488
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1579
|
-
readonly page: v.
|
|
1580
|
-
readonly size: v.
|
|
1489
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1490
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1491
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1581
1492
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1582
1493
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1583
1494
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1584
1495
|
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>;
|
|
1585
1496
|
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>;
|
|
1586
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1587
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1588
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1589
|
-
}, undefined>, undefined>;
|
|
1590
1497
|
}, undefined>;
|
|
1591
1498
|
type SQueryListCreativeFormatDocuments = v.InferOutput<typeof SQueryListCreativeFormatDocuments>;
|
|
1592
1499
|
declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
@@ -1672,24 +1579,16 @@ declare const SDeleteCreativeFormatDocument: v.ObjectSchema<{
|
|
|
1672
1579
|
}, undefined>;
|
|
1673
1580
|
type SDeleteCreativeFormatDocument = v.InferOutput<typeof SDeleteCreativeFormatDocument>;
|
|
1674
1581
|
|
|
1675
|
-
declare const SQuerySortMediumDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1676
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1677
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1678
|
-
}, undefined>, undefined>;
|
|
1679
|
-
type SQuerySortMediumDocuments = v.InferOutput<typeof SQuerySortMediumDocuments>;
|
|
1680
1582
|
declare const SQueryListMediumDocuments: v.ObjectSchema<{
|
|
1681
1583
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1682
|
-
readonly page: v.
|
|
1683
|
-
readonly size: v.
|
|
1584
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1585
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1586
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1684
1587
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1685
1588
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1686
1589
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1687
1590
|
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>;
|
|
1688
1591
|
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>;
|
|
1689
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1690
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1691
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1692
|
-
}, undefined>, undefined>;
|
|
1693
1592
|
}, undefined>;
|
|
1694
1593
|
type SQueryListMediumDocuments = v.InferOutput<typeof SQueryListMediumDocuments>;
|
|
1695
1594
|
declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
@@ -1775,24 +1674,16 @@ declare const SDeleteMediumDocument: v.ObjectSchema<{
|
|
|
1775
1674
|
}, undefined>;
|
|
1776
1675
|
type SDeleteMediumDocument = v.InferOutput<typeof SDeleteMediumDocument>;
|
|
1777
1676
|
|
|
1778
|
-
declare const SQuerySortSourceDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1779
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1780
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1781
|
-
}, undefined>, undefined>;
|
|
1782
|
-
type SQuerySortSourceDocuments = v.InferOutput<typeof SQuerySortSourceDocuments>;
|
|
1783
1677
|
declare const SQueryListSourceDocuments: v.ObjectSchema<{
|
|
1784
1678
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1785
|
-
readonly page: v.
|
|
1786
|
-
readonly size: v.
|
|
1679
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1680
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1681
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1787
1682
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1788
1683
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1789
1684
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1790
1685
|
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>;
|
|
1791
1686
|
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>;
|
|
1792
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1793
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1794
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1795
|
-
}, undefined>, undefined>;
|
|
1796
1687
|
}, undefined>;
|
|
1797
1688
|
type SQueryListSourceDocuments = v.InferOutput<typeof SQueryListSourceDocuments>;
|
|
1798
1689
|
declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
@@ -1878,24 +1769,16 @@ declare const SDeleteSourceDocument: v.ObjectSchema<{
|
|
|
1878
1769
|
}, undefined>;
|
|
1879
1770
|
type SDeleteSourceDocument = v.InferOutput<typeof SDeleteSourceDocument>;
|
|
1880
1771
|
|
|
1881
|
-
declare const SQuerySortTermDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1882
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1883
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1884
|
-
}, undefined>, undefined>;
|
|
1885
|
-
type SQuerySortTermDocuments = v.InferOutput<typeof SQuerySortTermDocuments>;
|
|
1886
1772
|
declare const SQueryListTermDocuments: v.ObjectSchema<{
|
|
1887
1773
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1888
|
-
readonly page: v.
|
|
1889
|
-
readonly size: v.
|
|
1774
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1775
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1776
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "value:ASC" | "label:ASC" | "description:ASC" | "is_active:ASC" | "value:DESC" | "label:DESC" | "description:DESC" | "is_active:DESC")[], number, undefined>]>, undefined>;
|
|
1890
1777
|
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1891
1778
|
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1892
1779
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1893
1780
|
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>;
|
|
1894
1781
|
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>;
|
|
1895
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1896
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1897
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1898
|
-
}, undefined>, undefined>;
|
|
1899
1782
|
}, undefined>;
|
|
1900
1783
|
type SQueryListTermDocuments = v.InferOutput<typeof SQueryListTermDocuments>;
|
|
1901
1784
|
declare const SCreateTermDocument: v.ObjectSchema<{
|
|
@@ -1981,24 +1864,16 @@ declare const SDeleteTermDocument: v.ObjectSchema<{
|
|
|
1981
1864
|
}, undefined>;
|
|
1982
1865
|
type SDeleteTermDocument = v.InferOutput<typeof SDeleteTermDocument>;
|
|
1983
1866
|
|
|
1984
|
-
declare const SQuerySortWebsiteDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1985
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "domain", "is_active", "is_secure", "createdAt", "updatedAt"], undefined>, "domain">;
|
|
1986
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1987
|
-
}, undefined>, undefined>;
|
|
1988
|
-
type SQuerySortWebsiteDocuments = v.InferOutput<typeof SQuerySortWebsiteDocuments>;
|
|
1989
1867
|
declare const SQueryListWebsiteDocuments: v.ObjectSchema<{
|
|
1990
1868
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1991
|
-
readonly page: v.
|
|
1992
|
-
readonly size: v.
|
|
1869
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
1870
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1871
|
+
readonly sort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.PicklistSchema<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "description:ASC" | "is_active:ASC" | "description:DESC" | "is_active:DESC" | "domain:ASC" | "domain:DESC" | "is_secure:ASC" | "is_secure:DESC")[], undefined>, undefined>, v.MaxLengthAction<("id:ASC" | "publishedAt:ASC" | "documentId:ASC" | "createdAt:ASC" | "updatedAt:ASC" | "id:DESC" | "publishedAt:DESC" | "documentId:DESC" | "createdAt:DESC" | "updatedAt:DESC" | "description:ASC" | "is_active:ASC" | "description:DESC" | "is_active:DESC" | "domain:ASC" | "domain:DESC" | "is_secure:ASC" | "is_secure:DESC")[], number, undefined>]>, undefined>;
|
|
1993
1872
|
readonly domain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
1994
1873
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1995
1874
|
readonly is_secure: v.OptionalSchema<v.BooleanSchema<"isSecure must be a boolean">, undefined>;
|
|
1996
1875
|
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>;
|
|
1997
1876
|
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>;
|
|
1998
|
-
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1999
|
-
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "domain", "is_active", "is_secure", "createdAt", "updatedAt"], undefined>, "domain">;
|
|
2000
|
-
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
2001
|
-
}, undefined>, undefined>;
|
|
2002
1877
|
}, undefined>;
|
|
2003
1878
|
type SQueryListWebsiteDocuments = v.InferOutput<typeof SQueryListWebsiteDocuments>;
|
|
2004
1879
|
declare const SCreateWebsiteDocument: v.ObjectSchema<{
|
|
@@ -14921,7 +14796,14 @@ declare function omitUndefined<T extends Record<string, unknown>>(obj: T): Parti
|
|
|
14921
14796
|
|
|
14922
14797
|
declare const IsValidReferenceId: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
|
|
14923
14798
|
declare const IsValidReferenceDocumentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
14924
|
-
|
|
14799
|
+
/**
|
|
14800
|
+
* Pagination Page Validator
|
|
14801
|
+
*/
|
|
14802
|
+
declare const VPage: () => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>]>, undefined>;
|
|
14803
|
+
/**
|
|
14804
|
+
* Pagination Size Validator
|
|
14805
|
+
*/
|
|
14806
|
+
declare const VSize: (maxSize: number) => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
14925
14807
|
declare const IsValidCost: 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">]>;
|
|
14926
14808
|
declare const IsValidOrUndefinedCost: 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>;
|
|
14927
14809
|
declare const IsValidLabel: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
@@ -15017,4 +14899,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.OptionalSchema<v.SchemaWithPipe<re
|
|
|
15017
14899
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
15018
14900
|
declare const IsValidOrUndefinedUrlUtmId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
15019
14901
|
|
|
15020
|
-
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, CAMPAIGN_TARGET_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_TARGET_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, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, 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, type ImportExportActions, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidGroupValue, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedGroupValue, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, 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, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, type LCRUDActions, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_GROUP_VALUE, 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_PART, 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_GROUP_VALUE, 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_PART, 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 Permissions, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, ROLE_PERMISSIONS, type RoleType, type RolesWithPermissions, 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, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, 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, SGroupUserDocumentStatus, 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, SQueryListDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, 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, SUpdateUserDocument, 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, SUtmLinkBuilderPartCampaignDateFormat, type SUtmLinkBuilderPartCampaignDateFormatInput, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, type SUtmLinkBuilderPartCampaignDateObjectInput, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, type SUtmLinkBuilderPartCampaignDateValueDayInput, type SUtmLinkBuilderPartCampaignDateValueInput, SUtmLinkBuilderPartCampaignDateValueMonth, type SUtmLinkBuilderPartCampaignDateValueMonthInput, SUtmLinkBuilderPartCampaignDateValueQuarter, type SUtmLinkBuilderPartCampaignDateValueQuarterInput, SUtmLinkBuilderPartCampaignDateValueYear, type SUtmLinkBuilderPartCampaignDateValueYearInput, SUtmLinkBuilderPartCampaignId, type SUtmLinkBuilderPartCampaignIdInput, SUtmLinkBuilderPartCampaignKey, type SUtmLinkBuilderPartCampaignKeyInput, SUtmLinkBuilderPartCampaignObject, type SUtmLinkBuilderPartCampaignObjectInput, SUtmLinkBuilderPartCampaignPhase, type SUtmLinkBuilderPartCampaignPhaseInput, SUtmLinkBuilderPartCampaignProduct, type SUtmLinkBuilderPartCampaignProductInput, SUtmLinkBuilderPartCampaignTargeting, type SUtmLinkBuilderPartCampaignTargetingInput, SUtmLinkBuilderPartCampaigns, type SUtmLinkBuilderPartCampaignsInput, SUtmLinkBuilderPartContents, type SUtmLinkBuilderPartContentsInput, SUtmLinkBuilderPartCreativeFormatObject, type SUtmLinkBuilderPartCreativeFormatObjectInput, SUtmLinkBuilderPartCreativeFormatValue, type SUtmLinkBuilderPartCreativeFormatValueInput, SUtmLinkBuilderPartCreativeFormatVariantValue, type SUtmLinkBuilderPartCreativeFormatVariantValueInput, SUtmLinkBuilderPartCreativeFormats, type SUtmLinkBuilderPartCreativeFormatsInput, SUtmLinkBuilderPartMediums, type SUtmLinkBuilderPartMediumsInput, SUtmLinkBuilderPartSources, type SUtmLinkBuilderPartSourcesInput, SUtmLinkBuilderPartTerms, type SUtmLinkBuilderPartTermsInput, SUtmLinkBuilderPartUrlDestinations, type SUtmLinkBuilderPartUrlDestinationsInput, SUtmLinkBuilderPartUrlObject, type SUtmLinkBuilderPartUrlObjectInput, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyGroupUserDocument, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiErrorDetail, type StrapiErrorKey, type StrapiErrorResponse, type StrapiErrorResult, 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, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
14902
|
+
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, CAMPAIGN_TARGET_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_TARGET_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, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, 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, type ImportExportActions, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidGroupValue, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedGroupValue, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, 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, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, type LCRUDActions, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_GROUP_VALUE, 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_PART, 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_GROUP_VALUE, 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_PART, 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 Permissions, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, ROLE_PERMISSIONS, type RoleType, type RolesWithPermissions, 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, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, 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, SGroupUserDocumentStatus, 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, SQueryListDocuments, 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, SUpdateUserDocument, 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, SUtmLinkBuilderPartCampaignDateFormat, type SUtmLinkBuilderPartCampaignDateFormatInput, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, type SUtmLinkBuilderPartCampaignDateObjectInput, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, type SUtmLinkBuilderPartCampaignDateValueDayInput, type SUtmLinkBuilderPartCampaignDateValueInput, SUtmLinkBuilderPartCampaignDateValueMonth, type SUtmLinkBuilderPartCampaignDateValueMonthInput, SUtmLinkBuilderPartCampaignDateValueQuarter, type SUtmLinkBuilderPartCampaignDateValueQuarterInput, SUtmLinkBuilderPartCampaignDateValueYear, type SUtmLinkBuilderPartCampaignDateValueYearInput, SUtmLinkBuilderPartCampaignId, type SUtmLinkBuilderPartCampaignIdInput, SUtmLinkBuilderPartCampaignKey, type SUtmLinkBuilderPartCampaignKeyInput, SUtmLinkBuilderPartCampaignObject, type SUtmLinkBuilderPartCampaignObjectInput, SUtmLinkBuilderPartCampaignPhase, type SUtmLinkBuilderPartCampaignPhaseInput, SUtmLinkBuilderPartCampaignProduct, type SUtmLinkBuilderPartCampaignProductInput, SUtmLinkBuilderPartCampaignTargeting, type SUtmLinkBuilderPartCampaignTargetingInput, SUtmLinkBuilderPartCampaigns, type SUtmLinkBuilderPartCampaignsInput, SUtmLinkBuilderPartContents, type SUtmLinkBuilderPartContentsInput, SUtmLinkBuilderPartCreativeFormatObject, type SUtmLinkBuilderPartCreativeFormatObjectInput, SUtmLinkBuilderPartCreativeFormatValue, type SUtmLinkBuilderPartCreativeFormatValueInput, SUtmLinkBuilderPartCreativeFormatVariantValue, type SUtmLinkBuilderPartCreativeFormatVariantValueInput, SUtmLinkBuilderPartCreativeFormats, type SUtmLinkBuilderPartCreativeFormatsInput, SUtmLinkBuilderPartMediums, type SUtmLinkBuilderPartMediumsInput, SUtmLinkBuilderPartSources, type SUtmLinkBuilderPartSourcesInput, SUtmLinkBuilderPartTerms, type SUtmLinkBuilderPartTermsInput, SUtmLinkBuilderPartUrlDestinations, type SUtmLinkBuilderPartUrlDestinationsInput, SUtmLinkBuilderPartUrlObject, type SUtmLinkBuilderPartUrlObjectInput, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyGroupUserDocument, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiErrorDetail, type StrapiErrorKey, type StrapiErrorResponse, type StrapiErrorResult, 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, VPage, VSize, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|