@joeygrable94/utm-src-pub-validators 0.0.123 → 0.0.125
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 +5 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +84 -85
- package/dist/index.d.ts +84 -85
- package/dist/index.js +5 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
|
|
3
3
|
declare const SQueryParamsDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
4
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
5
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
4
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
5
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
6
6
|
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>;
|
|
7
7
|
}, undefined>, undefined>;
|
|
8
8
|
type SQueryParamsDocuments = v.InferOutput<typeof SQueryParamsDocuments>;
|
|
9
9
|
declare const SQuerySearchDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
10
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
11
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
10
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
11
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
12
12
|
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>;
|
|
13
13
|
}, undefined>, undefined>;
|
|
14
14
|
type SQuerySearchDocuments = v.InferOutput<typeof SQuerySearchDocuments>;
|
|
15
15
|
|
|
16
16
|
declare const SQueryParamsGroupUserDocuments: v.ObjectSchema<{
|
|
17
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
18
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
17
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
18
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
19
19
|
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>;
|
|
20
20
|
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>;
|
|
21
21
|
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>;
|
|
22
22
|
}, undefined>;
|
|
23
23
|
type SQueryParamsGroupUserDocuments = v.InferOutput<typeof SQueryParamsGroupUserDocuments>;
|
|
24
24
|
declare const SQuerySearchGroupUserDocuments: v.ObjectSchema<{
|
|
25
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
26
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
25
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
26
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
27
27
|
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>;
|
|
28
28
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
29
29
|
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>;
|
|
@@ -66,7 +66,6 @@ declare const SDeleteGroupUserDocument: v.ObjectSchema<{
|
|
|
66
66
|
type SDeleteGroupUserDocument = v.InferOutput<typeof SDeleteGroupUserDocument>;
|
|
67
67
|
declare const SVerifyGroupUserDocument: v.ObjectSchema<{
|
|
68
68
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
69
|
-
readonly user: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
70
69
|
}, undefined>;
|
|
71
70
|
type SVerifyGroupUserDocument = v.InferOutput<typeof SVerifyGroupUserDocument>;
|
|
72
71
|
declare const SGroupUserDocumentStatus: v.ObjectSchema<{
|
|
@@ -78,8 +77,8 @@ declare const SGroupUserDocumentStatus: v.ObjectSchema<{
|
|
|
78
77
|
type SGroupUserDocumentStatus = v.InferOutput<typeof SGroupUserDocumentStatus>;
|
|
79
78
|
|
|
80
79
|
declare const SQueryParamsGroupDocuments: v.ObjectSchema<{
|
|
81
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
82
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
80
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
81
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
83
82
|
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>;
|
|
84
83
|
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>;
|
|
85
84
|
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>;
|
|
@@ -90,8 +89,8 @@ declare const SQueryParamsGroupDocuments: v.ObjectSchema<{
|
|
|
90
89
|
}, undefined>;
|
|
91
90
|
type SQueryParamsGroupDocuments = v.InferOutput<typeof SQueryParamsGroupDocuments>;
|
|
92
91
|
declare const SQuerySearchGroupDocuments: v.ObjectSchema<{
|
|
93
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
94
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
92
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
93
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
95
94
|
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>;
|
|
96
95
|
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>;
|
|
97
96
|
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>;
|
|
@@ -420,8 +419,8 @@ declare const SStripeCheckoutCreateSession: v.ObjectSchema<{
|
|
|
420
419
|
type SStripeCheckoutCreateSession = v.InferOutput<typeof SStripeCheckoutCreateSession>;
|
|
421
420
|
|
|
422
421
|
declare const SQueryParamsTrackingLinkDocuments: v.ObjectSchema<{
|
|
423
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
424
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
422
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
423
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
425
424
|
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>;
|
|
426
425
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
427
426
|
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>;
|
|
@@ -444,8 +443,8 @@ declare const SQueryParamsTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
444
443
|
type SQueryParamsTrackingLinkDocuments = v.InferOutput<typeof SQueryParamsTrackingLinkDocuments>;
|
|
445
444
|
declare const SQuerySearchTrackingLinkDocuments: v.ObjectSchema<{
|
|
446
445
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
447
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
448
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
446
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
447
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
449
448
|
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>;
|
|
450
449
|
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>;
|
|
451
450
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
@@ -717,8 +716,8 @@ declare const SDeleteTrackingLinkDocument: v.ObjectSchema<{
|
|
|
717
716
|
type SDeleteTrackingLinkDocument = v.InferOutput<typeof SDeleteTrackingLinkDocument>;
|
|
718
717
|
|
|
719
718
|
declare const SQueryParamsUserAccountDocuments: v.ObjectSchema<{
|
|
720
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
721
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
719
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
720
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
722
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" | "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>;
|
|
723
722
|
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>;
|
|
724
723
|
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>;
|
|
@@ -732,8 +731,8 @@ declare const SQueryParamsUserAccountDocuments: v.ObjectSchema<{
|
|
|
732
731
|
}, undefined>;
|
|
733
732
|
type SQueryParamsUserAccountDocuments = v.InferOutput<typeof SQueryParamsUserAccountDocuments>;
|
|
734
733
|
declare const SQuerySearchUserAccountDocuments: v.ObjectSchema<{
|
|
735
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
736
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
734
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
735
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
737
736
|
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>;
|
|
738
737
|
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>;
|
|
739
738
|
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>;
|
|
@@ -775,14 +774,14 @@ declare const SUpdateUserAccountDocument: v.ObjectSchema<{
|
|
|
775
774
|
type SUpdateUserAccountDocument = v.InferOutput<typeof SUpdateUserAccountDocument>;
|
|
776
775
|
|
|
777
776
|
declare const SQueryParamsUserLimitationDocuments: v.ObjectSchema<{
|
|
778
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
779
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
777
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
778
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
780
779
|
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>;
|
|
781
780
|
}, undefined>;
|
|
782
781
|
type SQueryParamsUserLimitationDocuments = v.InferOutput<typeof SQueryParamsUserLimitationDocuments>;
|
|
783
782
|
declare const SQuerySearchUserLimitationDocuments: v.ObjectSchema<{
|
|
784
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
785
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
783
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
784
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
786
785
|
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>;
|
|
787
786
|
}, undefined>;
|
|
788
787
|
type SQuerySearchUserLimitationDocuments = v.InferOutput<typeof SQuerySearchUserLimitationDocuments>;
|
|
@@ -833,8 +832,8 @@ declare const SUpdateUserLimitationsDocument: v.ObjectSchema<{
|
|
|
833
832
|
type SUpdateUserLimitationsDocument = v.InferOutput<typeof SUpdateUserLimitationsDocument>;
|
|
834
833
|
|
|
835
834
|
declare const SQueryParamsUserDocuments: v.ObjectSchema<{
|
|
836
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
837
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
835
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
836
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
838
837
|
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>;
|
|
839
838
|
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>;
|
|
840
839
|
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>;
|
|
@@ -843,8 +842,8 @@ declare const SQueryParamsUserDocuments: v.ObjectSchema<{
|
|
|
843
842
|
}, undefined>;
|
|
844
843
|
type SQueryParamsUserDocuments = v.InferOutput<typeof SQueryParamsUserDocuments>;
|
|
845
844
|
declare const SQuerySearchUserDocuments: v.ObjectSchema<{
|
|
846
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
847
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
845
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
846
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
848
847
|
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>;
|
|
849
848
|
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>;
|
|
850
849
|
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>;
|
|
@@ -854,14 +853,14 @@ declare const SQuerySearchUserDocuments: v.ObjectSchema<{
|
|
|
854
853
|
type SQuerySearchUserDocuments = v.InferOutput<typeof SQuerySearchUserDocuments>;
|
|
855
854
|
declare const SQueryParamsUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
856
855
|
readonly identifier: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
857
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
858
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
856
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
857
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
859
858
|
}, undefined>;
|
|
860
859
|
type SQueryParamsUserDocumentsByIdentifier = v.InferOutput<typeof SQueryParamsUserDocumentsByIdentifier>;
|
|
861
860
|
declare const SQuerySearchUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
862
861
|
readonly identifier: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
863
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
864
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
862
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
863
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
865
864
|
}, undefined>;
|
|
866
865
|
type SQuerySearchUserDocumentsByIdentifier = v.InferOutput<typeof SQuerySearchUserDocumentsByIdentifier>;
|
|
867
866
|
declare const SCreateUserDocument: v.ObjectSchema<{
|
|
@@ -892,8 +891,8 @@ declare const SUpdateUserDocument: v.ObjectSchema<{
|
|
|
892
891
|
type SUpdateUserDocument = v.InferOutput<typeof SUpdateUserDocument>;
|
|
893
892
|
|
|
894
893
|
declare const SQueryParamsCampaignIdDocuments: v.ObjectSchema<{
|
|
895
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
896
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
894
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
895
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
897
896
|
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>;
|
|
898
897
|
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>;
|
|
899
898
|
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>;
|
|
@@ -907,8 +906,8 @@ declare const SQueryParamsCampaignIdDocuments: v.ObjectSchema<{
|
|
|
907
906
|
type SQueryParamsCampaignIdDocuments = v.InferOutput<typeof SQueryParamsCampaignIdDocuments>;
|
|
908
907
|
declare const SQuerySearchCampaignIdDocuments: v.ObjectSchema<{
|
|
909
908
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
910
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
911
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
909
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
910
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
912
911
|
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>;
|
|
913
912
|
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>;
|
|
914
913
|
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>;
|
|
@@ -1009,8 +1008,8 @@ declare const SDeleteCampaignIdDocument: v.ObjectSchema<{
|
|
|
1009
1008
|
type SDeleteCampaignIdDocument = v.InferOutput<typeof SDeleteCampaignIdDocument>;
|
|
1010
1009
|
|
|
1011
1010
|
declare const SQueryParamsCampaignKeyDocuments: v.ObjectSchema<{
|
|
1012
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1013
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1011
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1012
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1014
1013
|
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>;
|
|
1015
1014
|
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>;
|
|
1016
1015
|
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>;
|
|
@@ -1021,8 +1020,8 @@ declare const SQueryParamsCampaignKeyDocuments: v.ObjectSchema<{
|
|
|
1021
1020
|
type SQueryParamsCampaignKeyDocuments = v.InferOutput<typeof SQueryParamsCampaignKeyDocuments>;
|
|
1022
1021
|
declare const SQuerySearchCampaignKeyDocuments: v.ObjectSchema<{
|
|
1023
1022
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1024
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1025
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1023
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1024
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1026
1025
|
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>;
|
|
1027
1026
|
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>;
|
|
1028
1027
|
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>;
|
|
@@ -1114,8 +1113,8 @@ declare const SDeleteCampaignKeyDocument: v.ObjectSchema<{
|
|
|
1114
1113
|
type SDeleteCampaignKeyDocument = v.InferOutput<typeof SDeleteCampaignKeyDocument>;
|
|
1115
1114
|
|
|
1116
1115
|
declare const SQueryParamsCampaignPhaseDocuments: v.ObjectSchema<{
|
|
1117
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1118
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1116
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1117
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1119
1118
|
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>;
|
|
1120
1119
|
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>;
|
|
1121
1120
|
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>;
|
|
@@ -1126,8 +1125,8 @@ declare const SQueryParamsCampaignPhaseDocuments: v.ObjectSchema<{
|
|
|
1126
1125
|
type SQueryParamsCampaignPhaseDocuments = v.InferOutput<typeof SQueryParamsCampaignPhaseDocuments>;
|
|
1127
1126
|
declare const SQuerySearchCampaignPhaseDocuments: v.ObjectSchema<{
|
|
1128
1127
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1129
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1130
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1128
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1129
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1131
1130
|
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>;
|
|
1132
1131
|
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>;
|
|
1133
1132
|
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>;
|
|
@@ -1219,8 +1218,8 @@ declare const SDeleteCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
1219
1218
|
type SDeleteCampaignPhaseDocument = v.InferOutput<typeof SDeleteCampaignPhaseDocument>;
|
|
1220
1219
|
|
|
1221
1220
|
declare const SQueryParamsCampaignProductDocuments: v.ObjectSchema<{
|
|
1222
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1223
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1221
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1222
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1224
1223
|
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>;
|
|
1225
1224
|
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>;
|
|
1226
1225
|
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>;
|
|
@@ -1231,8 +1230,8 @@ declare const SQueryParamsCampaignProductDocuments: v.ObjectSchema<{
|
|
|
1231
1230
|
type SQueryParamsCampaignProductDocuments = v.InferOutput<typeof SQueryParamsCampaignProductDocuments>;
|
|
1232
1231
|
declare const SQuerySearchCampaignProductDocuments: v.ObjectSchema<{
|
|
1233
1232
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1234
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1235
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1233
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1234
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1236
1235
|
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>;
|
|
1237
1236
|
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>;
|
|
1238
1237
|
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>;
|
|
@@ -1324,8 +1323,8 @@ declare const SDeleteCampaignProductDocument: v.ObjectSchema<{
|
|
|
1324
1323
|
type SDeleteCampaignProductDocument = v.InferOutput<typeof SDeleteCampaignProductDocument>;
|
|
1325
1324
|
|
|
1326
1325
|
declare const SQueryParamsCampaignTargetDocuments: v.ObjectSchema<{
|
|
1327
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1328
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1326
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1327
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1329
1328
|
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>;
|
|
1330
1329
|
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>;
|
|
1331
1330
|
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>;
|
|
@@ -1336,8 +1335,8 @@ declare const SQueryParamsCampaignTargetDocuments: v.ObjectSchema<{
|
|
|
1336
1335
|
type SQueryParamsCampaignTargetDocuments = v.InferOutput<typeof SQueryParamsCampaignTargetDocuments>;
|
|
1337
1336
|
declare const SQuerySearchCampaignTargetDocuments: v.ObjectSchema<{
|
|
1338
1337
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1339
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1340
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1338
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1339
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1341
1340
|
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>;
|
|
1342
1341
|
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>;
|
|
1343
1342
|
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>;
|
|
@@ -1429,8 +1428,8 @@ declare const SDeleteCampaignTargetDocument: v.ObjectSchema<{
|
|
|
1429
1428
|
type SDeleteCampaignTargetDocument = v.InferOutput<typeof SDeleteCampaignTargetDocument>;
|
|
1430
1429
|
|
|
1431
1430
|
declare const SQueryParamsContentDocuments: v.ObjectSchema<{
|
|
1432
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1433
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1431
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1432
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1434
1433
|
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>;
|
|
1435
1434
|
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>;
|
|
1436
1435
|
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>;
|
|
@@ -1441,8 +1440,8 @@ declare const SQueryParamsContentDocuments: v.ObjectSchema<{
|
|
|
1441
1440
|
type SQueryParamsContentDocuments = v.InferOutput<typeof SQueryParamsContentDocuments>;
|
|
1442
1441
|
declare const SQuerySearchContentDocuments: v.ObjectSchema<{
|
|
1443
1442
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1444
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1445
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1443
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1444
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1446
1445
|
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>;
|
|
1447
1446
|
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>;
|
|
1448
1447
|
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>;
|
|
@@ -1534,8 +1533,8 @@ declare const SDeleteContentDocument: v.ObjectSchema<{
|
|
|
1534
1533
|
type SDeleteContentDocument = v.InferOutput<typeof SDeleteContentDocument>;
|
|
1535
1534
|
|
|
1536
1535
|
declare const SQueryParamsCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
1537
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1538
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1536
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1537
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1539
1538
|
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>;
|
|
1540
1539
|
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>;
|
|
1541
1540
|
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>;
|
|
@@ -1546,8 +1545,8 @@ declare const SQueryParamsCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
|
1546
1545
|
type SQueryParamsCreativeFormatVariantDocuments = v.InferOutput<typeof SQueryParamsCreativeFormatVariantDocuments>;
|
|
1547
1546
|
declare const SQuerySearchCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
1548
1547
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1549
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1550
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1548
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1549
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1551
1550
|
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>;
|
|
1552
1551
|
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>;
|
|
1553
1552
|
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>;
|
|
@@ -1639,8 +1638,8 @@ declare const SDeleteCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
1639
1638
|
type SDeleteCreativeFormatVariantDocument = v.InferOutput<typeof SDeleteCreativeFormatVariantDocument>;
|
|
1640
1639
|
|
|
1641
1640
|
declare const SQueryParamsCreativeFormatDocuments: v.ObjectSchema<{
|
|
1642
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1643
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1641
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1642
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1644
1643
|
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>;
|
|
1645
1644
|
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>;
|
|
1646
1645
|
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>;
|
|
@@ -1651,8 +1650,8 @@ declare const SQueryParamsCreativeFormatDocuments: v.ObjectSchema<{
|
|
|
1651
1650
|
type SQueryParamsCreativeFormatDocuments = v.InferOutput<typeof SQueryParamsCreativeFormatDocuments>;
|
|
1652
1651
|
declare const SQuerySearchCreativeFormatDocuments: v.ObjectSchema<{
|
|
1653
1652
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1654
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1655
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1653
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1654
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1656
1655
|
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>;
|
|
1657
1656
|
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>;
|
|
1658
1657
|
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>;
|
|
@@ -1744,8 +1743,8 @@ declare const SDeleteCreativeFormatDocument: v.ObjectSchema<{
|
|
|
1744
1743
|
type SDeleteCreativeFormatDocument = v.InferOutput<typeof SDeleteCreativeFormatDocument>;
|
|
1745
1744
|
|
|
1746
1745
|
declare const SQueryParamsMediumDocuments: v.ObjectSchema<{
|
|
1747
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1748
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1746
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1747
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1749
1748
|
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>;
|
|
1750
1749
|
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>;
|
|
1751
1750
|
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>;
|
|
@@ -1756,8 +1755,8 @@ declare const SQueryParamsMediumDocuments: v.ObjectSchema<{
|
|
|
1756
1755
|
type SQueryParamsMediumDocuments = v.InferOutput<typeof SQueryParamsMediumDocuments>;
|
|
1757
1756
|
declare const SQuerySearchMediumDocuments: v.ObjectSchema<{
|
|
1758
1757
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1759
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1760
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1758
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1759
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1761
1760
|
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>;
|
|
1762
1761
|
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>;
|
|
1763
1762
|
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>;
|
|
@@ -1849,8 +1848,8 @@ declare const SDeleteMediumDocument: v.ObjectSchema<{
|
|
|
1849
1848
|
type SDeleteMediumDocument = v.InferOutput<typeof SDeleteMediumDocument>;
|
|
1850
1849
|
|
|
1851
1850
|
declare const SQueryParamsSourceDocuments: v.ObjectSchema<{
|
|
1852
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1853
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1851
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1852
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1854
1853
|
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>;
|
|
1855
1854
|
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>;
|
|
1856
1855
|
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>;
|
|
@@ -1861,8 +1860,8 @@ declare const SQueryParamsSourceDocuments: v.ObjectSchema<{
|
|
|
1861
1860
|
type SQueryParamsSourceDocuments = v.InferOutput<typeof SQueryParamsSourceDocuments>;
|
|
1862
1861
|
declare const SQuerySearchSourceDocuments: v.ObjectSchema<{
|
|
1863
1862
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1864
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1865
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1863
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1864
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1866
1865
|
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>;
|
|
1867
1866
|
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>;
|
|
1868
1867
|
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>;
|
|
@@ -1954,8 +1953,8 @@ declare const SDeleteSourceDocument: v.ObjectSchema<{
|
|
|
1954
1953
|
type SDeleteSourceDocument = v.InferOutput<typeof SDeleteSourceDocument>;
|
|
1955
1954
|
|
|
1956
1955
|
declare const SQueryParamsTermDocuments: v.ObjectSchema<{
|
|
1957
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1958
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1956
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1957
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
1959
1958
|
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>;
|
|
1960
1959
|
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>;
|
|
1961
1960
|
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>;
|
|
@@ -1966,8 +1965,8 @@ declare const SQueryParamsTermDocuments: v.ObjectSchema<{
|
|
|
1966
1965
|
type SQueryParamsTermDocuments = v.InferOutput<typeof SQueryParamsTermDocuments>;
|
|
1967
1966
|
declare const SQuerySearchTermDocuments: v.ObjectSchema<{
|
|
1968
1967
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1969
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1970
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
1968
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1969
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
1971
1970
|
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>;
|
|
1972
1971
|
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>;
|
|
1973
1972
|
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>;
|
|
@@ -2059,8 +2058,8 @@ declare const SDeleteTermDocument: v.ObjectSchema<{
|
|
|
2059
2058
|
type SDeleteTermDocument = v.InferOutput<typeof SDeleteTermDocument>;
|
|
2060
2059
|
|
|
2061
2060
|
declare const SQueryParamsWebsiteDocuments: v.ObjectSchema<{
|
|
2062
|
-
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
2063
|
-
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
2061
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
2062
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
2064
2063
|
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>;
|
|
2065
2064
|
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>;
|
|
2066
2065
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
@@ -2071,8 +2070,8 @@ declare const SQueryParamsWebsiteDocuments: v.ObjectSchema<{
|
|
|
2071
2070
|
type SQueryParamsWebsiteDocuments = v.InferOutput<typeof SQueryParamsWebsiteDocuments>;
|
|
2072
2071
|
declare const SQuerySearchWebsiteDocuments: v.ObjectSchema<{
|
|
2073
2072
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2074
|
-
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
2075
|
-
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
2073
|
+
readonly page: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
2074
|
+
readonly size: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
2076
2075
|
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>;
|
|
2077
2076
|
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>;
|
|
2078
2077
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
@@ -15060,13 +15059,13 @@ declare const IsValidReferenceDocumentId: v.SchemaWithPipe<readonly [v.StringSch
|
|
|
15060
15059
|
/**
|
|
15061
15060
|
* Pagination Page Validator
|
|
15062
15061
|
*/
|
|
15063
|
-
declare const VPage: () => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
15064
|
-
declare const VPageRequired: () => v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
15062
|
+
declare const VPage: () => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
15063
|
+
declare const VPageRequired: () => v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
15065
15064
|
/**
|
|
15066
15065
|
* Pagination Size Validator
|
|
15067
15066
|
*/
|
|
15068
|
-
declare const VSize: (maxSize: number) => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
15069
|
-
declare const VSizeRequired: (maxSize: number) => v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number,
|
|
15067
|
+
declare const VSize: (maxSize: number) => v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
|
|
15068
|
+
declare const VSizeRequired: (maxSize: number) => v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
15070
15069
|
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">]>;
|
|
15071
15070
|
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>;
|
|
15072
15071
|
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">]>;
|