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