@joeygrable94/utm-src-pub-validators 0.0.99 → 0.0.100
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 +30 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +562 -558
- package/dist/index.d.ts +562 -558
- package/dist/index.js +27 -11
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -82,16 +82,16 @@ declare const SubscriptionStatusValues: readonly ["incomplete", "incomplete_expi
|
|
|
82
82
|
type UrlProtocol = "http" | "https";
|
|
83
83
|
declare const UrlProtocolOptions: readonly ["http", "https"];
|
|
84
84
|
|
|
85
|
-
declare const LIMIT_MIN_LABEL =
|
|
85
|
+
declare const LIMIT_MIN_LABEL = 2;
|
|
86
86
|
declare const LIMIT_MAX_LABEL = 255;
|
|
87
|
-
declare const LIMIT_MIN_VALUE =
|
|
88
|
-
declare const LIMIT_MAX_VALUE =
|
|
87
|
+
declare const LIMIT_MIN_VALUE = 2;
|
|
88
|
+
declare const LIMIT_MAX_VALUE = 64;
|
|
89
89
|
declare const LIMIT_MAX_DESCRIPTION = 1024;
|
|
90
90
|
declare const LIMIT_MIN_USERNAME = 3;
|
|
91
91
|
declare const LIMIT_MAX_USERNAME = 255;
|
|
92
|
-
declare const LIMIT_MIN_EMAIL =
|
|
92
|
+
declare const LIMIT_MIN_EMAIL = 6;
|
|
93
93
|
declare const LIMIT_MAX_EMAIL = 255;
|
|
94
|
-
declare const LIMIT_MIN_PASSWORD =
|
|
94
|
+
declare const LIMIT_MIN_PASSWORD = 6;
|
|
95
95
|
declare const LIMIT_MAX_PASSWORD = 255;
|
|
96
96
|
declare const LIMIT_MAX_PROVIDER = 255;
|
|
97
97
|
declare const LIMIT_MAX_STRIPE_ID = 255;
|
|
@@ -114,8 +114,10 @@ declare const LIMIT_MIN_QUERY = 1;
|
|
|
114
114
|
declare const LIMIT_MAX_QUERY = 2038;
|
|
115
115
|
declare const LIMIT_MIN_FRAGMENT = 1;
|
|
116
116
|
declare const LIMIT_MAX_FRAGMENT = 2038;
|
|
117
|
+
declare const LIMIT_MIN_GROUP_VALUE = 1;
|
|
118
|
+
declare const LIMIT_MAX_GROUP_VALUE = 16;
|
|
117
119
|
declare const LIMIT_MIN_UTM_PART = 1;
|
|
118
|
-
declare const LIMIT_MAX_UTM_PART =
|
|
120
|
+
declare const LIMIT_MAX_UTM_PART = 64;
|
|
119
121
|
declare const LIMIT_MIN_UTM_SOURCE = 1;
|
|
120
122
|
declare const LIMIT_MAX_UTM_SOURCE = 2026;
|
|
121
123
|
declare const LIMIT_MIN_UTM_MEDIUM = 1;
|
|
@@ -198,8 +200,8 @@ type SQuerySortGroupDocuments = v.InferOutput<typeof SQuerySortGroupDocuments>;
|
|
|
198
200
|
declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
199
201
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
200
202
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 100, undefined>]>, 10>, 10>;
|
|
201
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
202
|
-
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,
|
|
203
|
+
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>;
|
|
204
|
+
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>;
|
|
203
205
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
204
206
|
readonly apply_value_to: v.OptionalSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
205
207
|
readonly apply_value_as: v.OptionalSchema<v.PicklistSchema<readonly ["prefix", "suffix"], undefined>, undefined>;
|
|
@@ -214,8 +216,8 @@ declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
|
214
216
|
}, undefined>;
|
|
215
217
|
type SQueryListGroupDocuments = v.InferOutput<typeof SQueryListGroupDocuments>;
|
|
216
218
|
declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
217
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
218
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
219
|
+
readonly label: 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">]>;
|
|
220
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
219
221
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
220
222
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
221
223
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -231,8 +233,8 @@ declare const SReadGroupDocumentByDocumentId: v.ObjectSchema<{
|
|
|
231
233
|
}, undefined>;
|
|
232
234
|
type SReadGroupDocumentByDocumentId = v.InferOutput<typeof SReadGroupDocumentByDocumentId>;
|
|
233
235
|
declare const SUpdateAsCreatorGroupDocument: v.ObjectSchema<{
|
|
234
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
235
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
236
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
237
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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>;
|
|
236
238
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
237
239
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
238
240
|
readonly apply_value_to: v.UndefinedableSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
@@ -242,8 +244,8 @@ type SUpdateAsCreatorGroupDocument = v.InferOutput<typeof SUpdateAsCreatorGroupD
|
|
|
242
244
|
declare const SUpdateAsCreatorGroupDocumentRequest: v.ObjectSchema<{
|
|
243
245
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
244
246
|
readonly data: v.ObjectSchema<{
|
|
245
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
246
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
247
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
248
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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>;
|
|
247
249
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
248
250
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
249
251
|
readonly apply_value_to: v.UndefinedableSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
@@ -252,27 +254,27 @@ declare const SUpdateAsCreatorGroupDocumentRequest: v.ObjectSchema<{
|
|
|
252
254
|
}, undefined>;
|
|
253
255
|
type SUpdateAsCreatorGroupDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorGroupDocumentRequest>;
|
|
254
256
|
declare const SUpdateAsInvitedGroupDocument: v.ObjectSchema<{
|
|
255
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
257
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
256
258
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
257
259
|
}, undefined>;
|
|
258
260
|
type SUpdateAsInvitedGroupDocument = v.InferOutput<typeof SUpdateAsInvitedGroupDocument>;
|
|
259
261
|
declare const SUpdateAsInvitedGroupDocumentRequest: v.ObjectSchema<{
|
|
260
262
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
261
263
|
readonly data: v.ObjectSchema<{
|
|
262
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
264
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
263
265
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
264
266
|
}, undefined>;
|
|
265
267
|
}, undefined>;
|
|
266
268
|
type SUpdateAsInvitedGroupDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedGroupDocumentRequest>;
|
|
267
269
|
declare const SUpdateGroupDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
268
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
269
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
270
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
271
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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>;
|
|
270
272
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
271
273
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
272
274
|
readonly apply_value_to: v.UndefinedableSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
273
275
|
readonly apply_value_as: v.UndefinedableSchema<v.PicklistSchema<readonly ["prefix", "suffix"], undefined>, undefined>;
|
|
274
276
|
}, undefined>, v.ObjectSchema<{
|
|
275
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
277
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
276
278
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
277
279
|
}, undefined>], undefined>;
|
|
278
280
|
type SUpdateGroupDocumentRequest = v.InferOutput<typeof SUpdateGroupDocumentRequest>;
|
|
@@ -296,10 +298,10 @@ declare const SUtmLinkBuilderPartUrlDestinations: v.SchemaWithPipe<readonly [v.A
|
|
|
296
298
|
}[], 10, "You can provide up to 10 destination URLs.">]>;
|
|
297
299
|
type SUtmLinkBuilderPartUrlDestinations = v.InferOutput<typeof SUtmLinkBuilderPartUrlDestinations>;
|
|
298
300
|
type SUtmLinkBuilderPartSourcesInput = v.InferInput<typeof SUtmLinkBuilderPartSources>;
|
|
299
|
-
declare const SUtmLinkBuilderPartSources: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
301
|
+
declare const SUtmLinkBuilderPartSources: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MinLengthAction<string[], 1, "Please select at least one source.">, v.MaxLengthAction<string[], 10, "You can select up to 10 sources.">]>;
|
|
300
302
|
type SUtmLinkBuilderPartSources = v.InferOutput<typeof SUtmLinkBuilderPartSources>;
|
|
301
303
|
type SUtmLinkBuilderPartMediumsInput = v.InferInput<typeof SUtmLinkBuilderPartMediums>;
|
|
302
|
-
declare const SUtmLinkBuilderPartMediums: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
304
|
+
declare const SUtmLinkBuilderPartMediums: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MinLengthAction<string[], 1, "Please select at least one medium.">, v.MaxLengthAction<string[], 10, "You can select up to 10 mediums.">]>;
|
|
303
305
|
type SUtmLinkBuilderPartMediums = v.InferOutput<typeof SUtmLinkBuilderPartMediums>;
|
|
304
306
|
declare const SUtmLinkBuilderPartCampaignDateFormatOptions: readonly ["no date", "annually", "quarterly", "monthly", "on a specific date"];
|
|
305
307
|
type SUtmLinkBuilderPartCampaignDateFormatInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignDateFormat>;
|
|
@@ -337,23 +339,23 @@ declare const SUtmLinkBuilderPartCampaignDateObject: v.ObjectSchema<{
|
|
|
337
339
|
}, undefined>;
|
|
338
340
|
type SUtmLinkBuilderPartCampaignDateObject = v.InferOutput<typeof SUtmLinkBuilderPartCampaignDateObject>;
|
|
339
341
|
type SUtmLinkBuilderPartCampaignPhaseInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignPhase>;
|
|
340
|
-
declare const SUtmLinkBuilderPartCampaignPhase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
342
|
+
declare const SUtmLinkBuilderPartCampaignPhase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
341
343
|
type SUtmLinkBuilderPartCampaignPhase = v.InferOutput<typeof SUtmLinkBuilderPartCampaignPhase>;
|
|
342
344
|
type SUtmLinkBuilderPartCampaignProductInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignProduct>;
|
|
343
|
-
declare const SUtmLinkBuilderPartCampaignProduct: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
345
|
+
declare const SUtmLinkBuilderPartCampaignProduct: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
344
346
|
type SUtmLinkBuilderPartCampaignProduct = v.InferOutput<typeof SUtmLinkBuilderPartCampaignProduct>;
|
|
345
347
|
type SUtmLinkBuilderPartCampaignTargetingInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignTargeting>;
|
|
346
|
-
declare const SUtmLinkBuilderPartCampaignTargeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
348
|
+
declare const SUtmLinkBuilderPartCampaignTargeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 targeting audiences.">]>, undefined>;
|
|
347
349
|
type SUtmLinkBuilderPartCampaignTargeting = v.InferOutput<typeof SUtmLinkBuilderPartCampaignTargeting>;
|
|
348
350
|
type SUtmLinkBuilderPartCampaignKeyInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignKey>;
|
|
349
|
-
declare const SUtmLinkBuilderPartCampaignKey: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
351
|
+
declare const SUtmLinkBuilderPartCampaignKey: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
350
352
|
type SUtmLinkBuilderPartCampaignKey = v.InferOutput<typeof SUtmLinkBuilderPartCampaignKey>;
|
|
351
353
|
type SUtmLinkBuilderPartCampaignObjectInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignObject>;
|
|
352
354
|
declare const SUtmLinkBuilderPartCampaignObject: v.ObjectSchema<{
|
|
353
|
-
readonly campaign_phase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
354
|
-
readonly campaign_product: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
355
|
-
readonly campaign_targeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
356
|
-
readonly campaign_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
355
|
+
readonly campaign_phase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
356
|
+
readonly campaign_product: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
357
|
+
readonly campaign_targeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 targeting audiences.">]>, undefined>;
|
|
358
|
+
readonly campaign_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
357
359
|
readonly campaign_date: v.ObjectSchema<{
|
|
358
360
|
readonly format: v.PicklistSchema<readonly ["no date", "annually", "quarterly", "monthly", "on a specific date"], "Please select a valid campaign date format.">;
|
|
359
361
|
readonly value: v.ObjectSchema<{
|
|
@@ -367,10 +369,10 @@ declare const SUtmLinkBuilderPartCampaignObject: v.ObjectSchema<{
|
|
|
367
369
|
type SUtmLinkBuilderPartCampaignObject = v.InferOutput<typeof SUtmLinkBuilderPartCampaignObject>;
|
|
368
370
|
type SUtmLinkBuilderPartCampaignsInput = v.InferInput<typeof SUtmLinkBuilderPartCampaigns>;
|
|
369
371
|
declare const SUtmLinkBuilderPartCampaigns: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
370
|
-
readonly campaign_phase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
371
|
-
readonly campaign_product: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
372
|
-
readonly campaign_targeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
373
|
-
readonly campaign_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
372
|
+
readonly campaign_phase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
373
|
+
readonly campaign_product: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
374
|
+
readonly campaign_targeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 targeting audiences.">]>, undefined>;
|
|
375
|
+
readonly campaign_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
374
376
|
readonly campaign_date: v.ObjectSchema<{
|
|
375
377
|
readonly format: v.PicklistSchema<readonly ["no date", "annually", "quarterly", "monthly", "on a specific date"], "Please select a valid campaign date format.">;
|
|
376
378
|
readonly value: v.ObjectSchema<{
|
|
@@ -411,34 +413,34 @@ declare const SUtmLinkBuilderPartCampaigns: v.SchemaWithPipe<readonly [v.ArraySc
|
|
|
411
413
|
}[], 10, "You can provide up to 10 campaigns.">]>;
|
|
412
414
|
type SUtmLinkBuilderPartCampaigns = v.InferOutput<typeof SUtmLinkBuilderPartCampaigns>;
|
|
413
415
|
type SUtmLinkBuilderPartContentsInput = v.InferInput<typeof SUtmLinkBuilderPartContents>;
|
|
414
|
-
declare const SUtmLinkBuilderPartContents: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
416
|
+
declare const SUtmLinkBuilderPartContents: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 contents.">]>, undefined>;
|
|
415
417
|
type SUtmLinkBuilderPartContents = v.InferOutput<typeof SUtmLinkBuilderPartContents>;
|
|
416
418
|
type SUtmLinkBuilderPartCreativeFormatValueInput = v.InferInput<typeof SUtmLinkBuilderPartCreativeFormatValue>;
|
|
417
|
-
declare const SUtmLinkBuilderPartCreativeFormatValue: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
419
|
+
declare const SUtmLinkBuilderPartCreativeFormatValue: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
418
420
|
type SUtmLinkBuilderPartCreativeFormatValue = v.InferOutput<typeof SUtmLinkBuilderPartCreativeFormatValue>;
|
|
419
421
|
type SUtmLinkBuilderPartCreativeFormatVariantValueInput = v.InferInput<typeof SUtmLinkBuilderPartCreativeFormatVariantValue>;
|
|
420
|
-
declare const SUtmLinkBuilderPartCreativeFormatVariantValue: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
422
|
+
declare const SUtmLinkBuilderPartCreativeFormatVariantValue: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 creative format variations.">]>, undefined>;
|
|
421
423
|
type SUtmLinkBuilderPartCreativeFormatVariantValue = v.InferOutput<typeof SUtmLinkBuilderPartCreativeFormatVariantValue>;
|
|
422
424
|
type SUtmLinkBuilderPartCreativeFormatObjectInput = v.InferInput<typeof SUtmLinkBuilderPartCreativeFormatObject>;
|
|
423
425
|
declare const SUtmLinkBuilderPartCreativeFormatObject: v.ObjectSchema<{
|
|
424
|
-
readonly creative_format: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
425
|
-
readonly creative_format_variants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
426
|
+
readonly creative_format: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
427
|
+
readonly creative_format_variants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 creative format variations.">]>, undefined>;
|
|
426
428
|
}, undefined>;
|
|
427
429
|
type SUtmLinkBuilderPartCreativeFormatObject = v.InferOutput<typeof SUtmLinkBuilderPartCreativeFormatObject>;
|
|
428
430
|
type SUtmLinkBuilderPartCreativeFormatsInput = v.InferInput<typeof SUtmLinkBuilderPartCreativeFormats>;
|
|
429
431
|
declare const SUtmLinkBuilderPartCreativeFormats: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
430
|
-
readonly creative_format: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
431
|
-
readonly creative_format_variants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
432
|
+
readonly creative_format: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
433
|
+
readonly creative_format_variants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 creative format variations.">]>, undefined>;
|
|
432
434
|
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
433
435
|
creative_format?: string | undefined;
|
|
434
436
|
creative_format_variants?: string[] | undefined;
|
|
435
437
|
}[], 10, "You can select up to 10 creative formats.">]>, undefined>;
|
|
436
438
|
type SUtmLinkBuilderPartCreativeFormats = v.InferOutput<typeof SUtmLinkBuilderPartCreativeFormats>;
|
|
437
439
|
type SUtmLinkBuilderPartTermsInput = v.InferInput<typeof SUtmLinkBuilderPartTerms>;
|
|
438
|
-
declare const SUtmLinkBuilderPartTerms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
440
|
+
declare const SUtmLinkBuilderPartTerms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 terms.">]>, undefined>;
|
|
439
441
|
type SUtmLinkBuilderPartTerms = v.InferOutput<typeof SUtmLinkBuilderPartTerms>;
|
|
440
442
|
type SUtmLinkBuilderPartCampaignIdInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignId>;
|
|
441
|
-
declare const SUtmLinkBuilderPartCampaignId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
443
|
+
declare const SUtmLinkBuilderPartCampaignId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
442
444
|
type SUtmLinkBuilderPartCampaignId = v.InferOutput<typeof SUtmLinkBuilderPartCampaignId>;
|
|
443
445
|
type SUtmLinkBuilderTableFormInput = v.InferInput<typeof SUtmLinkBuilderTableForm>;
|
|
444
446
|
declare const SUtmLinkBuilderTableForm: v.ObjectSchema<{
|
|
@@ -450,13 +452,13 @@ declare const SUtmLinkBuilderTableForm: v.ObjectSchema<{
|
|
|
450
452
|
}[], 1, "Please provide at least one destination URL.">, v.MaxLengthAction<{
|
|
451
453
|
url: string;
|
|
452
454
|
}[], 10, "You can provide up to 10 destination URLs.">]>;
|
|
453
|
-
readonly sources: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
454
|
-
readonly mediums: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
455
|
+
readonly sources: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MinLengthAction<string[], 1, "Please select at least one source.">, v.MaxLengthAction<string[], 10, "You can select up to 10 sources.">]>;
|
|
456
|
+
readonly mediums: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MinLengthAction<string[], 1, "Please select at least one medium.">, v.MaxLengthAction<string[], 10, "You can select up to 10 mediums.">]>;
|
|
455
457
|
readonly campaigns: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
456
|
-
readonly campaign_phase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
457
|
-
readonly campaign_product: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
458
|
-
readonly campaign_targeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
459
|
-
readonly campaign_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
458
|
+
readonly campaign_phase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
459
|
+
readonly campaign_product: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
460
|
+
readonly campaign_targeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 targeting audiences.">]>, undefined>;
|
|
461
|
+
readonly campaign_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
460
462
|
readonly campaign_date: v.ObjectSchema<{
|
|
461
463
|
readonly format: v.PicklistSchema<readonly ["no date", "annually", "quarterly", "monthly", "on a specific date"], "Please select a valid campaign date format.">;
|
|
462
464
|
readonly value: v.ObjectSchema<{
|
|
@@ -495,16 +497,16 @@ declare const SUtmLinkBuilderTableForm: v.ObjectSchema<{
|
|
|
495
497
|
};
|
|
496
498
|
};
|
|
497
499
|
}[], 10, "You can provide up to 10 campaigns.">]>;
|
|
498
|
-
readonly contents: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
500
|
+
readonly contents: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 contents.">]>, undefined>;
|
|
499
501
|
readonly creative_formats: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
500
|
-
readonly creative_format: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
501
|
-
readonly creative_format_variants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
502
|
+
readonly creative_format: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
503
|
+
readonly creative_format_variants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 creative format variations.">]>, undefined>;
|
|
502
504
|
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
503
505
|
creative_format?: string | undefined;
|
|
504
506
|
creative_format_variants?: string[] | undefined;
|
|
505
507
|
}[], 10, "You can select up to 10 creative formats.">]>, undefined>;
|
|
506
|
-
readonly terms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
507
|
-
readonly campaign_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
508
|
+
readonly terms: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.MaxLengthAction<string[], 10, "You can select up to 10 terms.">]>, undefined>;
|
|
509
|
+
readonly campaign_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
508
510
|
}, undefined>;
|
|
509
511
|
type SUtmLinkBuilderTableForm = v.InferOutput<typeof SUtmLinkBuilderTableForm>;
|
|
510
512
|
|
|
@@ -917,7 +919,7 @@ type SQuerySortUserDocuments = v.InferOutput<typeof SQuerySortUserDocuments>;
|
|
|
917
919
|
declare const SQueryListUserDocuments: v.ObjectSchema<{
|
|
918
920
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
919
921
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
|
|
920
|
-
readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
922
|
+
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>;
|
|
921
923
|
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>;
|
|
922
924
|
readonly confirmed: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
923
925
|
readonly blocked: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
@@ -938,8 +940,8 @@ declare const SQueryListUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
|
938
940
|
type SQueryListUserDocumentsByIdentifier = v.InferOutput<typeof SQueryListUserDocumentsByIdentifier>;
|
|
939
941
|
declare const SCreateUserDocument: v.ObjectSchema<{
|
|
940
942
|
readonly username: 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: - _ .">]>;
|
|
941
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
942
|
-
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
943
|
+
readonly email: 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">]>;
|
|
944
|
+
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
943
945
|
readonly blocked: v.BooleanSchema<"this value must be either true or false">;
|
|
944
946
|
readonly confirmed: v.BooleanSchema<"this value must be either true or false">;
|
|
945
947
|
readonly role: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
|
|
@@ -955,8 +957,8 @@ declare const SReadUserDocumentByDocumentId: v.ObjectSchema<{
|
|
|
955
957
|
type SReadUserDocumentByDocumentId = v.InferOutput<typeof SReadUserDocumentByDocumentId>;
|
|
956
958
|
declare const SUpdateUserDocument: v.ObjectSchema<{
|
|
957
959
|
readonly username: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
958
|
-
readonly email: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
959
|
-
readonly password: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
960
|
+
readonly email: v.UndefinedableSchema<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>;
|
|
961
|
+
readonly password: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>, undefined>;
|
|
960
962
|
readonly blocked: v.UndefinedableSchema<v.BooleanSchema<"this value must be either true or false">, undefined>;
|
|
961
963
|
readonly confirmed: v.UndefinedableSchema<v.BooleanSchema<"this value must be either true or false">, undefined>;
|
|
962
964
|
readonly role: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>, undefined>;
|
|
@@ -978,8 +980,8 @@ declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
|
|
|
978
980
|
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>;
|
|
979
981
|
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>;
|
|
980
982
|
readonly max_cost: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>, undefined>;
|
|
981
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
982
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
983
|
+
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>;
|
|
984
|
+
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>;
|
|
983
985
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
984
986
|
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>;
|
|
985
987
|
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>;
|
|
@@ -995,8 +997,8 @@ type SQueryListCampaignIdDocuments = v.InferOutput<typeof SQueryListCampaignIdDo
|
|
|
995
997
|
declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
996
998
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
997
999
|
readonly cost: 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">]>;
|
|
998
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
999
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1000
|
+
readonly label: 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">]>;
|
|
1001
|
+
readonly value: 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: - _ .">]>;
|
|
1000
1002
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1001
1003
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1002
1004
|
}, undefined>;
|
|
@@ -1005,8 +1007,8 @@ declare const SCreateMultipleCampaignIdDocuments: v.ObjectSchema<{
|
|
|
1005
1007
|
readonly campaign_ids: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1006
1008
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1007
1009
|
readonly cost: 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">]>;
|
|
1008
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1009
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1010
|
+
readonly label: 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">]>;
|
|
1011
|
+
readonly value: 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: - _ .">]>;
|
|
1010
1012
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1011
1013
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1012
1014
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1029,8 +1031,8 @@ declare const SReadCampaignIdDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1029
1031
|
type SReadCampaignIdDocumentByDocumentId = v.InferOutput<typeof SReadCampaignIdDocumentByDocumentId>;
|
|
1030
1032
|
declare const SUpdateAsCreatorCampaignIdDocument: v.ObjectSchema<{
|
|
1031
1033
|
readonly cost: v.UndefinedableSchema<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>;
|
|
1032
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1033
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1034
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1035
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1034
1036
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1035
1037
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1036
1038
|
}, undefined>;
|
|
@@ -1039,15 +1041,15 @@ declare const SUpdateAsCreatorCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
|
1039
1041
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1040
1042
|
readonly data: v.ObjectSchema<{
|
|
1041
1043
|
readonly cost: v.UndefinedableSchema<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>;
|
|
1042
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1043
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1044
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1045
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1044
1046
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1045
1047
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1046
1048
|
}, undefined>;
|
|
1047
1049
|
}, undefined>;
|
|
1048
1050
|
type SUpdateAsCreatorCampaignIdDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignIdDocumentRequest>;
|
|
1049
1051
|
declare const SUpdateAsInvitedCampaignIdDocument: v.ObjectSchema<{
|
|
1050
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1052
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1051
1053
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1052
1054
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1053
1055
|
}, undefined>;
|
|
@@ -1055,7 +1057,7 @@ type SUpdateAsInvitedCampaignIdDocument = v.InferOutput<typeof SUpdateAsInvitedC
|
|
|
1055
1057
|
declare const SUpdateAsInvitedCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
1056
1058
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1057
1059
|
readonly data: v.ObjectSchema<{
|
|
1058
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1060
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1059
1061
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1060
1062
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1061
1063
|
}, undefined>;
|
|
@@ -1063,12 +1065,12 @@ declare const SUpdateAsInvitedCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
|
1063
1065
|
type SUpdateAsInvitedCampaignIdDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignIdDocumentRequest>;
|
|
1064
1066
|
declare const SUpdateCampaignIdDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1065
1067
|
readonly cost: v.UndefinedableSchema<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>;
|
|
1066
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1067
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1068
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1069
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 2, "the value is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1068
1070
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1069
1071
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1070
1072
|
}, undefined>, v.ObjectSchema<{
|
|
1071
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1073
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1072
1074
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1073
1075
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1074
1076
|
}, undefined>], undefined>;
|
|
@@ -1090,8 +1092,8 @@ declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
|
|
|
1090
1092
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1091
1093
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1092
1094
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1093
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1094
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1095
|
+
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>;
|
|
1096
|
+
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>;
|
|
1095
1097
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1096
1098
|
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>;
|
|
1097
1099
|
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>;
|
|
@@ -1106,8 +1108,8 @@ declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
|
|
|
1106
1108
|
type SQueryListCampaignKeyDocuments = v.InferOutput<typeof SQueryListCampaignKeyDocuments>;
|
|
1107
1109
|
declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
1108
1110
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1109
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1110
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1111
|
+
readonly label: 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">]>;
|
|
1112
|
+
readonly value: 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: - _ .">]>;
|
|
1111
1113
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1112
1114
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1113
1115
|
}, undefined>;
|
|
@@ -1115,8 +1117,8 @@ type SCreateCampaignKeyDocument = v.InferOutput<typeof SCreateCampaignKeyDocumen
|
|
|
1115
1117
|
declare const SCreateMultipleCampaignKeyDocuments: v.ObjectSchema<{
|
|
1116
1118
|
readonly campaign_keys: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1117
1119
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1118
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1119
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1120
|
+
readonly label: 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">]>;
|
|
1121
|
+
readonly value: 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: - _ .">]>;
|
|
1120
1122
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1121
1123
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1122
1124
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1137,8 +1139,8 @@ declare const SReadCampaignKeyDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1137
1139
|
}, undefined>;
|
|
1138
1140
|
type SReadCampaignKeyDocumentByDocumentId = v.InferOutput<typeof SReadCampaignKeyDocumentByDocumentId>;
|
|
1139
1141
|
declare const SUpdateAsCreatorCampaignKeyDocument: v.ObjectSchema<{
|
|
1140
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1141
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1142
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1143
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1142
1144
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1143
1145
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1144
1146
|
}, undefined>;
|
|
@@ -1146,15 +1148,15 @@ type SUpdateAsCreatorCampaignKeyDocument = v.InferOutput<typeof SUpdateAsCreator
|
|
|
1146
1148
|
declare const SUpdateAsCreatorCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
1147
1149
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1148
1150
|
readonly data: v.ObjectSchema<{
|
|
1149
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1150
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1151
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1152
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1151
1153
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1152
1154
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1153
1155
|
}, undefined>;
|
|
1154
1156
|
}, undefined>;
|
|
1155
1157
|
type SUpdateAsCreatorCampaignKeyDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignKeyDocumentRequest>;
|
|
1156
1158
|
declare const SUpdateAsInvitedCampaignKeyDocument: v.ObjectSchema<{
|
|
1157
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1159
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1158
1160
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1159
1161
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1160
1162
|
}, undefined>;
|
|
@@ -1162,19 +1164,19 @@ type SUpdateAsInvitedCampaignKeyDocument = v.InferOutput<typeof SUpdateAsInvited
|
|
|
1162
1164
|
declare const SUpdateAsInvitedCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
1163
1165
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1164
1166
|
readonly data: v.ObjectSchema<{
|
|
1165
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1167
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1166
1168
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1167
1169
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1168
1170
|
}, undefined>;
|
|
1169
1171
|
}, undefined>;
|
|
1170
1172
|
type SUpdateAsInvitedCampaignKeyDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignKeyDocumentRequest>;
|
|
1171
1173
|
declare const SUpdateCampaignKeyDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1172
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1173
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1174
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1175
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1174
1176
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1175
1177
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1176
1178
|
}, undefined>, v.ObjectSchema<{
|
|
1177
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1179
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1178
1180
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1179
1181
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1180
1182
|
}, undefined>], undefined>;
|
|
@@ -1196,8 +1198,8 @@ declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
|
|
|
1196
1198
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1197
1199
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1198
1200
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1199
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1200
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1201
|
+
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>;
|
|
1202
|
+
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>;
|
|
1201
1203
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1202
1204
|
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>;
|
|
1203
1205
|
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>;
|
|
@@ -1212,8 +1214,8 @@ declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
|
|
|
1212
1214
|
type SQueryListCampaignPhaseDocuments = v.InferOutput<typeof SQueryListCampaignPhaseDocuments>;
|
|
1213
1215
|
declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
1214
1216
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1215
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1216
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1217
|
+
readonly label: 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">]>;
|
|
1218
|
+
readonly value: 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: - _ .">]>;
|
|
1217
1219
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1218
1220
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1219
1221
|
}, undefined>;
|
|
@@ -1221,8 +1223,8 @@ type SCreateCampaignPhaseDocument = v.InferOutput<typeof SCreateCampaignPhaseDoc
|
|
|
1221
1223
|
declare const SCreateMultipleCampaignPhaseDocuments: v.ObjectSchema<{
|
|
1222
1224
|
readonly campaign_phases: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1223
1225
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1224
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1225
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1226
|
+
readonly label: 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">]>;
|
|
1227
|
+
readonly value: 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: - _ .">]>;
|
|
1226
1228
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1227
1229
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1228
1230
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1243,8 +1245,8 @@ declare const SReadCampaignPhaseDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1243
1245
|
}, undefined>;
|
|
1244
1246
|
type SReadCampaignPhaseDocumentByDocumentId = v.InferOutput<typeof SReadCampaignPhaseDocumentByDocumentId>;
|
|
1245
1247
|
declare const SUpdateAsCreatorCampaignPhaseDocument: v.ObjectSchema<{
|
|
1246
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1247
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1248
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1249
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1248
1250
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1249
1251
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1250
1252
|
}, undefined>;
|
|
@@ -1252,15 +1254,15 @@ type SUpdateAsCreatorCampaignPhaseDocument = v.InferOutput<typeof SUpdateAsCreat
|
|
|
1252
1254
|
declare const SUpdateAsCreatorCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
1253
1255
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1254
1256
|
readonly data: v.ObjectSchema<{
|
|
1255
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1256
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1257
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1258
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1257
1259
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1258
1260
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1259
1261
|
}, undefined>;
|
|
1260
1262
|
}, undefined>;
|
|
1261
1263
|
type SUpdateAsCreatorCampaignPhaseDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignPhaseDocumentRequest>;
|
|
1262
1264
|
declare const SUpdateAsInvitedCampaignPhaseDocument: v.ObjectSchema<{
|
|
1263
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1265
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1264
1266
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1265
1267
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1266
1268
|
}, undefined>;
|
|
@@ -1268,19 +1270,19 @@ type SUpdateAsInvitedCampaignPhaseDocument = v.InferOutput<typeof SUpdateAsInvit
|
|
|
1268
1270
|
declare const SUpdateAsInvitedCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
1269
1271
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1270
1272
|
readonly data: v.ObjectSchema<{
|
|
1271
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1273
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1272
1274
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1273
1275
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1274
1276
|
}, undefined>;
|
|
1275
1277
|
}, undefined>;
|
|
1276
1278
|
type SUpdateAsInvitedCampaignPhaseDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignPhaseDocumentRequest>;
|
|
1277
1279
|
declare const SUpdateCampaignPhaseDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1278
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1279
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1280
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1281
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1280
1282
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1281
1283
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1282
1284
|
}, undefined>, v.ObjectSchema<{
|
|
1283
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1285
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1284
1286
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1285
1287
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1286
1288
|
}, undefined>], undefined>;
|
|
@@ -1302,8 +1304,8 @@ declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
|
|
|
1302
1304
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1303
1305
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1304
1306
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1305
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1306
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1307
|
+
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>;
|
|
1308
|
+
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>;
|
|
1307
1309
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1308
1310
|
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>;
|
|
1309
1311
|
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>;
|
|
@@ -1318,8 +1320,8 @@ declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
|
|
|
1318
1320
|
type SQueryListCampaignProductDocuments = v.InferOutput<typeof SQueryListCampaignProductDocuments>;
|
|
1319
1321
|
declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
1320
1322
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1321
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1322
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1323
|
+
readonly label: 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">]>;
|
|
1324
|
+
readonly value: 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: - _ .">]>;
|
|
1323
1325
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1324
1326
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1325
1327
|
}, undefined>;
|
|
@@ -1327,8 +1329,8 @@ type SCreateCampaignProductDocument = v.InferOutput<typeof SCreateCampaignProduc
|
|
|
1327
1329
|
declare const SCreateMultipleCampaignProductDocuments: v.ObjectSchema<{
|
|
1328
1330
|
readonly campaign_products: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1329
1331
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1330
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1331
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1332
|
+
readonly label: 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">]>;
|
|
1333
|
+
readonly value: 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: - _ .">]>;
|
|
1332
1334
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1333
1335
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1334
1336
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1349,8 +1351,8 @@ declare const SReadCampaignProductDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1349
1351
|
}, undefined>;
|
|
1350
1352
|
type SReadCampaignProductDocumentByDocumentId = v.InferOutput<typeof SReadCampaignProductDocumentByDocumentId>;
|
|
1351
1353
|
declare const SUpdateAsCreatorCampaignProductDocument: v.ObjectSchema<{
|
|
1352
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1353
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1354
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1355
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1354
1356
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1355
1357
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1356
1358
|
}, undefined>;
|
|
@@ -1358,15 +1360,15 @@ type SUpdateAsCreatorCampaignProductDocument = v.InferOutput<typeof SUpdateAsCre
|
|
|
1358
1360
|
declare const SUpdateAsCreatorCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
1359
1361
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1360
1362
|
readonly data: v.ObjectSchema<{
|
|
1361
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1362
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1363
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1364
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1363
1365
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1364
1366
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1365
1367
|
}, undefined>;
|
|
1366
1368
|
}, undefined>;
|
|
1367
1369
|
type SUpdateAsCreatorCampaignProductDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignProductDocumentRequest>;
|
|
1368
1370
|
declare const SUpdateAsInvitedCampaignProductDocument: v.ObjectSchema<{
|
|
1369
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1371
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1370
1372
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1371
1373
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1372
1374
|
}, undefined>;
|
|
@@ -1374,19 +1376,19 @@ type SUpdateAsInvitedCampaignProductDocument = v.InferOutput<typeof SUpdateAsInv
|
|
|
1374
1376
|
declare const SUpdateAsInvitedCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
1375
1377
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1376
1378
|
readonly data: v.ObjectSchema<{
|
|
1377
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1379
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1378
1380
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1379
1381
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1380
1382
|
}, undefined>;
|
|
1381
1383
|
}, undefined>;
|
|
1382
1384
|
type SUpdateAsInvitedCampaignProductDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignProductDocumentRequest>;
|
|
1383
1385
|
declare const SUpdateCampaignProductDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1384
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1385
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1386
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1387
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1386
1388
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1387
1389
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1388
1390
|
}, undefined>, v.ObjectSchema<{
|
|
1389
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1391
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1390
1392
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1391
1393
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1392
1394
|
}, undefined>], undefined>;
|
|
@@ -1408,8 +1410,8 @@ declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
|
|
|
1408
1410
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1409
1411
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1410
1412
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1411
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1412
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1413
|
+
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>;
|
|
1414
|
+
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>;
|
|
1413
1415
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1414
1416
|
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>;
|
|
1415
1417
|
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>;
|
|
@@ -1424,8 +1426,8 @@ declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
|
|
|
1424
1426
|
type SQueryListCampaignTargetDocuments = v.InferOutput<typeof SQueryListCampaignTargetDocuments>;
|
|
1425
1427
|
declare const SCreateCampaignTargetDocument: v.ObjectSchema<{
|
|
1426
1428
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1427
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1428
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1429
|
+
readonly label: 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">]>;
|
|
1430
|
+
readonly value: 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: - _ .">]>;
|
|
1429
1431
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1430
1432
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1431
1433
|
}, undefined>;
|
|
@@ -1433,8 +1435,8 @@ type SCreateCampaignTargetDocument = v.InferOutput<typeof SCreateCampaignTargetD
|
|
|
1433
1435
|
declare const SCreateMultipleCampaignTargetDocuments: v.ObjectSchema<{
|
|
1434
1436
|
readonly campaign_targets: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1435
1437
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1436
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1437
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1438
|
+
readonly label: 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">]>;
|
|
1439
|
+
readonly value: 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: - _ .">]>;
|
|
1438
1440
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1439
1441
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1440
1442
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1455,8 +1457,8 @@ declare const SReadCampaignTargetDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1455
1457
|
}, undefined>;
|
|
1456
1458
|
type SReadCampaignTargetDocumentByDocumentId = v.InferOutput<typeof SReadCampaignTargetDocumentByDocumentId>;
|
|
1457
1459
|
declare const SUpdateAsCreatorCampaignTargetDocument: v.ObjectSchema<{
|
|
1458
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1459
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1460
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1461
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1460
1462
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1461
1463
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1462
1464
|
}, undefined>;
|
|
@@ -1464,15 +1466,15 @@ type SUpdateAsCreatorCampaignTargetDocument = v.InferOutput<typeof SUpdateAsCrea
|
|
|
1464
1466
|
declare const SUpdateAsCreatorCampaignTargetDocumentRequest: v.ObjectSchema<{
|
|
1465
1467
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1466
1468
|
readonly data: v.ObjectSchema<{
|
|
1467
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1468
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1469
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1470
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1469
1471
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1470
1472
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1471
1473
|
}, undefined>;
|
|
1472
1474
|
}, undefined>;
|
|
1473
1475
|
type SUpdateAsCreatorCampaignTargetDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignTargetDocumentRequest>;
|
|
1474
1476
|
declare const SUpdateAsInvitedCampaignTargetDocument: v.ObjectSchema<{
|
|
1475
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1477
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1476
1478
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1477
1479
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1478
1480
|
}, undefined>;
|
|
@@ -1480,19 +1482,19 @@ type SUpdateAsInvitedCampaignTargetDocument = v.InferOutput<typeof SUpdateAsInvi
|
|
|
1480
1482
|
declare const SUpdateAsInvitedCampaignTargetDocumentRequest: v.ObjectSchema<{
|
|
1481
1483
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1482
1484
|
readonly data: v.ObjectSchema<{
|
|
1483
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1485
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1484
1486
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1485
1487
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1486
1488
|
}, undefined>;
|
|
1487
1489
|
}, undefined>;
|
|
1488
1490
|
type SUpdateAsInvitedCampaignTargetDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignTargetDocumentRequest>;
|
|
1489
1491
|
declare const SUpdateCampaignTargetDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1490
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1491
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1492
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1493
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1492
1494
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1493
1495
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1494
1496
|
}, undefined>, v.ObjectSchema<{
|
|
1495
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1497
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1496
1498
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1497
1499
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1498
1500
|
}, undefined>], undefined>;
|
|
@@ -1514,8 +1516,8 @@ declare const SQueryListContentDocuments: v.ObjectSchema<{
|
|
|
1514
1516
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1515
1517
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1516
1518
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1517
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1518
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1519
|
+
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>;
|
|
1520
|
+
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>;
|
|
1519
1521
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1520
1522
|
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>;
|
|
1521
1523
|
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>;
|
|
@@ -1530,8 +1532,8 @@ declare const SQueryListContentDocuments: v.ObjectSchema<{
|
|
|
1530
1532
|
type SQueryListContentDocuments = v.InferOutput<typeof SQueryListContentDocuments>;
|
|
1531
1533
|
declare const SCreateContentDocument: v.ObjectSchema<{
|
|
1532
1534
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1533
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1534
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1535
|
+
readonly label: 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">]>;
|
|
1536
|
+
readonly value: 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: - _ .">]>;
|
|
1535
1537
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1536
1538
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1537
1539
|
}, undefined>;
|
|
@@ -1539,8 +1541,8 @@ type SCreateContentDocument = v.InferOutput<typeof SCreateContentDocument>;
|
|
|
1539
1541
|
declare const SCreateMultipleContentDocuments: v.ObjectSchema<{
|
|
1540
1542
|
readonly contents: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1541
1543
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1542
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1543
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1544
|
+
readonly label: 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">]>;
|
|
1545
|
+
readonly value: 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: - _ .">]>;
|
|
1544
1546
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1545
1547
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1546
1548
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1561,8 +1563,8 @@ declare const SReadContentDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1561
1563
|
}, undefined>;
|
|
1562
1564
|
type SReadContentDocumentByDocumentId = v.InferOutput<typeof SReadContentDocumentByDocumentId>;
|
|
1563
1565
|
declare const SUpdateAsCreatorContentDocument: v.ObjectSchema<{
|
|
1564
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1565
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1566
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1567
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1566
1568
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1567
1569
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1568
1570
|
}, undefined>;
|
|
@@ -1570,15 +1572,15 @@ type SUpdateAsCreatorContentDocument = v.InferOutput<typeof SUpdateAsCreatorCont
|
|
|
1570
1572
|
declare const SUpdateAsCreatorContentDocumentRequest: v.ObjectSchema<{
|
|
1571
1573
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1572
1574
|
readonly data: v.ObjectSchema<{
|
|
1573
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1574
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1575
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1576
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1575
1577
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1576
1578
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1577
1579
|
}, undefined>;
|
|
1578
1580
|
}, undefined>;
|
|
1579
1581
|
type SUpdateAsCreatorContentDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorContentDocumentRequest>;
|
|
1580
1582
|
declare const SUpdateAsInvitedContentDocument: v.ObjectSchema<{
|
|
1581
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1583
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1582
1584
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1583
1585
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1584
1586
|
}, undefined>;
|
|
@@ -1586,19 +1588,19 @@ type SUpdateAsInvitedContentDocument = v.InferOutput<typeof SUpdateAsInvitedCont
|
|
|
1586
1588
|
declare const SUpdateAsInvitedContentDocumentRequest: v.ObjectSchema<{
|
|
1587
1589
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1588
1590
|
readonly data: v.ObjectSchema<{
|
|
1589
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1591
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1590
1592
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1591
1593
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1592
1594
|
}, undefined>;
|
|
1593
1595
|
}, undefined>;
|
|
1594
1596
|
type SUpdateAsInvitedContentDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedContentDocumentRequest>;
|
|
1595
1597
|
declare const SUpdateContentDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1596
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1597
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1598
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1599
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1598
1600
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1599
1601
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1600
1602
|
}, undefined>, v.ObjectSchema<{
|
|
1601
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1603
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1602
1604
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1603
1605
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1604
1606
|
}, undefined>], undefined>;
|
|
@@ -1620,8 +1622,8 @@ declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
|
1620
1622
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1621
1623
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1622
1624
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1623
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1624
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1625
|
+
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>;
|
|
1626
|
+
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>;
|
|
1625
1627
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1626
1628
|
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>;
|
|
1627
1629
|
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>;
|
|
@@ -1636,8 +1638,8 @@ declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
|
1636
1638
|
type SQueryListCreativeFormatVariantDocuments = v.InferOutput<typeof SQueryListCreativeFormatVariantDocuments>;
|
|
1637
1639
|
declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
1638
1640
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1639
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1640
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1641
|
+
readonly label: 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">]>;
|
|
1642
|
+
readonly value: 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: - _ .">]>;
|
|
1641
1643
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1642
1644
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1643
1645
|
}, undefined>;
|
|
@@ -1645,8 +1647,8 @@ type SCreateCreativeFormatVariantDocument = v.InferOutput<typeof SCreateCreative
|
|
|
1645
1647
|
declare const SCreateMultipleCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
1646
1648
|
readonly creative_format_variants: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1647
1649
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1648
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1649
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1650
|
+
readonly label: 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">]>;
|
|
1651
|
+
readonly value: 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: - _ .">]>;
|
|
1650
1652
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1651
1653
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1652
1654
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1667,8 +1669,8 @@ declare const SReadCreativeFormatVariantDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1667
1669
|
}, undefined>;
|
|
1668
1670
|
type SReadCreativeFormatVariantDocumentByDocumentId = v.InferOutput<typeof SReadCreativeFormatVariantDocumentByDocumentId>;
|
|
1669
1671
|
declare const SUpdateAsCreatorCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
1670
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1671
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1672
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1673
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1672
1674
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1673
1675
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1674
1676
|
}, undefined>;
|
|
@@ -1676,15 +1678,15 @@ type SUpdateAsCreatorCreativeFormatVariantDocument = v.InferOutput<typeof SUpdat
|
|
|
1676
1678
|
declare const SUpdateAsCreatorCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
1677
1679
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1678
1680
|
readonly data: v.ObjectSchema<{
|
|
1679
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1680
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1681
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1682
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1681
1683
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1682
1684
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1683
1685
|
}, undefined>;
|
|
1684
1686
|
}, undefined>;
|
|
1685
1687
|
type SUpdateAsCreatorCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatVariantDocumentRequest>;
|
|
1686
1688
|
declare const SUpdateAsInvitedCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
1687
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1689
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1688
1690
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1689
1691
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1690
1692
|
}, undefined>;
|
|
@@ -1692,19 +1694,19 @@ type SUpdateAsInvitedCreativeFormatVariantDocument = v.InferOutput<typeof SUpdat
|
|
|
1692
1694
|
declare const SUpdateAsInvitedCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
1693
1695
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1694
1696
|
readonly data: v.ObjectSchema<{
|
|
1695
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1697
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1696
1698
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1697
1699
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1698
1700
|
}, undefined>;
|
|
1699
1701
|
}, undefined>;
|
|
1700
1702
|
type SUpdateAsInvitedCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatVariantDocumentRequest>;
|
|
1701
1703
|
declare const SUpdateCreativeFormatVariantDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1702
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1703
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1704
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1705
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1704
1706
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1705
1707
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1706
1708
|
}, undefined>, v.ObjectSchema<{
|
|
1707
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1709
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1708
1710
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1709
1711
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1710
1712
|
}, undefined>], undefined>;
|
|
@@ -1726,8 +1728,8 @@ declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
|
|
|
1726
1728
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1727
1729
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1728
1730
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1729
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1730
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1731
|
+
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>;
|
|
1732
|
+
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>;
|
|
1731
1733
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1732
1734
|
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>;
|
|
1733
1735
|
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>;
|
|
@@ -1742,8 +1744,8 @@ declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
|
|
|
1742
1744
|
type SQueryListCreativeFormatDocuments = v.InferOutput<typeof SQueryListCreativeFormatDocuments>;
|
|
1743
1745
|
declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
1744
1746
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1745
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1746
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1747
|
+
readonly label: 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">]>;
|
|
1748
|
+
readonly value: 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: - _ .">]>;
|
|
1747
1749
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1748
1750
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1749
1751
|
}, undefined>;
|
|
@@ -1751,8 +1753,8 @@ type SCreateCreativeFormatDocument = v.InferOutput<typeof SCreateCreativeFormatD
|
|
|
1751
1753
|
declare const SCreateMultipleCreativeFormatDocuments: v.ObjectSchema<{
|
|
1752
1754
|
readonly creative_formats: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1753
1755
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1754
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1755
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1756
|
+
readonly label: 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">]>;
|
|
1757
|
+
readonly value: 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: - _ .">]>;
|
|
1756
1758
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1757
1759
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1758
1760
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1773,8 +1775,8 @@ declare const SReadCreativeFormatDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1773
1775
|
}, undefined>;
|
|
1774
1776
|
type SReadCreativeFormatDocumentByDocumentId = v.InferOutput<typeof SReadCreativeFormatDocumentByDocumentId>;
|
|
1775
1777
|
declare const SUpdateAsCreatorCreativeFormatDocument: v.ObjectSchema<{
|
|
1776
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1777
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1778
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1779
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1778
1780
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1779
1781
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1780
1782
|
}, undefined>;
|
|
@@ -1782,15 +1784,15 @@ type SUpdateAsCreatorCreativeFormatDocument = v.InferOutput<typeof SUpdateAsCrea
|
|
|
1782
1784
|
declare const SUpdateAsCreatorCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
1783
1785
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1784
1786
|
readonly data: v.ObjectSchema<{
|
|
1785
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1786
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1787
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 2, "the label is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1788
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1787
1789
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1788
1790
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1789
1791
|
}, undefined>;
|
|
1790
1792
|
}, undefined>;
|
|
1791
1793
|
type SUpdateAsCreatorCreativeFormatDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCreativeFormatDocumentRequest>;
|
|
1792
1794
|
declare const SUpdateAsInvitedCreativeFormatDocument: v.ObjectSchema<{
|
|
1793
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1795
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1794
1796
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1795
1797
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1796
1798
|
}, undefined>;
|
|
@@ -1798,19 +1800,19 @@ type SUpdateAsInvitedCreativeFormatDocument = v.InferOutput<typeof SUpdateAsInvi
|
|
|
1798
1800
|
declare const SUpdateAsInvitedCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
1799
1801
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1800
1802
|
readonly data: v.ObjectSchema<{
|
|
1801
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1803
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1802
1804
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1803
1805
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1804
1806
|
}, undefined>;
|
|
1805
1807
|
}, undefined>;
|
|
1806
1808
|
type SUpdateAsInvitedCreativeFormatDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCreativeFormatDocumentRequest>;
|
|
1807
1809
|
declare const SUpdateCreativeFormatDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1808
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1809
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1810
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1811
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1810
1812
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1811
1813
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1812
1814
|
}, undefined>, v.ObjectSchema<{
|
|
1813
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1815
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1814
1816
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1815
1817
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1816
1818
|
}, undefined>], undefined>;
|
|
@@ -1832,8 +1834,8 @@ declare const SQueryListMediumDocuments: v.ObjectSchema<{
|
|
|
1832
1834
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1833
1835
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1834
1836
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1835
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1836
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1837
|
+
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>;
|
|
1838
|
+
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>;
|
|
1837
1839
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1838
1840
|
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>;
|
|
1839
1841
|
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>;
|
|
@@ -1848,8 +1850,8 @@ declare const SQueryListMediumDocuments: v.ObjectSchema<{
|
|
|
1848
1850
|
type SQueryListMediumDocuments = v.InferOutput<typeof SQueryListMediumDocuments>;
|
|
1849
1851
|
declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
1850
1852
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1851
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1852
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1853
|
+
readonly label: 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">]>;
|
|
1854
|
+
readonly value: 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: - _ .">]>;
|
|
1853
1855
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1854
1856
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1855
1857
|
}, undefined>;
|
|
@@ -1857,8 +1859,8 @@ type SCreateMediumDocument = v.InferOutput<typeof SCreateMediumDocument>;
|
|
|
1857
1859
|
declare const SCreateMultipleMediumDocuments: v.ObjectSchema<{
|
|
1858
1860
|
readonly mediums: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1859
1861
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1860
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1861
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1862
|
+
readonly label: 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">]>;
|
|
1863
|
+
readonly value: 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: - _ .">]>;
|
|
1862
1864
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1863
1865
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1864
1866
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1879,8 +1881,8 @@ declare const SReadMediumDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1879
1881
|
}, undefined>;
|
|
1880
1882
|
type SReadMediumDocumentByDocumentId = v.InferOutput<typeof SReadMediumDocumentByDocumentId>;
|
|
1881
1883
|
declare const SUpdateAsCreatorMediumDocument: v.ObjectSchema<{
|
|
1882
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1883
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1884
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1885
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1884
1886
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1885
1887
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1886
1888
|
}, undefined>;
|
|
@@ -1888,15 +1890,15 @@ type SUpdateAsCreatorMediumDocument = v.InferOutput<typeof SUpdateAsCreatorMediu
|
|
|
1888
1890
|
declare const SUpdateAsCreatorMediumDocumentRequest: v.ObjectSchema<{
|
|
1889
1891
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1890
1892
|
readonly data: v.ObjectSchema<{
|
|
1891
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1892
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1893
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1894
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1893
1895
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1894
1896
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1895
1897
|
}, undefined>;
|
|
1896
1898
|
}, undefined>;
|
|
1897
1899
|
type SUpdateAsCreatorMediumDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorMediumDocumentRequest>;
|
|
1898
1900
|
declare const SUpdateAsInvitedMediumDocument: v.ObjectSchema<{
|
|
1899
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1901
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1900
1902
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1901
1903
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1902
1904
|
}, undefined>;
|
|
@@ -1904,19 +1906,19 @@ type SUpdateAsInvitedMediumDocument = v.InferOutput<typeof SUpdateAsInvitedMediu
|
|
|
1904
1906
|
declare const SUpdateAsInvitedMediumDocumentRequest: v.ObjectSchema<{
|
|
1905
1907
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1906
1908
|
readonly data: v.ObjectSchema<{
|
|
1907
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1909
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1908
1910
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1909
1911
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1910
1912
|
}, undefined>;
|
|
1911
1913
|
}, undefined>;
|
|
1912
1914
|
type SUpdateAsInvitedMediumDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedMediumDocumentRequest>;
|
|
1913
1915
|
declare const SUpdateMediumDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1914
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1915
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1916
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1917
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1916
1918
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1917
1919
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1918
1920
|
}, undefined>, v.ObjectSchema<{
|
|
1919
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1921
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1920
1922
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1921
1923
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1922
1924
|
}, undefined>], undefined>;
|
|
@@ -1938,8 +1940,8 @@ declare const SQueryListSourceDocuments: v.ObjectSchema<{
|
|
|
1938
1940
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1939
1941
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1940
1942
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1941
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1942
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1943
|
+
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>;
|
|
1944
|
+
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>;
|
|
1943
1945
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1944
1946
|
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>;
|
|
1945
1947
|
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>;
|
|
@@ -1954,8 +1956,8 @@ declare const SQueryListSourceDocuments: v.ObjectSchema<{
|
|
|
1954
1956
|
type SQueryListSourceDocuments = v.InferOutput<typeof SQueryListSourceDocuments>;
|
|
1955
1957
|
declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
1956
1958
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1957
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1958
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1959
|
+
readonly label: 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">]>;
|
|
1960
|
+
readonly value: 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: - _ .">]>;
|
|
1959
1961
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1960
1962
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1961
1963
|
}, undefined>;
|
|
@@ -1963,8 +1965,8 @@ type SCreateSourceDocument = v.InferOutput<typeof SCreateSourceDocument>;
|
|
|
1963
1965
|
declare const SCreateMultipleSourceDocuments: v.ObjectSchema<{
|
|
1964
1966
|
readonly sources: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1965
1967
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1966
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1967
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1968
|
+
readonly label: 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">]>;
|
|
1969
|
+
readonly value: 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: - _ .">]>;
|
|
1968
1970
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1969
1971
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1970
1972
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -1985,8 +1987,8 @@ declare const SReadSourceDocumentByDocumentId: v.ObjectSchema<{
|
|
|
1985
1987
|
}, undefined>;
|
|
1986
1988
|
type SReadSourceDocumentByDocumentId = v.InferOutput<typeof SReadSourceDocumentByDocumentId>;
|
|
1987
1989
|
declare const SUpdateAsCreatorSourceDocument: v.ObjectSchema<{
|
|
1988
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1989
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1990
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
1991
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1990
1992
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1991
1993
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1992
1994
|
}, undefined>;
|
|
@@ -1994,15 +1996,15 @@ type SUpdateAsCreatorSourceDocument = v.InferOutput<typeof SUpdateAsCreatorSourc
|
|
|
1994
1996
|
declare const SUpdateAsCreatorSourceDocumentRequest: v.ObjectSchema<{
|
|
1995
1997
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1996
1998
|
readonly data: v.ObjectSchema<{
|
|
1997
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
1998
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
1999
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2000
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
1999
2001
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
2000
2002
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2001
2003
|
}, undefined>;
|
|
2002
2004
|
}, undefined>;
|
|
2003
2005
|
type SUpdateAsCreatorSourceDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorSourceDocumentRequest>;
|
|
2004
2006
|
declare const SUpdateAsInvitedSourceDocument: v.ObjectSchema<{
|
|
2005
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2007
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2006
2008
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2007
2009
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2008
2010
|
}, undefined>;
|
|
@@ -2010,19 +2012,19 @@ type SUpdateAsInvitedSourceDocument = v.InferOutput<typeof SUpdateAsInvitedSourc
|
|
|
2010
2012
|
declare const SUpdateAsInvitedSourceDocumentRequest: v.ObjectSchema<{
|
|
2011
2013
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2012
2014
|
readonly data: v.ObjectSchema<{
|
|
2013
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2015
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2014
2016
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2015
2017
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2016
2018
|
}, undefined>;
|
|
2017
2019
|
}, undefined>;
|
|
2018
2020
|
type SUpdateAsInvitedSourceDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedSourceDocumentRequest>;
|
|
2019
2021
|
declare const SUpdateSourceDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
2020
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2021
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2022
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2023
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
2022
2024
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
2023
2025
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2024
2026
|
}, undefined>, v.ObjectSchema<{
|
|
2025
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2027
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2026
2028
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2027
2029
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2028
2030
|
}, undefined>], undefined>;
|
|
@@ -2044,8 +2046,8 @@ declare const SQueryListTermDocuments: v.ObjectSchema<{
|
|
|
2044
2046
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2045
2047
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
2046
2048
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
2047
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2048
|
-
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2049
|
+
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>;
|
|
2050
|
+
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>;
|
|
2049
2051
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2050
2052
|
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>;
|
|
2051
2053
|
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>;
|
|
@@ -2060,8 +2062,8 @@ declare const SQueryListTermDocuments: v.ObjectSchema<{
|
|
|
2060
2062
|
type SQueryListTermDocuments = v.InferOutput<typeof SQueryListTermDocuments>;
|
|
2061
2063
|
declare const SCreateTermDocument: v.ObjectSchema<{
|
|
2062
2064
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2063
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2064
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2065
|
+
readonly label: 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">]>;
|
|
2066
|
+
readonly value: 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: - _ .">]>;
|
|
2065
2067
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2066
2068
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2067
2069
|
}, undefined>;
|
|
@@ -2069,8 +2071,8 @@ type SCreateTermDocument = v.InferOutput<typeof SCreateTermDocument>;
|
|
|
2069
2071
|
declare const SCreateMultipleTermDocuments: v.ObjectSchema<{
|
|
2070
2072
|
readonly terms: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
2071
2073
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2072
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2073
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2074
|
+
readonly label: 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">]>;
|
|
2075
|
+
readonly value: 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: - _ .">]>;
|
|
2074
2076
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2075
2077
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2076
2078
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
@@ -2091,8 +2093,8 @@ declare const SReadTermDocumentByDocumentId: v.ObjectSchema<{
|
|
|
2091
2093
|
}, undefined>;
|
|
2092
2094
|
type SReadTermDocumentByDocumentId = v.InferOutput<typeof SReadTermDocumentByDocumentId>;
|
|
2093
2095
|
declare const SUpdateAsCreatorTermDocument: v.ObjectSchema<{
|
|
2094
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2095
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2096
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2097
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
2096
2098
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
2097
2099
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2098
2100
|
}, undefined>;
|
|
@@ -2100,15 +2102,15 @@ type SUpdateAsCreatorTermDocument = v.InferOutput<typeof SUpdateAsCreatorTermDoc
|
|
|
2100
2102
|
declare const SUpdateAsCreatorTermDocumentRequest: v.ObjectSchema<{
|
|
2101
2103
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2102
2104
|
readonly data: v.ObjectSchema<{
|
|
2103
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2104
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2105
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2106
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
2105
2107
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
2106
2108
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2107
2109
|
}, undefined>;
|
|
2108
2110
|
}, undefined>;
|
|
2109
2111
|
type SUpdateAsCreatorTermDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorTermDocumentRequest>;
|
|
2110
2112
|
declare const SUpdateAsInvitedTermDocument: v.ObjectSchema<{
|
|
2111
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2113
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2112
2114
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2113
2115
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2114
2116
|
}, undefined>;
|
|
@@ -2116,19 +2118,19 @@ type SUpdateAsInvitedTermDocument = v.InferOutput<typeof SUpdateAsInvitedTermDoc
|
|
|
2116
2118
|
declare const SUpdateAsInvitedTermDocumentRequest: v.ObjectSchema<{
|
|
2117
2119
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2118
2120
|
readonly data: v.ObjectSchema<{
|
|
2119
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2121
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2120
2122
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2121
2123
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2122
2124
|
}, undefined>;
|
|
2123
2125
|
}, undefined>;
|
|
2124
2126
|
type SUpdateAsInvitedTermDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedTermDocumentRequest>;
|
|
2125
2127
|
declare const SUpdateTermDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
2126
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2127
|
-
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2128
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2129
|
+
readonly value: v.UndefinedableSchema<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>;
|
|
2128
2130
|
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
2129
2131
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2130
2132
|
}, undefined>, v.ObjectSchema<{
|
|
2131
|
-
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2133
|
+
readonly label: v.UndefinedableSchema<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>;
|
|
2132
2134
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2133
2135
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
2134
2136
|
}, undefined>], undefined>;
|
|
@@ -2252,30 +2254,30 @@ declare const SReadUserDocumentToken: v.ObjectSchema<{
|
|
|
2252
2254
|
}, undefined>;
|
|
2253
2255
|
type SReadUserDocumentToken = v.InferOutput<typeof SReadUserDocumentToken>;
|
|
2254
2256
|
declare const SLoginUserDocument: v.ObjectSchema<{
|
|
2255
|
-
readonly identifier: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2256
|
-
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
2257
|
+
readonly identifier: 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">]>;
|
|
2258
|
+
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
2257
2259
|
}, undefined>;
|
|
2258
2260
|
type SLoginUserDocument = v.InferOutput<typeof SLoginUserDocument>;
|
|
2259
2261
|
declare const SRegisterUserDocument: v.ObjectSchema<{
|
|
2260
2262
|
readonly username: 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: - _ .">]>;
|
|
2261
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2262
|
-
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
2263
|
+
readonly email: 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">]>;
|
|
2264
|
+
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
2263
2265
|
}, undefined>;
|
|
2264
2266
|
type SRegisterUserDocument = v.InferOutput<typeof SRegisterUserDocument>;
|
|
2265
2267
|
declare const SForgotPasswordUserDocument: v.ObjectSchema<{
|
|
2266
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2268
|
+
readonly email: 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">]>;
|
|
2267
2269
|
}, undefined>;
|
|
2268
2270
|
type SForgotPasswordUserDocument = v.InferOutput<typeof SForgotPasswordUserDocument>;
|
|
2269
2271
|
declare const SResetPasswordUserDocument: v.ObjectSchema<{
|
|
2270
|
-
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
2271
|
-
readonly passwordConfirmation: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
2272
|
+
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
2273
|
+
readonly passwordConfirmation: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
2272
2274
|
readonly code: v.StringSchema<undefined>;
|
|
2273
2275
|
}, undefined>;
|
|
2274
2276
|
type SResetPasswordUserDocument = v.InferOutput<typeof SResetPasswordUserDocument>;
|
|
2275
2277
|
declare const SChangePassword: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2276
|
-
readonly currentPassword: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
2277
|
-
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
2278
|
-
readonly passwordConfirmation: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
2278
|
+
readonly currentPassword: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
2279
|
+
readonly password: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
2280
|
+
readonly passwordConfirmation: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
2279
2281
|
}, undefined>, v.BaseValidation<{
|
|
2280
2282
|
currentPassword: string;
|
|
2281
2283
|
password: string;
|
|
@@ -2290,13 +2292,13 @@ declare const SChangePassword: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
|
2290
2292
|
}>>]>;
|
|
2291
2293
|
type SChangePassword = v.InferOutput<typeof SChangePassword>;
|
|
2292
2294
|
declare const SRequestConfirmEmail: v.ObjectSchema<{
|
|
2293
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2295
|
+
readonly email: 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">]>;
|
|
2294
2296
|
}, undefined>;
|
|
2295
2297
|
type SRequestConfirmEmail = v.InferOutput<typeof SRequestConfirmEmail>;
|
|
2296
2298
|
|
|
2297
2299
|
declare const SGroupDocument: v.ObjectSchema<{
|
|
2298
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2299
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
2300
|
+
readonly label: 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">]>;
|
|
2301
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
2300
2302
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2301
2303
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2302
2304
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -2311,7 +2313,7 @@ declare const SGroupDocument: v.ObjectSchema<{
|
|
|
2311
2313
|
declare const SGroupRelationAuthorizedUsers: v.ObjectSchema<{
|
|
2312
2314
|
readonly authorized_users: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2313
2315
|
readonly username: 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: - _ .">]>;
|
|
2314
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2316
|
+
readonly email: 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">]>;
|
|
2315
2317
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
2316
2318
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
2317
2319
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -2361,8 +2363,8 @@ declare const SGroupRelationTrackingLinks: v.ObjectSchema<{
|
|
|
2361
2363
|
}, undefined>;
|
|
2362
2364
|
declare const SGroupRelationSources: v.ObjectSchema<{
|
|
2363
2365
|
readonly utm_sources: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2364
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2365
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2366
|
+
readonly label: 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">]>;
|
|
2367
|
+
readonly value: 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: - _ .">]>;
|
|
2366
2368
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2367
2369
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2368
2370
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2374,8 +2376,8 @@ declare const SGroupRelationSources: v.ObjectSchema<{
|
|
|
2374
2376
|
}, undefined>;
|
|
2375
2377
|
declare const SGroupRelationMediums: v.ObjectSchema<{
|
|
2376
2378
|
readonly utm_mediums: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2377
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2378
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2379
|
+
readonly label: 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">]>;
|
|
2380
|
+
readonly value: 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: - _ .">]>;
|
|
2379
2381
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2380
2382
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2381
2383
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2388,8 +2390,8 @@ declare const SGroupRelationMediums: v.ObjectSchema<{
|
|
|
2388
2390
|
declare const SGroupRelationCampaignIds: v.ObjectSchema<{
|
|
2389
2391
|
readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2390
2392
|
readonly cost: 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">]>;
|
|
2391
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2392
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2393
|
+
readonly label: 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">]>;
|
|
2394
|
+
readonly value: 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: - _ .">]>;
|
|
2393
2395
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2394
2396
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2395
2397
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2401,8 +2403,8 @@ declare const SGroupRelationCampaignIds: v.ObjectSchema<{
|
|
|
2401
2403
|
}, undefined>;
|
|
2402
2404
|
declare const SGroupRelationCampaignPhases: v.ObjectSchema<{
|
|
2403
2405
|
readonly utm_campaign_phases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2404
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2405
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2406
|
+
readonly label: 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">]>;
|
|
2407
|
+
readonly value: 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: - _ .">]>;
|
|
2406
2408
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2407
2409
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2408
2410
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2414,8 +2416,8 @@ declare const SGroupRelationCampaignPhases: v.ObjectSchema<{
|
|
|
2414
2416
|
}, undefined>;
|
|
2415
2417
|
declare const SGroupRelationCampaignProducts: v.ObjectSchema<{
|
|
2416
2418
|
readonly utm_campaign_products: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2417
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2418
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2419
|
+
readonly label: 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">]>;
|
|
2420
|
+
readonly value: 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: - _ .">]>;
|
|
2419
2421
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2420
2422
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2421
2423
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2427,8 +2429,8 @@ declare const SGroupRelationCampaignProducts: v.ObjectSchema<{
|
|
|
2427
2429
|
}, undefined>;
|
|
2428
2430
|
declare const SGroupRelationCampaignKeys: v.ObjectSchema<{
|
|
2429
2431
|
readonly utm_campaign_keys: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2430
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2431
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2432
|
+
readonly label: 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">]>;
|
|
2433
|
+
readonly value: 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: - _ .">]>;
|
|
2432
2434
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2433
2435
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2434
2436
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2440,16 +2442,16 @@ declare const SGroupRelationCampaignKeys: v.ObjectSchema<{
|
|
|
2440
2442
|
}, undefined>;
|
|
2441
2443
|
declare const SGroupRelationContents: v.ObjectSchema<{
|
|
2442
2444
|
readonly utm_contents: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2443
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2444
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2445
|
+
readonly label: 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">]>;
|
|
2446
|
+
readonly value: 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: - _ .">]>;
|
|
2445
2447
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2446
2448
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2447
2449
|
}, undefined>, undefined>, undefined>;
|
|
2448
2450
|
}, undefined>;
|
|
2449
2451
|
declare const SGroupRelationCreativeFormats: v.ObjectSchema<{
|
|
2450
2452
|
readonly utm_creative_formats: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2451
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2452
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2453
|
+
readonly label: 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">]>;
|
|
2454
|
+
readonly value: 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: - _ .">]>;
|
|
2453
2455
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2454
2456
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2455
2457
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2461,8 +2463,8 @@ declare const SGroupRelationCreativeFormats: v.ObjectSchema<{
|
|
|
2461
2463
|
}, undefined>;
|
|
2462
2464
|
declare const SGroupRelationCreativeFormatVariants: v.ObjectSchema<{
|
|
2463
2465
|
readonly utm_creative_format_variants: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2464
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2465
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2466
|
+
readonly label: 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">]>;
|
|
2467
|
+
readonly value: 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: - _ .">]>;
|
|
2466
2468
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2467
2469
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2468
2470
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2474,8 +2476,8 @@ declare const SGroupRelationCreativeFormatVariants: v.ObjectSchema<{
|
|
|
2474
2476
|
}, undefined>;
|
|
2475
2477
|
declare const SGroupRelationTerms: v.ObjectSchema<{
|
|
2476
2478
|
readonly utm_terms: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2477
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2478
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2479
|
+
readonly label: 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">]>;
|
|
2480
|
+
readonly value: 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: - _ .">]>;
|
|
2479
2481
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2480
2482
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2481
2483
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2487,8 +2489,8 @@ declare const SGroupRelationTerms: v.ObjectSchema<{
|
|
|
2487
2489
|
}, undefined>;
|
|
2488
2490
|
declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
2489
2491
|
readonly utm_terms: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2490
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2491
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2492
|
+
readonly label: 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">]>;
|
|
2493
|
+
readonly value: 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: - _ .">]>;
|
|
2492
2494
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2493
2495
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2494
2496
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2498,8 +2500,8 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2498
2500
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2499
2501
|
}, undefined>, undefined>, undefined>;
|
|
2500
2502
|
readonly utm_creative_format_variants: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2501
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2502
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2503
|
+
readonly label: 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">]>;
|
|
2504
|
+
readonly value: 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: - _ .">]>;
|
|
2503
2505
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2504
2506
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2505
2507
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2509,8 +2511,8 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2509
2511
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2510
2512
|
}, undefined>, undefined>, undefined>;
|
|
2511
2513
|
readonly utm_creative_formats: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2512
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2513
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2514
|
+
readonly label: 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">]>;
|
|
2515
|
+
readonly value: 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: - _ .">]>;
|
|
2514
2516
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2515
2517
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2516
2518
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2520,14 +2522,14 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2520
2522
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2521
2523
|
}, undefined>, undefined>, undefined>;
|
|
2522
2524
|
readonly utm_contents: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2523
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2524
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2525
|
+
readonly label: 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">]>;
|
|
2526
|
+
readonly value: 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: - _ .">]>;
|
|
2525
2527
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2526
2528
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2527
2529
|
}, undefined>, undefined>, undefined>;
|
|
2528
2530
|
readonly utm_campaign_keys: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2529
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2530
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2531
|
+
readonly label: 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">]>;
|
|
2532
|
+
readonly value: 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: - _ .">]>;
|
|
2531
2533
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2532
2534
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2533
2535
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2537,8 +2539,8 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2537
2539
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2538
2540
|
}, undefined>, undefined>, undefined>;
|
|
2539
2541
|
readonly utm_campaign_products: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2540
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2541
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2542
|
+
readonly label: 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">]>;
|
|
2543
|
+
readonly value: 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: - _ .">]>;
|
|
2542
2544
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2543
2545
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2544
2546
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2548,8 +2550,8 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2548
2550
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2549
2551
|
}, undefined>, undefined>, undefined>;
|
|
2550
2552
|
readonly utm_campaign_phases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2551
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2552
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2553
|
+
readonly label: 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">]>;
|
|
2554
|
+
readonly value: 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: - _ .">]>;
|
|
2553
2555
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2554
2556
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2555
2557
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2560,8 +2562,8 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2560
2562
|
}, undefined>, undefined>, undefined>;
|
|
2561
2563
|
readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2562
2564
|
readonly cost: 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">]>;
|
|
2563
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2564
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2565
|
+
readonly label: 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">]>;
|
|
2566
|
+
readonly value: 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: - _ .">]>;
|
|
2565
2567
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2566
2568
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2567
2569
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2571,8 +2573,8 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2571
2573
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2572
2574
|
}, undefined>, undefined>, undefined>;
|
|
2573
2575
|
readonly utm_mediums: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2574
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2575
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2576
|
+
readonly label: 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">]>;
|
|
2577
|
+
readonly value: 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: - _ .">]>;
|
|
2576
2578
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2577
2579
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2578
2580
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2582,8 +2584,8 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2582
2584
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2583
2585
|
}, undefined>, undefined>, undefined>;
|
|
2584
2586
|
readonly utm_sources: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2585
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2586
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
2587
|
+
readonly label: 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">]>;
|
|
2588
|
+
readonly value: 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: - _ .">]>;
|
|
2587
2589
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2588
2590
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2589
2591
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -2627,7 +2629,7 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2627
2629
|
}, undefined>, undefined>, undefined>;
|
|
2628
2630
|
readonly authorized_users: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2629
2631
|
readonly username: 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: - _ .">]>;
|
|
2630
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2632
|
+
readonly email: 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">]>;
|
|
2631
2633
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
2632
2634
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
2633
2635
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -2639,7 +2641,7 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2639
2641
|
}, undefined>, undefined>, undefined>;
|
|
2640
2642
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
2641
2643
|
readonly username: 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: - _ .">]>;
|
|
2642
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2644
|
+
readonly email: 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">]>;
|
|
2643
2645
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
2644
2646
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
2645
2647
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -2652,8 +2654,8 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2652
2654
|
}, undefined>;
|
|
2653
2655
|
|
|
2654
2656
|
declare const SBaseGroupDocument: v.ObjectSchema<{
|
|
2655
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2656
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
2657
|
+
readonly label: 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">]>;
|
|
2658
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
2657
2659
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2658
2660
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2659
2661
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -2677,7 +2679,7 @@ declare const SGroupUserDocument: v.ObjectSchema<{
|
|
|
2677
2679
|
declare const SGroupUserRelationsDocument: v.ObjectSchema<{
|
|
2678
2680
|
readonly user: v.OptionalSchema<v.ObjectSchema<{
|
|
2679
2681
|
readonly username: 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: - _ .">]>;
|
|
2680
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2682
|
+
readonly email: 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">]>;
|
|
2681
2683
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
2682
2684
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
2683
2685
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -2688,8 +2690,8 @@ declare const SGroupUserRelationsDocument: v.ObjectSchema<{
|
|
|
2688
2690
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2689
2691
|
}, undefined>, undefined>;
|
|
2690
2692
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
2691
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2692
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
2693
|
+
readonly label: 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">]>;
|
|
2694
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
2693
2695
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2694
2696
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2695
2697
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -2704,7 +2706,7 @@ declare const SGroupUserRelationsDocument: v.ObjectSchema<{
|
|
|
2704
2706
|
declare const SGroupUserRelationsReqDocument: v.ObjectSchema<{
|
|
2705
2707
|
readonly user: v.ObjectSchema<{
|
|
2706
2708
|
readonly username: 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: - _ .">]>;
|
|
2707
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2709
|
+
readonly email: 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">]>;
|
|
2708
2710
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
2709
2711
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
2710
2712
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -2715,8 +2717,8 @@ declare const SGroupUserRelationsReqDocument: v.ObjectSchema<{
|
|
|
2715
2717
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2716
2718
|
}, undefined>;
|
|
2717
2719
|
readonly group: v.ObjectSchema<{
|
|
2718
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2719
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
2720
|
+
readonly label: 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">]>;
|
|
2721
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
2720
2722
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
2721
2723
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2722
2724
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -2755,7 +2757,7 @@ declare const SRoleDocument: v.ObjectSchema<{
|
|
|
2755
2757
|
declare const SRoleRelationsDocument: v.ObjectSchema<{
|
|
2756
2758
|
readonly user: v.OptionalSchema<v.ObjectSchema<{
|
|
2757
2759
|
readonly username: 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: - _ .">]>;
|
|
2758
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
2760
|
+
readonly email: 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">]>;
|
|
2759
2761
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
2760
2762
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
2761
2763
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -2994,8 +2996,8 @@ declare const STrackingLinkDocument: v.ObjectSchema<{
|
|
|
2994
2996
|
|
|
2995
2997
|
declare const STrackingLinkRelationsDocument: v.ObjectSchema<{
|
|
2996
2998
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
2997
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
2998
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
2999
|
+
readonly label: 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">]>;
|
|
3000
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
2999
3001
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3000
3002
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3001
3003
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3008,7 +3010,7 @@ declare const STrackingLinkRelationsDocument: v.ObjectSchema<{
|
|
|
3008
3010
|
}, undefined>, undefined>;
|
|
3009
3011
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
3010
3012
|
readonly username: 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: - _ .">]>;
|
|
3011
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3013
|
+
readonly email: 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">]>;
|
|
3012
3014
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3013
3015
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3014
3016
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3046,7 +3048,7 @@ type STrackingLinkRelationsDocumentOut = v.InferOutput<typeof STrackingLinkRelat
|
|
|
3046
3048
|
declare const SBaseDocumentCreatedBy: v.ObjectSchema<{
|
|
3047
3049
|
readonly createdBy: v.OptionalSchema<v.ObjectSchema<{
|
|
3048
3050
|
readonly username: 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: - _ .">]>;
|
|
3049
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3051
|
+
readonly email: 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">]>;
|
|
3050
3052
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3051
3053
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3052
3054
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3058,7 +3060,7 @@ declare const SBaseDocumentCreatedBy: v.ObjectSchema<{
|
|
|
3058
3060
|
}, undefined>, undefined>;
|
|
3059
3061
|
readonly updatedBy: v.OptionalSchema<v.ObjectSchema<{
|
|
3060
3062
|
readonly username: 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: - _ .">]>;
|
|
3061
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3063
|
+
readonly email: 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">]>;
|
|
3062
3064
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3063
3065
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3064
3066
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3073,7 +3075,7 @@ type SBaseDocumentCreatedBy = v.InferOutput<typeof SBaseDocumentCreatedBy>;
|
|
|
3073
3075
|
|
|
3074
3076
|
declare const SUserDocument: v.ObjectSchema<{
|
|
3075
3077
|
readonly username: 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: - _ .">]>;
|
|
3076
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3078
|
+
readonly email: 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">]>;
|
|
3077
3079
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3078
3080
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3079
3081
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3190,8 +3192,8 @@ declare const SUserRelationReqLimits: v.ObjectSchema<{
|
|
|
3190
3192
|
}, undefined>;
|
|
3191
3193
|
declare const SUserRelationAuthorizedGroups: v.ObjectSchema<{
|
|
3192
3194
|
readonly authorized_groups: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3193
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3194
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3195
|
+
readonly label: 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">]>;
|
|
3196
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3195
3197
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3196
3198
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3197
3199
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3242,8 +3244,8 @@ declare const SUserRelationTrackingLinks: v.ObjectSchema<{
|
|
|
3242
3244
|
}, undefined>;
|
|
3243
3245
|
declare const SUserRelationSources: v.ObjectSchema<{
|
|
3244
3246
|
readonly utm_sources: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3245
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3246
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3247
|
+
readonly label: 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">]>;
|
|
3248
|
+
readonly value: 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: - _ .">]>;
|
|
3247
3249
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3248
3250
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3249
3251
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3255,8 +3257,8 @@ declare const SUserRelationSources: v.ObjectSchema<{
|
|
|
3255
3257
|
}, undefined>;
|
|
3256
3258
|
declare const SUserRelationMediums: v.ObjectSchema<{
|
|
3257
3259
|
readonly utm_mediums: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3258
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3259
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3260
|
+
readonly label: 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">]>;
|
|
3261
|
+
readonly value: 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: - _ .">]>;
|
|
3260
3262
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3261
3263
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3262
3264
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3269,8 +3271,8 @@ declare const SUserRelationMediums: v.ObjectSchema<{
|
|
|
3269
3271
|
declare const SUserRelationCampaignIds: v.ObjectSchema<{
|
|
3270
3272
|
readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3271
3273
|
readonly cost: 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">]>;
|
|
3272
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3273
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3274
|
+
readonly label: 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">]>;
|
|
3275
|
+
readonly value: 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: - _ .">]>;
|
|
3274
3276
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3275
3277
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3276
3278
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3282,8 +3284,8 @@ declare const SUserRelationCampaignIds: v.ObjectSchema<{
|
|
|
3282
3284
|
}, undefined>;
|
|
3283
3285
|
declare const SUserRelationCampaignPhases: v.ObjectSchema<{
|
|
3284
3286
|
readonly utm_campaign_phases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3285
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3286
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3287
|
+
readonly label: 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">]>;
|
|
3288
|
+
readonly value: 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: - _ .">]>;
|
|
3287
3289
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3288
3290
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3289
3291
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3295,8 +3297,8 @@ declare const SUserRelationCampaignPhases: v.ObjectSchema<{
|
|
|
3295
3297
|
}, undefined>;
|
|
3296
3298
|
declare const SUserRelationCampaignProducts: v.ObjectSchema<{
|
|
3297
3299
|
readonly utm_campaign_products: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3298
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3299
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3300
|
+
readonly label: 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">]>;
|
|
3301
|
+
readonly value: 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: - _ .">]>;
|
|
3300
3302
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3301
3303
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3302
3304
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3308,8 +3310,8 @@ declare const SUserRelationCampaignProducts: v.ObjectSchema<{
|
|
|
3308
3310
|
}, undefined>;
|
|
3309
3311
|
declare const SUserRelationCampaignKeys: v.ObjectSchema<{
|
|
3310
3312
|
readonly utm_campaign_keys: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3311
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3312
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3313
|
+
readonly label: 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">]>;
|
|
3314
|
+
readonly value: 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: - _ .">]>;
|
|
3313
3315
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3314
3316
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3315
3317
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3321,8 +3323,8 @@ declare const SUserRelationCampaignKeys: v.ObjectSchema<{
|
|
|
3321
3323
|
}, undefined>;
|
|
3322
3324
|
declare const SUserRelationContents: v.ObjectSchema<{
|
|
3323
3325
|
readonly utm_contents: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3324
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3325
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3326
|
+
readonly label: 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">]>;
|
|
3327
|
+
readonly value: 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: - _ .">]>;
|
|
3326
3328
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3327
3329
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3328
3330
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3334,8 +3336,8 @@ declare const SUserRelationContents: v.ObjectSchema<{
|
|
|
3334
3336
|
}, undefined>;
|
|
3335
3337
|
declare const SUserRelationCreativeFormats: v.ObjectSchema<{
|
|
3336
3338
|
readonly utm_creative_formats: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3337
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3338
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3339
|
+
readonly label: 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">]>;
|
|
3340
|
+
readonly value: 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: - _ .">]>;
|
|
3339
3341
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3340
3342
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3341
3343
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3347,8 +3349,8 @@ declare const SUserRelationCreativeFormats: v.ObjectSchema<{
|
|
|
3347
3349
|
}, undefined>;
|
|
3348
3350
|
declare const SUserRelationCreativeFormatVariants: v.ObjectSchema<{
|
|
3349
3351
|
readonly utm_creative_format_variants: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3350
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3351
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3352
|
+
readonly label: 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">]>;
|
|
3353
|
+
readonly value: 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: - _ .">]>;
|
|
3352
3354
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3353
3355
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3354
3356
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3360,8 +3362,8 @@ declare const SUserRelationCreativeFormatVariants: v.ObjectSchema<{
|
|
|
3360
3362
|
}, undefined>;
|
|
3361
3363
|
declare const SUserRelationTerms: v.ObjectSchema<{
|
|
3362
3364
|
readonly utm_terms: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3363
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3364
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3365
|
+
readonly label: 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">]>;
|
|
3366
|
+
readonly value: 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: - _ .">]>;
|
|
3365
3367
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3366
3368
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3367
3369
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3373,8 +3375,8 @@ declare const SUserRelationTerms: v.ObjectSchema<{
|
|
|
3373
3375
|
}, undefined>;
|
|
3374
3376
|
declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
3375
3377
|
readonly utm_terms: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3376
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3377
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3378
|
+
readonly label: 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">]>;
|
|
3379
|
+
readonly value: 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: - _ .">]>;
|
|
3378
3380
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3379
3381
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3380
3382
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3384,8 +3386,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3384
3386
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3385
3387
|
}, undefined>, undefined>, undefined>;
|
|
3386
3388
|
readonly utm_creative_format_variants: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3387
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3388
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3389
|
+
readonly label: 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">]>;
|
|
3390
|
+
readonly value: 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: - _ .">]>;
|
|
3389
3391
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3390
3392
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3391
3393
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3395,8 +3397,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3395
3397
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3396
3398
|
}, undefined>, undefined>, undefined>;
|
|
3397
3399
|
readonly utm_creative_formats: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3398
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3399
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3400
|
+
readonly label: 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">]>;
|
|
3401
|
+
readonly value: 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: - _ .">]>;
|
|
3400
3402
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3401
3403
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3402
3404
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3406,8 +3408,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3406
3408
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3407
3409
|
}, undefined>, undefined>, undefined>;
|
|
3408
3410
|
readonly utm_contents: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3409
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3410
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3411
|
+
readonly label: 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">]>;
|
|
3412
|
+
readonly value: 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: - _ .">]>;
|
|
3411
3413
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3412
3414
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3413
3415
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3417,8 +3419,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3417
3419
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3418
3420
|
}, undefined>, undefined>, undefined>;
|
|
3419
3421
|
readonly utm_campaign_keys: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3420
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3421
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3422
|
+
readonly label: 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">]>;
|
|
3423
|
+
readonly value: 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: - _ .">]>;
|
|
3422
3424
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3423
3425
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3424
3426
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3428,8 +3430,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3428
3430
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3429
3431
|
}, undefined>, undefined>, undefined>;
|
|
3430
3432
|
readonly utm_campaign_products: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3431
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3432
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3433
|
+
readonly label: 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">]>;
|
|
3434
|
+
readonly value: 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: - _ .">]>;
|
|
3433
3435
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3434
3436
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3435
3437
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3439,8 +3441,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3439
3441
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3440
3442
|
}, undefined>, undefined>, undefined>;
|
|
3441
3443
|
readonly utm_campaign_phases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3442
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3443
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3444
|
+
readonly label: 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">]>;
|
|
3445
|
+
readonly value: 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: - _ .">]>;
|
|
3444
3446
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3445
3447
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3446
3448
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3451,8 +3453,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3451
3453
|
}, undefined>, undefined>, undefined>;
|
|
3452
3454
|
readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3453
3455
|
readonly cost: 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">]>;
|
|
3454
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3455
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3456
|
+
readonly label: 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">]>;
|
|
3457
|
+
readonly value: 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: - _ .">]>;
|
|
3456
3458
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3457
3459
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3458
3460
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3462,8 +3464,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3462
3464
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3463
3465
|
}, undefined>, undefined>, undefined>;
|
|
3464
3466
|
readonly utm_mediums: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3465
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3466
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3467
|
+
readonly label: 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">]>;
|
|
3468
|
+
readonly value: 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: - _ .">]>;
|
|
3467
3469
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3468
3470
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3469
3471
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3473,8 +3475,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3473
3475
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3474
3476
|
}, undefined>, undefined>, undefined>;
|
|
3475
3477
|
readonly utm_sources: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3476
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3477
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3478
|
+
readonly label: 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">]>;
|
|
3479
|
+
readonly value: 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: - _ .">]>;
|
|
3478
3480
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3479
3481
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3480
3482
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3517,8 +3519,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3517
3519
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3518
3520
|
}, undefined>, undefined>, undefined>;
|
|
3519
3521
|
readonly authorized_groups: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3520
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3521
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3522
|
+
readonly label: 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">]>;
|
|
3523
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3522
3524
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3523
3525
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3524
3526
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3541,8 +3543,8 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3541
3543
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3542
3544
|
}, undefined>, undefined>;
|
|
3543
3545
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
3544
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3545
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3546
|
+
readonly label: 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">]>;
|
|
3547
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3546
3548
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3547
3549
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3548
3550
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3557,7 +3559,7 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3557
3559
|
|
|
3558
3560
|
declare const SBaseUserDocument: v.ObjectSchema<{
|
|
3559
3561
|
readonly username: 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: - _ .">]>;
|
|
3560
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3562
|
+
readonly email: 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">]>;
|
|
3561
3563
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3562
3564
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3563
3565
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3585,7 +3587,7 @@ declare const SUserAccountDocument: v.ObjectSchema<{
|
|
|
3585
3587
|
declare const SUserAccountRelationsDocument: v.ObjectSchema<{
|
|
3586
3588
|
readonly user: v.OptionalSchema<v.ObjectSchema<{
|
|
3587
3589
|
readonly username: 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: - _ .">]>;
|
|
3588
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3590
|
+
readonly email: 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">]>;
|
|
3589
3591
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3590
3592
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3591
3593
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3599,7 +3601,7 @@ declare const SUserAccountRelationsDocument: v.ObjectSchema<{
|
|
|
3599
3601
|
declare const SUserAccountRelationsReqDocument: v.ObjectSchema<{
|
|
3600
3602
|
readonly user: v.ObjectSchema<{
|
|
3601
3603
|
readonly username: 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: - _ .">]>;
|
|
3602
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3604
|
+
readonly email: 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">]>;
|
|
3603
3605
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3604
3606
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3605
3607
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3651,7 +3653,7 @@ declare const SUserLimitationsDocument: v.ObjectSchema<{
|
|
|
3651
3653
|
declare const SUserLimitationsRelationsDocument: v.ObjectSchema<{
|
|
3652
3654
|
readonly user: v.OptionalSchema<v.ObjectSchema<{
|
|
3653
3655
|
readonly username: 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: - _ .">]>;
|
|
3654
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3656
|
+
readonly email: 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">]>;
|
|
3655
3657
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3656
3658
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3657
3659
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3688,8 +3690,8 @@ type SUserLimitationsRelationsDocumentOut = v.InferOutput<typeof SUserLimitation
|
|
|
3688
3690
|
|
|
3689
3691
|
declare const SCampaignIdDocument: v.ObjectSchema<{
|
|
3690
3692
|
readonly cost: 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">]>;
|
|
3691
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3692
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3693
|
+
readonly label: 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">]>;
|
|
3694
|
+
readonly value: 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: - _ .">]>;
|
|
3693
3695
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3694
3696
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3695
3697
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3699,8 +3701,8 @@ declare const SCampaignIdDocument: v.ObjectSchema<{
|
|
|
3699
3701
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3700
3702
|
}, undefined>;
|
|
3701
3703
|
declare const SCampaignPhaseDocument: v.ObjectSchema<{
|
|
3702
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3703
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3704
|
+
readonly label: 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">]>;
|
|
3705
|
+
readonly value: 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: - _ .">]>;
|
|
3704
3706
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3705
3707
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3706
3708
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3710,8 +3712,8 @@ declare const SCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
3710
3712
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3711
3713
|
}, undefined>;
|
|
3712
3714
|
declare const SCampaignProductDocument: v.ObjectSchema<{
|
|
3713
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3714
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3715
|
+
readonly label: 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">]>;
|
|
3716
|
+
readonly value: 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: - _ .">]>;
|
|
3715
3717
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3716
3718
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3717
3719
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3721,8 +3723,8 @@ declare const SCampaignProductDocument: v.ObjectSchema<{
|
|
|
3721
3723
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3722
3724
|
}, undefined>;
|
|
3723
3725
|
declare const SCampaignTargetDocument: v.ObjectSchema<{
|
|
3724
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3725
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3726
|
+
readonly label: 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">]>;
|
|
3727
|
+
readonly value: 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: - _ .">]>;
|
|
3726
3728
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3727
3729
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3728
3730
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3732,8 +3734,8 @@ declare const SCampaignTargetDocument: v.ObjectSchema<{
|
|
|
3732
3734
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3733
3735
|
}, undefined>;
|
|
3734
3736
|
declare const SCampaignKeyDocument: v.ObjectSchema<{
|
|
3735
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3736
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3737
|
+
readonly label: 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">]>;
|
|
3738
|
+
readonly value: 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: - _ .">]>;
|
|
3737
3739
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3738
3740
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3739
3741
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3743,8 +3745,8 @@ declare const SCampaignKeyDocument: v.ObjectSchema<{
|
|
|
3743
3745
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3744
3746
|
}, undefined>;
|
|
3745
3747
|
declare const SSourceDocument: v.ObjectSchema<{
|
|
3746
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3747
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3748
|
+
readonly label: 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">]>;
|
|
3749
|
+
readonly value: 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: - _ .">]>;
|
|
3748
3750
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3749
3751
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3750
3752
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3754,8 +3756,8 @@ declare const SSourceDocument: v.ObjectSchema<{
|
|
|
3754
3756
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3755
3757
|
}, undefined>;
|
|
3756
3758
|
declare const SMediumDocument: v.ObjectSchema<{
|
|
3757
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3758
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3759
|
+
readonly label: 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">]>;
|
|
3760
|
+
readonly value: 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: - _ .">]>;
|
|
3759
3761
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3760
3762
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3761
3763
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3765,8 +3767,8 @@ declare const SMediumDocument: v.ObjectSchema<{
|
|
|
3765
3767
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3766
3768
|
}, undefined>;
|
|
3767
3769
|
declare const SContentDocument: v.ObjectSchema<{
|
|
3768
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3769
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3770
|
+
readonly label: 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">]>;
|
|
3771
|
+
readonly value: 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: - _ .">]>;
|
|
3770
3772
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3771
3773
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3772
3774
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3776,8 +3778,8 @@ declare const SContentDocument: v.ObjectSchema<{
|
|
|
3776
3778
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3777
3779
|
}, undefined>;
|
|
3778
3780
|
declare const SCreativeFormatDocument: v.ObjectSchema<{
|
|
3779
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3780
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3781
|
+
readonly label: 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">]>;
|
|
3782
|
+
readonly value: 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: - _ .">]>;
|
|
3781
3783
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3782
3784
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3783
3785
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3787,8 +3789,8 @@ declare const SCreativeFormatDocument: v.ObjectSchema<{
|
|
|
3787
3789
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3788
3790
|
}, undefined>;
|
|
3789
3791
|
declare const SCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
3790
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3791
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3792
|
+
readonly label: 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">]>;
|
|
3793
|
+
readonly value: 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: - _ .">]>;
|
|
3792
3794
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3793
3795
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3794
3796
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3798,8 +3800,8 @@ declare const SCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
3798
3800
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3799
3801
|
}, undefined>;
|
|
3800
3802
|
declare const STermDocument: v.ObjectSchema<{
|
|
3801
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3802
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
3803
|
+
readonly label: 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">]>;
|
|
3804
|
+
readonly value: 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: - _ .">]>;
|
|
3803
3805
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3804
3806
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3805
3807
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -3811,8 +3813,8 @@ declare const STermDocument: v.ObjectSchema<{
|
|
|
3811
3813
|
|
|
3812
3814
|
declare const SCampaignIdRelationsDocument: v.ObjectSchema<{
|
|
3813
3815
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
3814
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3815
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3816
|
+
readonly label: 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">]>;
|
|
3817
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3816
3818
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3817
3819
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3818
3820
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3825,7 +3827,7 @@ declare const SCampaignIdRelationsDocument: v.ObjectSchema<{
|
|
|
3825
3827
|
}, undefined>, undefined>;
|
|
3826
3828
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
3827
3829
|
readonly username: 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: - _ .">]>;
|
|
3828
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3830
|
+
readonly email: 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">]>;
|
|
3829
3831
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3830
3832
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3831
3833
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3838,8 +3840,8 @@ declare const SCampaignIdRelationsDocument: v.ObjectSchema<{
|
|
|
3838
3840
|
}, undefined>;
|
|
3839
3841
|
declare const SCampaignPhaseRelationsDocument: v.ObjectSchema<{
|
|
3840
3842
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
3841
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3842
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3843
|
+
readonly label: 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">]>;
|
|
3844
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3843
3845
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3844
3846
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3845
3847
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3852,7 +3854,7 @@ declare const SCampaignPhaseRelationsDocument: v.ObjectSchema<{
|
|
|
3852
3854
|
}, undefined>, undefined>;
|
|
3853
3855
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
3854
3856
|
readonly username: 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: - _ .">]>;
|
|
3855
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3857
|
+
readonly email: 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">]>;
|
|
3856
3858
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3857
3859
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3858
3860
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3865,8 +3867,8 @@ declare const SCampaignPhaseRelationsDocument: v.ObjectSchema<{
|
|
|
3865
3867
|
}, undefined>;
|
|
3866
3868
|
declare const SCampaignProductRelationsDocument: v.ObjectSchema<{
|
|
3867
3869
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
3868
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3869
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3870
|
+
readonly label: 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">]>;
|
|
3871
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3870
3872
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3871
3873
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3872
3874
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3879,7 +3881,7 @@ declare const SCampaignProductRelationsDocument: v.ObjectSchema<{
|
|
|
3879
3881
|
}, undefined>, undefined>;
|
|
3880
3882
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
3881
3883
|
readonly username: 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: - _ .">]>;
|
|
3882
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3884
|
+
readonly email: 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">]>;
|
|
3883
3885
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3884
3886
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3885
3887
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3892,8 +3894,8 @@ declare const SCampaignProductRelationsDocument: v.ObjectSchema<{
|
|
|
3892
3894
|
}, undefined>;
|
|
3893
3895
|
declare const SCampaignTargetRelationsDocument: v.ObjectSchema<{
|
|
3894
3896
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
3895
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3896
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3897
|
+
readonly label: 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">]>;
|
|
3898
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3897
3899
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3898
3900
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3899
3901
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3906,7 +3908,7 @@ declare const SCampaignTargetRelationsDocument: v.ObjectSchema<{
|
|
|
3906
3908
|
}, undefined>, undefined>;
|
|
3907
3909
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
3908
3910
|
readonly username: 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: - _ .">]>;
|
|
3909
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3911
|
+
readonly email: 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">]>;
|
|
3910
3912
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3911
3913
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3912
3914
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3919,8 +3921,8 @@ declare const SCampaignTargetRelationsDocument: v.ObjectSchema<{
|
|
|
3919
3921
|
}, undefined>;
|
|
3920
3922
|
declare const SCampaignKeyRelationsDocument: v.ObjectSchema<{
|
|
3921
3923
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
3922
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3923
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3924
|
+
readonly label: 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">]>;
|
|
3925
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3924
3926
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3925
3927
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3926
3928
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3933,7 +3935,7 @@ declare const SCampaignKeyRelationsDocument: v.ObjectSchema<{
|
|
|
3933
3935
|
}, undefined>, undefined>;
|
|
3934
3936
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
3935
3937
|
readonly username: 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: - _ .">]>;
|
|
3936
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3938
|
+
readonly email: 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">]>;
|
|
3937
3939
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3938
3940
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3939
3941
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3946,8 +3948,8 @@ declare const SCampaignKeyRelationsDocument: v.ObjectSchema<{
|
|
|
3946
3948
|
}, undefined>;
|
|
3947
3949
|
declare const SSourceRelationsDocument: v.ObjectSchema<{
|
|
3948
3950
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
3949
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3950
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3951
|
+
readonly label: 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">]>;
|
|
3952
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3951
3953
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3952
3954
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3953
3955
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3960,7 +3962,7 @@ declare const SSourceRelationsDocument: v.ObjectSchema<{
|
|
|
3960
3962
|
}, undefined>, undefined>;
|
|
3961
3963
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
3962
3964
|
readonly username: 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: - _ .">]>;
|
|
3963
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3965
|
+
readonly email: 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">]>;
|
|
3964
3966
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3965
3967
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3966
3968
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -3973,8 +3975,8 @@ declare const SSourceRelationsDocument: v.ObjectSchema<{
|
|
|
3973
3975
|
}, undefined>;
|
|
3974
3976
|
declare const SMediumRelationsDocument: v.ObjectSchema<{
|
|
3975
3977
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
3976
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
3977
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
3978
|
+
readonly label: 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">]>;
|
|
3979
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
3978
3980
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
3979
3981
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3980
3982
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -3987,7 +3989,7 @@ declare const SMediumRelationsDocument: v.ObjectSchema<{
|
|
|
3987
3989
|
}, undefined>, undefined>;
|
|
3988
3990
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
3989
3991
|
readonly username: 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: - _ .">]>;
|
|
3990
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
3992
|
+
readonly email: 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">]>;
|
|
3991
3993
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
3992
3994
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
3993
3995
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4000,8 +4002,8 @@ declare const SMediumRelationsDocument: v.ObjectSchema<{
|
|
|
4000
4002
|
}, undefined>;
|
|
4001
4003
|
declare const SContentRelationsDocument: v.ObjectSchema<{
|
|
4002
4004
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4003
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4004
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4005
|
+
readonly label: 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">]>;
|
|
4006
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4005
4007
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4006
4008
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4007
4009
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4014,7 +4016,7 @@ declare const SContentRelationsDocument: v.ObjectSchema<{
|
|
|
4014
4016
|
}, undefined>, undefined>;
|
|
4015
4017
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4016
4018
|
readonly username: 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: - _ .">]>;
|
|
4017
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4019
|
+
readonly email: 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">]>;
|
|
4018
4020
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4019
4021
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4020
4022
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4027,8 +4029,8 @@ declare const SContentRelationsDocument: v.ObjectSchema<{
|
|
|
4027
4029
|
}, undefined>;
|
|
4028
4030
|
declare const SCreativeFormatRelationsDocument: v.ObjectSchema<{
|
|
4029
4031
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4030
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4031
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4032
|
+
readonly label: 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">]>;
|
|
4033
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4032
4034
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4033
4035
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4034
4036
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4041,7 +4043,7 @@ declare const SCreativeFormatRelationsDocument: v.ObjectSchema<{
|
|
|
4041
4043
|
}, undefined>, undefined>;
|
|
4042
4044
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4043
4045
|
readonly username: 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: - _ .">]>;
|
|
4044
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4046
|
+
readonly email: 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">]>;
|
|
4045
4047
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4046
4048
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4047
4049
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4054,8 +4056,8 @@ declare const SCreativeFormatRelationsDocument: v.ObjectSchema<{
|
|
|
4054
4056
|
}, undefined>;
|
|
4055
4057
|
declare const SCreativeFormatVariantRelationsDocument: v.ObjectSchema<{
|
|
4056
4058
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4057
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4058
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4059
|
+
readonly label: 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">]>;
|
|
4060
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4059
4061
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4060
4062
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4061
4063
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4068,7 +4070,7 @@ declare const SCreativeFormatVariantRelationsDocument: v.ObjectSchema<{
|
|
|
4068
4070
|
}, undefined>, undefined>;
|
|
4069
4071
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4070
4072
|
readonly username: 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: - _ .">]>;
|
|
4071
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4073
|
+
readonly email: 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">]>;
|
|
4072
4074
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4073
4075
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4074
4076
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4081,8 +4083,8 @@ declare const SCreativeFormatVariantRelationsDocument: v.ObjectSchema<{
|
|
|
4081
4083
|
}, undefined>;
|
|
4082
4084
|
declare const STermRelationsDocument: v.ObjectSchema<{
|
|
4083
4085
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4084
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4085
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4086
|
+
readonly label: 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">]>;
|
|
4087
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4086
4088
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4087
4089
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4088
4090
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4095,7 +4097,7 @@ declare const STermRelationsDocument: v.ObjectSchema<{
|
|
|
4095
4097
|
}, undefined>, undefined>;
|
|
4096
4098
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4097
4099
|
readonly username: 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: - _ .">]>;
|
|
4098
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4100
|
+
readonly email: 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">]>;
|
|
4099
4101
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4100
4102
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4101
4103
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4109,68 +4111,68 @@ declare const STermRelationsDocument: v.ObjectSchema<{
|
|
|
4109
4111
|
|
|
4110
4112
|
declare const SBaseCampaignIdDocument: v.ObjectSchema<{
|
|
4111
4113
|
readonly cost: 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">]>;
|
|
4112
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4113
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4114
|
+
readonly label: 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">]>;
|
|
4115
|
+
readonly value: 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: - _ .">]>;
|
|
4114
4116
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4115
4117
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4116
4118
|
}, undefined>;
|
|
4117
4119
|
declare const SBaseCampaignPhaseDocument: v.ObjectSchema<{
|
|
4118
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4119
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4120
|
+
readonly label: 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">]>;
|
|
4121
|
+
readonly value: 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: - _ .">]>;
|
|
4120
4122
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4121
4123
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4122
4124
|
}, undefined>;
|
|
4123
4125
|
declare const SBaseCampaignProductDocument: v.ObjectSchema<{
|
|
4124
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4125
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4126
|
+
readonly label: 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">]>;
|
|
4127
|
+
readonly value: 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: - _ .">]>;
|
|
4126
4128
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4127
4129
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4128
4130
|
}, undefined>;
|
|
4129
4131
|
declare const SBaseCampaignTargetDocument: v.ObjectSchema<{
|
|
4130
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4131
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4132
|
+
readonly label: 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">]>;
|
|
4133
|
+
readonly value: 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: - _ .">]>;
|
|
4132
4134
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4133
4135
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4134
4136
|
}, undefined>;
|
|
4135
4137
|
declare const SBaseCampaignKeyDocument: v.ObjectSchema<{
|
|
4136
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4137
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4138
|
+
readonly label: 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">]>;
|
|
4139
|
+
readonly value: 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: - _ .">]>;
|
|
4138
4140
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4139
4141
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4140
4142
|
}, undefined>;
|
|
4141
4143
|
declare const SBaseSourceDocument: v.ObjectSchema<{
|
|
4142
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4143
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4144
|
+
readonly label: 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">]>;
|
|
4145
|
+
readonly value: 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: - _ .">]>;
|
|
4144
4146
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4145
4147
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4146
4148
|
}, undefined>;
|
|
4147
4149
|
declare const SBaseMediumDocument: v.ObjectSchema<{
|
|
4148
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4149
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4150
|
+
readonly label: 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">]>;
|
|
4151
|
+
readonly value: 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: - _ .">]>;
|
|
4150
4152
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4151
4153
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4152
4154
|
}, undefined>;
|
|
4153
4155
|
declare const SBaseContentDocument: v.ObjectSchema<{
|
|
4154
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4155
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4156
|
+
readonly label: 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">]>;
|
|
4157
|
+
readonly value: 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: - _ .">]>;
|
|
4156
4158
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4157
4159
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4158
4160
|
}, undefined>;
|
|
4159
4161
|
declare const SBaseCreativeFormatDocument: v.ObjectSchema<{
|
|
4160
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4161
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4162
|
+
readonly label: 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">]>;
|
|
4163
|
+
readonly value: 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: - _ .">]>;
|
|
4162
4164
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4163
4165
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4164
4166
|
}, undefined>;
|
|
4165
4167
|
declare const SBaseCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
4166
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4167
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4168
|
+
readonly label: 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">]>;
|
|
4169
|
+
readonly value: 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: - _ .">]>;
|
|
4168
4170
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4169
4171
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4170
4172
|
}, undefined>;
|
|
4171
4173
|
declare const SBaseTermDocument: v.ObjectSchema<{
|
|
4172
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4173
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4174
|
+
readonly label: 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">]>;
|
|
4175
|
+
readonly value: 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: - _ .">]>;
|
|
4174
4176
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4175
4177
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4176
4178
|
}, undefined>;
|
|
@@ -4234,8 +4236,8 @@ declare const SWebsiteDocument: v.ObjectSchema<{
|
|
|
4234
4236
|
|
|
4235
4237
|
declare const SWebsiteRelationsDocument: v.ObjectSchema<{
|
|
4236
4238
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4237
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4238
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4239
|
+
readonly label: 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">]>;
|
|
4240
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4239
4241
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4240
4242
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4241
4243
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4248,7 +4250,7 @@ declare const SWebsiteRelationsDocument: v.ObjectSchema<{
|
|
|
4248
4250
|
}, undefined>, undefined>;
|
|
4249
4251
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4250
4252
|
readonly username: 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: - _ .">]>;
|
|
4251
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4253
|
+
readonly email: 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">]>;
|
|
4252
4254
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4253
4255
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4254
4256
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4275,7 +4277,7 @@ type SWebsiteRelationsDocumentOut = v.InferOutput<typeof SWebsiteRelationsDocume
|
|
|
4275
4277
|
declare const SGroupUserDocumentWithRelations: v.ObjectSchema<{
|
|
4276
4278
|
readonly user: v.OptionalSchema<v.ObjectSchema<{
|
|
4277
4279
|
readonly username: 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: - _ .">]>;
|
|
4278
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4280
|
+
readonly email: 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">]>;
|
|
4279
4281
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4280
4282
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4281
4283
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4286,8 +4288,8 @@ declare const SGroupUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4286
4288
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4287
4289
|
}, undefined>, undefined>;
|
|
4288
4290
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4289
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4290
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4291
|
+
readonly label: 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">]>;
|
|
4292
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4291
4293
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4292
4294
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4293
4295
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4309,7 +4311,7 @@ type SGroupUserDocumentWithRelations = v.InferOutput<typeof SGroupUserDocumentWi
|
|
|
4309
4311
|
declare const SGroupUserDocumentReqRelations: v.ObjectSchema<{
|
|
4310
4312
|
readonly user: v.ObjectSchema<{
|
|
4311
4313
|
readonly username: 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: - _ .">]>;
|
|
4312
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4314
|
+
readonly email: 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">]>;
|
|
4313
4315
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4314
4316
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4315
4317
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4320,8 +4322,8 @@ declare const SGroupUserDocumentReqRelations: v.ObjectSchema<{
|
|
|
4320
4322
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4321
4323
|
}, undefined>;
|
|
4322
4324
|
readonly group: v.ObjectSchema<{
|
|
4323
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4324
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4325
|
+
readonly label: 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">]>;
|
|
4326
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4325
4327
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4326
4328
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4327
4329
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4343,8 +4345,8 @@ type SGroupUserDocumentReqRelations = v.InferOutput<typeof SGroupUserDocumentReq
|
|
|
4343
4345
|
|
|
4344
4346
|
declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
4345
4347
|
readonly utm_terms: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4346
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4347
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4348
|
+
readonly label: 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">]>;
|
|
4349
|
+
readonly value: 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: - _ .">]>;
|
|
4348
4350
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4349
4351
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4350
4352
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4354,8 +4356,8 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4354
4356
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4355
4357
|
}, undefined>, undefined>, undefined>;
|
|
4356
4358
|
readonly utm_creative_format_variants: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4357
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4358
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4359
|
+
readonly label: 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">]>;
|
|
4360
|
+
readonly value: 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: - _ .">]>;
|
|
4359
4361
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4360
4362
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4361
4363
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4365,8 +4367,8 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4365
4367
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4366
4368
|
}, undefined>, undefined>, undefined>;
|
|
4367
4369
|
readonly utm_creative_formats: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4368
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4369
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4370
|
+
readonly label: 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">]>;
|
|
4371
|
+
readonly value: 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: - _ .">]>;
|
|
4370
4372
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4371
4373
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4372
4374
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4376,14 +4378,14 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4376
4378
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4377
4379
|
}, undefined>, undefined>, undefined>;
|
|
4378
4380
|
readonly utm_contents: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4379
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4380
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4381
|
+
readonly label: 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">]>;
|
|
4382
|
+
readonly value: 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: - _ .">]>;
|
|
4381
4383
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4382
4384
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4383
4385
|
}, undefined>, undefined>, undefined>;
|
|
4384
4386
|
readonly utm_campaign_keys: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4385
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4386
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4387
|
+
readonly label: 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">]>;
|
|
4388
|
+
readonly value: 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: - _ .">]>;
|
|
4387
4389
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4388
4390
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4389
4391
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4393,8 +4395,8 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4393
4395
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4394
4396
|
}, undefined>, undefined>, undefined>;
|
|
4395
4397
|
readonly utm_campaign_products: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4396
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4397
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4398
|
+
readonly label: 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">]>;
|
|
4399
|
+
readonly value: 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: - _ .">]>;
|
|
4398
4400
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4399
4401
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4400
4402
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4404,8 +4406,8 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4404
4406
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4405
4407
|
}, undefined>, undefined>, undefined>;
|
|
4406
4408
|
readonly utm_campaign_phases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4407
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4408
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4409
|
+
readonly label: 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">]>;
|
|
4410
|
+
readonly value: 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: - _ .">]>;
|
|
4409
4411
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4410
4412
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4411
4413
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4416,8 +4418,8 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4416
4418
|
}, undefined>, undefined>, undefined>;
|
|
4417
4419
|
readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4418
4420
|
readonly cost: 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">]>;
|
|
4419
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4420
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4421
|
+
readonly label: 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">]>;
|
|
4422
|
+
readonly value: 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: - _ .">]>;
|
|
4421
4423
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4422
4424
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4423
4425
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4427,8 +4429,8 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4427
4429
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4428
4430
|
}, undefined>, undefined>, undefined>;
|
|
4429
4431
|
readonly utm_mediums: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4430
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4431
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4432
|
+
readonly label: 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">]>;
|
|
4433
|
+
readonly value: 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: - _ .">]>;
|
|
4432
4434
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4433
4435
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4434
4436
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4438,8 +4440,8 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4438
4440
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4439
4441
|
}, undefined>, undefined>, undefined>;
|
|
4440
4442
|
readonly utm_sources: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4441
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4442
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4443
|
+
readonly label: 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">]>;
|
|
4444
|
+
readonly value: 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: - _ .">]>;
|
|
4443
4445
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4444
4446
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4445
4447
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4483,7 +4485,7 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4483
4485
|
}, undefined>, undefined>, undefined>;
|
|
4484
4486
|
readonly authorized_users: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4485
4487
|
readonly username: 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: - _ .">]>;
|
|
4486
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4488
|
+
readonly email: 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">]>;
|
|
4487
4489
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4488
4490
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4489
4491
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4495,7 +4497,7 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4495
4497
|
}, undefined>, undefined>, undefined>;
|
|
4496
4498
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4497
4499
|
readonly username: 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: - _ .">]>;
|
|
4498
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4500
|
+
readonly email: 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">]>;
|
|
4499
4501
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4500
4502
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4501
4503
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4505,8 +4507,8 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4505
4507
|
readonly createdAt: v.StringSchema<undefined>;
|
|
4506
4508
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4507
4509
|
}, undefined>, undefined>;
|
|
4508
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4509
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4510
|
+
readonly label: 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">]>;
|
|
4511
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4510
4512
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4511
4513
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4512
4514
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4522,7 +4524,7 @@ type SGroupDocumentWithRelations = v.InferOutput<typeof SGroupDocumentWithRelati
|
|
|
4522
4524
|
declare const SRoleDocumentWithRelations: v.ObjectSchema<{
|
|
4523
4525
|
readonly user: v.OptionalSchema<v.ObjectSchema<{
|
|
4524
4526
|
readonly username: 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: - _ .">]>;
|
|
4525
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4527
|
+
readonly email: 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">]>;
|
|
4526
4528
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4527
4529
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4528
4530
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4546,8 +4548,8 @@ type SRoleDocumentWithRelations = v.InferOutput<typeof SRoleDocumentWithRelation
|
|
|
4546
4548
|
|
|
4547
4549
|
declare const STrackingLinkDocumentWithRelations: v.ObjectSchema<{
|
|
4548
4550
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4549
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4550
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4551
|
+
readonly label: 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">]>;
|
|
4552
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4551
4553
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4552
4554
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4553
4555
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4560,7 +4562,7 @@ declare const STrackingLinkDocumentWithRelations: v.ObjectSchema<{
|
|
|
4560
4562
|
}, undefined>, undefined>;
|
|
4561
4563
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4562
4564
|
readonly username: 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: - _ .">]>;
|
|
4563
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4565
|
+
readonly email: 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">]>;
|
|
4564
4566
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4565
4567
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4566
4568
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4596,7 +4598,7 @@ type STrackingLinkDocumentWithRelations = v.InferOutput<typeof STrackingLinkDocu
|
|
|
4596
4598
|
declare const SUserAccountDocumentWithRelations: v.ObjectSchema<{
|
|
4597
4599
|
readonly user: v.OptionalSchema<v.ObjectSchema<{
|
|
4598
4600
|
readonly username: 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: - _ .">]>;
|
|
4599
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4601
|
+
readonly email: 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">]>;
|
|
4600
4602
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4601
4603
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4602
4604
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4622,7 +4624,7 @@ type SUserAccountDocumentWithRelations = v.InferOutput<typeof SUserAccountDocume
|
|
|
4622
4624
|
declare const SUserAccountDocumentReqRelations: v.ObjectSchema<{
|
|
4623
4625
|
readonly user: v.ObjectSchema<{
|
|
4624
4626
|
readonly username: 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: - _ .">]>;
|
|
4625
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4627
|
+
readonly email: 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">]>;
|
|
4626
4628
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4627
4629
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4628
4630
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4649,7 +4651,7 @@ type SUserAccountDocumentReqRelations = v.InferOutput<typeof SUserAccountDocumen
|
|
|
4649
4651
|
declare const SUserLimitationsDocumentWithRelations: v.ObjectSchema<{
|
|
4650
4652
|
readonly user: v.OptionalSchema<v.ObjectSchema<{
|
|
4651
4653
|
readonly username: 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: - _ .">]>;
|
|
4652
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4654
|
+
readonly email: 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">]>;
|
|
4653
4655
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4654
4656
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4655
4657
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4684,8 +4686,8 @@ type SUserLimitationsDocumentWithRelations = v.InferOutput<typeof SUserLimitatio
|
|
|
4684
4686
|
|
|
4685
4687
|
declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
4686
4688
|
readonly utm_terms: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4687
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4688
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4689
|
+
readonly label: 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">]>;
|
|
4690
|
+
readonly value: 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: - _ .">]>;
|
|
4689
4691
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4690
4692
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4691
4693
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4695,8 +4697,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4695
4697
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4696
4698
|
}, undefined>, undefined>, undefined>;
|
|
4697
4699
|
readonly utm_creative_format_variants: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4698
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4699
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4700
|
+
readonly label: 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">]>;
|
|
4701
|
+
readonly value: 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: - _ .">]>;
|
|
4700
4702
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4701
4703
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4702
4704
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4706,8 +4708,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4706
4708
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4707
4709
|
}, undefined>, undefined>, undefined>;
|
|
4708
4710
|
readonly utm_creative_formats: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4709
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4710
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4711
|
+
readonly label: 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">]>;
|
|
4712
|
+
readonly value: 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: - _ .">]>;
|
|
4711
4713
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4712
4714
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4713
4715
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4717,8 +4719,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4717
4719
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4718
4720
|
}, undefined>, undefined>, undefined>;
|
|
4719
4721
|
readonly utm_contents: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4720
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4721
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4722
|
+
readonly label: 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">]>;
|
|
4723
|
+
readonly value: 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: - _ .">]>;
|
|
4722
4724
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4723
4725
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4724
4726
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4728,8 +4730,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4728
4730
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4729
4731
|
}, undefined>, undefined>, undefined>;
|
|
4730
4732
|
readonly utm_campaign_keys: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4731
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4732
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4733
|
+
readonly label: 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">]>;
|
|
4734
|
+
readonly value: 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: - _ .">]>;
|
|
4733
4735
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4734
4736
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4735
4737
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4739,8 +4741,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4739
4741
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4740
4742
|
}, undefined>, undefined>, undefined>;
|
|
4741
4743
|
readonly utm_campaign_products: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4742
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4743
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4744
|
+
readonly label: 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">]>;
|
|
4745
|
+
readonly value: 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: - _ .">]>;
|
|
4744
4746
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4745
4747
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4746
4748
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4750,8 +4752,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4750
4752
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4751
4753
|
}, undefined>, undefined>, undefined>;
|
|
4752
4754
|
readonly utm_campaign_phases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4753
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4754
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4755
|
+
readonly label: 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">]>;
|
|
4756
|
+
readonly value: 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: - _ .">]>;
|
|
4755
4757
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4756
4758
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4757
4759
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4762,8 +4764,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4762
4764
|
}, undefined>, undefined>, undefined>;
|
|
4763
4765
|
readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4764
4766
|
readonly cost: 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">]>;
|
|
4765
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4766
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4767
|
+
readonly label: 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">]>;
|
|
4768
|
+
readonly value: 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: - _ .">]>;
|
|
4767
4769
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4768
4770
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4769
4771
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4773,8 +4775,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4773
4775
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4774
4776
|
}, undefined>, undefined>, undefined>;
|
|
4775
4777
|
readonly utm_mediums: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4776
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4777
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4778
|
+
readonly label: 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">]>;
|
|
4779
|
+
readonly value: 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: - _ .">]>;
|
|
4778
4780
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4779
4781
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4780
4782
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4784,8 +4786,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4784
4786
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4785
4787
|
}, undefined>, undefined>, undefined>;
|
|
4786
4788
|
readonly utm_sources: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4787
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4788
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
4789
|
+
readonly label: 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">]>;
|
|
4790
|
+
readonly value: 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: - _ .">]>;
|
|
4789
4791
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4790
4792
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4791
4793
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -4828,8 +4830,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4828
4830
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4829
4831
|
}, undefined>, undefined>, undefined>;
|
|
4830
4832
|
readonly authorized_groups: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4831
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4832
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4833
|
+
readonly label: 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">]>;
|
|
4834
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4833
4835
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4834
4836
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4835
4837
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4852,8 +4854,8 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4852
4854
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4853
4855
|
}, undefined>, undefined>;
|
|
4854
4856
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4855
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4856
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4857
|
+
readonly label: 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">]>;
|
|
4858
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4857
4859
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4858
4860
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4859
4861
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4865,7 +4867,7 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4865
4867
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4866
4868
|
}, undefined>, undefined>;
|
|
4867
4869
|
readonly username: 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: - _ .">]>;
|
|
4868
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4870
|
+
readonly email: 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">]>;
|
|
4869
4871
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4870
4872
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4871
4873
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4891,7 +4893,7 @@ declare const SUserDocumentWithAccountRelations: v.ObjectSchema<{
|
|
|
4891
4893
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4892
4894
|
}, undefined>;
|
|
4893
4895
|
readonly username: 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: - _ .">]>;
|
|
4894
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4896
|
+
readonly email: 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">]>;
|
|
4895
4897
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4896
4898
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4897
4899
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4928,7 +4930,7 @@ declare const SUserDocumentWithAccountAndRoleRelations: v.ObjectSchema<{
|
|
|
4928
4930
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4929
4931
|
}, undefined>;
|
|
4930
4932
|
readonly username: 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: - _ .">]>;
|
|
4931
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4933
|
+
readonly email: 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">]>;
|
|
4932
4934
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4933
4935
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4934
4936
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4967,7 +4969,7 @@ declare const SUserAuthorizationSuccessResponse: v.ObjectSchema<{
|
|
|
4967
4969
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4968
4970
|
}, undefined>;
|
|
4969
4971
|
readonly username: 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: - _ .">]>;
|
|
4970
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
4972
|
+
readonly email: 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">]>;
|
|
4971
4973
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
4972
4974
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
4973
4975
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -4982,8 +4984,8 @@ type SUserAuthorizationSuccessResponse = v.InferOutput<typeof SUserAuthorization
|
|
|
4982
4984
|
|
|
4983
4985
|
declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
|
|
4984
4986
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
4985
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
4986
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
4987
|
+
readonly label: 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">]>;
|
|
4988
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
4987
4989
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
4988
4990
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4989
4991
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -4996,7 +4998,7 @@ declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
|
|
|
4996
4998
|
}, undefined>, undefined>;
|
|
4997
4999
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
4998
5000
|
readonly username: 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: - _ .">]>;
|
|
4999
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5001
|
+
readonly email: 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">]>;
|
|
5000
5002
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5001
5003
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5002
5004
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5007,8 +5009,8 @@ declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
|
|
|
5007
5009
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5008
5010
|
}, undefined>, undefined>;
|
|
5009
5011
|
readonly cost: 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">]>;
|
|
5010
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5011
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5012
|
+
readonly label: 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">]>;
|
|
5013
|
+
readonly value: 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: - _ .">]>;
|
|
5012
5014
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5013
5015
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5014
5016
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5020,8 +5022,8 @@ declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
|
|
|
5020
5022
|
type SCampaignIdDocumentWithRelations = v.InferOutput<typeof SCampaignIdDocumentWithRelations>;
|
|
5021
5023
|
declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
|
|
5022
5024
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5023
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5024
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5025
|
+
readonly label: 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">]>;
|
|
5026
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5025
5027
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5026
5028
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5027
5029
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5034,7 +5036,7 @@ declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
|
|
|
5034
5036
|
}, undefined>, undefined>;
|
|
5035
5037
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5036
5038
|
readonly username: 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: - _ .">]>;
|
|
5037
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5039
|
+
readonly email: 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">]>;
|
|
5038
5040
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5039
5041
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5040
5042
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5044,8 +5046,8 @@ declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
|
|
|
5044
5046
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5045
5047
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5046
5048
|
}, undefined>, undefined>;
|
|
5047
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5048
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5049
|
+
readonly label: 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">]>;
|
|
5050
|
+
readonly value: 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: - _ .">]>;
|
|
5049
5051
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5050
5052
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5051
5053
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5057,8 +5059,8 @@ declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
|
|
|
5057
5059
|
type SCampaignPhaseDocumentWithRelations = v.InferOutput<typeof SCampaignPhaseDocumentWithRelations>;
|
|
5058
5060
|
declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
|
|
5059
5061
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5060
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5061
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5062
|
+
readonly label: 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">]>;
|
|
5063
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5062
5064
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5063
5065
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5064
5066
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5071,7 +5073,7 @@ declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
|
|
|
5071
5073
|
}, undefined>, undefined>;
|
|
5072
5074
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5073
5075
|
readonly username: 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: - _ .">]>;
|
|
5074
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5076
|
+
readonly email: 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">]>;
|
|
5075
5077
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5076
5078
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5077
5079
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5081,8 +5083,8 @@ declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
|
|
|
5081
5083
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5082
5084
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5083
5085
|
}, undefined>, undefined>;
|
|
5084
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5085
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5086
|
+
readonly label: 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">]>;
|
|
5087
|
+
readonly value: 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: - _ .">]>;
|
|
5086
5088
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5087
5089
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5088
5090
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5094,8 +5096,8 @@ declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
|
|
|
5094
5096
|
type SCampaignProductDocumentWithRelations = v.InferOutput<typeof SCampaignProductDocumentWithRelations>;
|
|
5095
5097
|
declare const SCampaignTargetDocumentWithRelations: v.ObjectSchema<{
|
|
5096
5098
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5097
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5098
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5099
|
+
readonly label: 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">]>;
|
|
5100
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5099
5101
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5100
5102
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5101
5103
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5108,7 +5110,7 @@ declare const SCampaignTargetDocumentWithRelations: v.ObjectSchema<{
|
|
|
5108
5110
|
}, undefined>, undefined>;
|
|
5109
5111
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5110
5112
|
readonly username: 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: - _ .">]>;
|
|
5111
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5113
|
+
readonly email: 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">]>;
|
|
5112
5114
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5113
5115
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5114
5116
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5118,8 +5120,8 @@ declare const SCampaignTargetDocumentWithRelations: v.ObjectSchema<{
|
|
|
5118
5120
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5119
5121
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5120
5122
|
}, undefined>, undefined>;
|
|
5121
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5122
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5123
|
+
readonly label: 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">]>;
|
|
5124
|
+
readonly value: 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: - _ .">]>;
|
|
5123
5125
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5124
5126
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5125
5127
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5131,8 +5133,8 @@ declare const SCampaignTargetDocumentWithRelations: v.ObjectSchema<{
|
|
|
5131
5133
|
type SCampaignTargetDocumentWithRelations = v.InferOutput<typeof SCampaignTargetDocumentWithRelations>;
|
|
5132
5134
|
declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
|
|
5133
5135
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5134
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5135
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5136
|
+
readonly label: 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">]>;
|
|
5137
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5136
5138
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5137
5139
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5138
5140
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5145,7 +5147,7 @@ declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
|
|
|
5145
5147
|
}, undefined>, undefined>;
|
|
5146
5148
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5147
5149
|
readonly username: 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: - _ .">]>;
|
|
5148
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5150
|
+
readonly email: 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">]>;
|
|
5149
5151
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5150
5152
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5151
5153
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5155,8 +5157,8 @@ declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
|
|
|
5155
5157
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5156
5158
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5157
5159
|
}, undefined>, undefined>;
|
|
5158
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5159
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5160
|
+
readonly label: 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">]>;
|
|
5161
|
+
readonly value: 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: - _ .">]>;
|
|
5160
5162
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5161
5163
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5162
5164
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5168,8 +5170,8 @@ declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
|
|
|
5168
5170
|
type SCampaignKeyDocumentWithRelations = v.InferOutput<typeof SCampaignKeyDocumentWithRelations>;
|
|
5169
5171
|
declare const SSourceDocumentWithRelations: v.ObjectSchema<{
|
|
5170
5172
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5171
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5172
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5173
|
+
readonly label: 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">]>;
|
|
5174
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5173
5175
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5174
5176
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5175
5177
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5182,7 +5184,7 @@ declare const SSourceDocumentWithRelations: v.ObjectSchema<{
|
|
|
5182
5184
|
}, undefined>, undefined>;
|
|
5183
5185
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5184
5186
|
readonly username: 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: - _ .">]>;
|
|
5185
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5187
|
+
readonly email: 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">]>;
|
|
5186
5188
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5187
5189
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5188
5190
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5192,8 +5194,8 @@ declare const SSourceDocumentWithRelations: v.ObjectSchema<{
|
|
|
5192
5194
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5193
5195
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5194
5196
|
}, undefined>, undefined>;
|
|
5195
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5196
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5197
|
+
readonly label: 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">]>;
|
|
5198
|
+
readonly value: 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: - _ .">]>;
|
|
5197
5199
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5198
5200
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5199
5201
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5205,8 +5207,8 @@ declare const SSourceDocumentWithRelations: v.ObjectSchema<{
|
|
|
5205
5207
|
type SSourceDocumentWithRelations = v.InferOutput<typeof SSourceDocumentWithRelations>;
|
|
5206
5208
|
declare const SMediumDocumentWithRelations: v.ObjectSchema<{
|
|
5207
5209
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5208
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5209
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5210
|
+
readonly label: 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">]>;
|
|
5211
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5210
5212
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5211
5213
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5212
5214
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5219,7 +5221,7 @@ declare const SMediumDocumentWithRelations: v.ObjectSchema<{
|
|
|
5219
5221
|
}, undefined>, undefined>;
|
|
5220
5222
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5221
5223
|
readonly username: 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: - _ .">]>;
|
|
5222
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5224
|
+
readonly email: 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">]>;
|
|
5223
5225
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5224
5226
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5225
5227
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5229,8 +5231,8 @@ declare const SMediumDocumentWithRelations: v.ObjectSchema<{
|
|
|
5229
5231
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5230
5232
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5231
5233
|
}, undefined>, undefined>;
|
|
5232
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5233
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5234
|
+
readonly label: 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">]>;
|
|
5235
|
+
readonly value: 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: - _ .">]>;
|
|
5234
5236
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5235
5237
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5236
5238
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5242,8 +5244,8 @@ declare const SMediumDocumentWithRelations: v.ObjectSchema<{
|
|
|
5242
5244
|
type SMediumDocumentWithRelations = v.InferOutput<typeof SMediumDocumentWithRelations>;
|
|
5243
5245
|
declare const SContentDocumentWithRelations: v.ObjectSchema<{
|
|
5244
5246
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5245
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5246
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5247
|
+
readonly label: 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">]>;
|
|
5248
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5247
5249
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5248
5250
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5249
5251
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5256,7 +5258,7 @@ declare const SContentDocumentWithRelations: v.ObjectSchema<{
|
|
|
5256
5258
|
}, undefined>, undefined>;
|
|
5257
5259
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5258
5260
|
readonly username: 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: - _ .">]>;
|
|
5259
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5261
|
+
readonly email: 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">]>;
|
|
5260
5262
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5261
5263
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5262
5264
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5266,8 +5268,8 @@ declare const SContentDocumentWithRelations: v.ObjectSchema<{
|
|
|
5266
5268
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5267
5269
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5268
5270
|
}, undefined>, undefined>;
|
|
5269
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5270
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5271
|
+
readonly label: 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">]>;
|
|
5272
|
+
readonly value: 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: - _ .">]>;
|
|
5271
5273
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5272
5274
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5273
5275
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5279,8 +5281,8 @@ declare const SContentDocumentWithRelations: v.ObjectSchema<{
|
|
|
5279
5281
|
type SContentDocumentWithRelations = v.InferOutput<typeof SContentDocumentWithRelations>;
|
|
5280
5282
|
declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
|
|
5281
5283
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5282
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5283
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5284
|
+
readonly label: 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">]>;
|
|
5285
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5284
5286
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5285
5287
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5286
5288
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5293,7 +5295,7 @@ declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
|
|
|
5293
5295
|
}, undefined>, undefined>;
|
|
5294
5296
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5295
5297
|
readonly username: 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: - _ .">]>;
|
|
5296
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5298
|
+
readonly email: 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">]>;
|
|
5297
5299
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5298
5300
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5299
5301
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5303,8 +5305,8 @@ declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
|
|
|
5303
5305
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5304
5306
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5305
5307
|
}, undefined>, undefined>;
|
|
5306
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5307
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5308
|
+
readonly label: 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">]>;
|
|
5309
|
+
readonly value: 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: - _ .">]>;
|
|
5308
5310
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5309
5311
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5310
5312
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5316,8 +5318,8 @@ declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
|
|
|
5316
5318
|
type SCreativeFormatDocumentWithRelations = v.InferOutput<typeof SCreativeFormatDocumentWithRelations>;
|
|
5317
5319
|
declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
|
|
5318
5320
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5319
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5320
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5321
|
+
readonly label: 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">]>;
|
|
5322
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5321
5323
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5322
5324
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5323
5325
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5330,7 +5332,7 @@ declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
|
|
|
5330
5332
|
}, undefined>, undefined>;
|
|
5331
5333
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5332
5334
|
readonly username: 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: - _ .">]>;
|
|
5333
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5335
|
+
readonly email: 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">]>;
|
|
5334
5336
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5335
5337
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5336
5338
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5340,8 +5342,8 @@ declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
|
|
|
5340
5342
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5341
5343
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5342
5344
|
}, undefined>, undefined>;
|
|
5343
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5344
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5345
|
+
readonly label: 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">]>;
|
|
5346
|
+
readonly value: 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: - _ .">]>;
|
|
5345
5347
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5346
5348
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5347
5349
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5353,8 +5355,8 @@ declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
|
|
|
5353
5355
|
type SCreativeFormatVariantDocumentWithRelations = v.InferOutput<typeof SCreativeFormatVariantDocumentWithRelations>;
|
|
5354
5356
|
declare const STermDocumentWithRelations: v.ObjectSchema<{
|
|
5355
5357
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5356
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5357
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5358
|
+
readonly label: 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">]>;
|
|
5359
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5358
5360
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5359
5361
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5360
5362
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5367,7 +5369,7 @@ declare const STermDocumentWithRelations: v.ObjectSchema<{
|
|
|
5367
5369
|
}, undefined>, undefined>;
|
|
5368
5370
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5369
5371
|
readonly username: 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: - _ .">]>;
|
|
5370
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5372
|
+
readonly email: 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">]>;
|
|
5371
5373
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5372
5374
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5373
5375
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -5377,8 +5379,8 @@ declare const STermDocumentWithRelations: v.ObjectSchema<{
|
|
|
5377
5379
|
readonly createdAt: v.StringSchema<undefined>;
|
|
5378
5380
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
5379
5381
|
}, undefined>, undefined>;
|
|
5380
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5381
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
5382
|
+
readonly label: 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">]>;
|
|
5383
|
+
readonly value: 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: - _ .">]>;
|
|
5382
5384
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5383
5385
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5384
5386
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -5391,8 +5393,8 @@ type STermDocumentWithRelations = v.InferOutput<typeof STermDocumentWithRelation
|
|
|
5391
5393
|
|
|
5392
5394
|
declare const SWebsiteDocumentWithRelations: v.ObjectSchema<{
|
|
5393
5395
|
readonly group: v.OptionalSchema<v.ObjectSchema<{
|
|
5394
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
5395
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
5396
|
+
readonly label: 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">]>;
|
|
5397
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
|
|
5396
5398
|
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
5397
5399
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
5398
5400
|
readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
@@ -5405,7 +5407,7 @@ declare const SWebsiteDocumentWithRelations: v.ObjectSchema<{
|
|
|
5405
5407
|
}, undefined>, undefined>;
|
|
5406
5408
|
readonly creator: v.OptionalSchema<v.ObjectSchema<{
|
|
5407
5409
|
readonly username: 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: - _ .">]>;
|
|
5408
|
-
readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
5410
|
+
readonly email: 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">]>;
|
|
5409
5411
|
readonly confirmed: v.BooleanSchema<undefined>;
|
|
5410
5412
|
readonly blocked: v.BooleanSchema<undefined>;
|
|
5411
5413
|
readonly provider: v.LiteralSchema<"local", undefined>;
|
|
@@ -6066,10 +6068,10 @@ declare const IsValidReferenceDocumentId: v.SchemaWithPipe<readonly [v.StringSch
|
|
|
6066
6068
|
declare const IsValidMinPage: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
6067
6069
|
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">]>;
|
|
6068
6070
|
declare const IsValidOrUndefinedCost: v.UndefinedableSchema<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>;
|
|
6069
|
-
declare const IsValidLabel: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
6070
|
-
declare const IsValidOrUndefinedLabel: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string,
|
|
6071
|
-
declare const IsValidValue: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
6072
|
-
declare const IsValidOrUndefinedValue: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string,
|
|
6071
|
+
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">]>;
|
|
6072
|
+
declare const IsValidOrUndefinedLabel: v.UndefinedableSchema<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>;
|
|
6073
|
+
declare const IsValidValue: 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: - _ .">]>;
|
|
6074
|
+
declare const IsValidOrUndefinedValue: v.UndefinedableSchema<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>;
|
|
6073
6075
|
declare const IsValidDescription: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
6074
6076
|
declare const IsValidOrUndefinedDescription: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
6075
6077
|
declare const IsValidIsActive: v.BooleanSchema<"isActive must be a boolean">;
|
|
@@ -6083,6 +6085,8 @@ declare const IsValidOrUndefinedName: v.UndefinedableSchema<v.SchemaWithPipe<rea
|
|
|
6083
6085
|
|
|
6084
6086
|
declare const IsValidGroupUserScopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<GroupEntityScope[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<GroupEntityScope[], 1, "you must provide at least one scope">, v.MaxLengthAction<GroupEntityScope[], number, "you cannot provide more scopes than available">]>;
|
|
6085
6087
|
|
|
6088
|
+
declare const IsValidGroupValue: 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: - _ .">]>;
|
|
6089
|
+
declare const IsValidOrUndefinedGroupValue: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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>;
|
|
6086
6090
|
declare const IsValidApplyValueTo: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
|
|
6087
6091
|
declare const IsValidOrUndefinedApplyValueTo: v.UndefinedableSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
6088
6092
|
declare const IsValidApplyValueAs: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
|
|
@@ -6129,10 +6133,10 @@ declare const IsValidOrUndefinedUserLimitationNumber: v.UndefinedableSchema<v.Sc
|
|
|
6129
6133
|
|
|
6130
6134
|
declare const IsValidUsername: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
6131
6135
|
declare const IsValidOrUndefinedUsername: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
6132
|
-
declare const IsValidEmail: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
6133
|
-
declare const IsValidOrUndefinedEmail: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string,
|
|
6134
|
-
declare const IsValidPassword: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
6135
|
-
declare const IsValidOrUndefinedPassword: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string,
|
|
6136
|
+
declare const IsValidEmail: 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">]>;
|
|
6137
|
+
declare const IsValidOrUndefinedEmail: v.UndefinedableSchema<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>;
|
|
6138
|
+
declare const IsValidPassword: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
|
|
6139
|
+
declare const IsValidOrUndefinedPassword: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 6, "your password is too short, it must be at least 6 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>, undefined>;
|
|
6136
6140
|
declare const IsValidProvider: v.SchemaWithPipe<readonly [v.StringSchema<"please enter a provider">, v.TrimAction, v.MaxLengthAction<string, 255, "the provider string is too long, it must be 255 characters or less">]>;
|
|
6137
6141
|
declare const IsValidOrUndefinedProvider: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please enter a provider">, v.TrimAction, v.MaxLengthAction<string, 255, "the provider string is too long, it must be 255 characters or less">]>, undefined>;
|
|
6138
6142
|
declare const IsValidConfirmed: v.BooleanSchema<undefined>;
|
|
@@ -6140,8 +6144,8 @@ declare const IsValidOrUndefinedConfirmed: v.UndefinedableSchema<v.BooleanSchema
|
|
|
6140
6144
|
declare const IsValidBlocked: v.BooleanSchema<undefined>;
|
|
6141
6145
|
declare const IsValidOrUndefinedBlocked: v.UndefinedableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6142
6146
|
|
|
6143
|
-
declare const IsValidUrlUtmPart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
6144
|
-
declare const IsValidOrUndefinedUrlUtmPart: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string,
|
|
6147
|
+
declare const IsValidUrlUtmPart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
6148
|
+
declare const IsValidOrUndefinedUrlUtmPart: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "this value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 64, "the value is too long, it must be 64 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
6145
6149
|
declare const IsValidUrlUtmSource: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2026, "the utm_source is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_source can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
6146
6150
|
declare const IsValidOrUndefinedUrlUtmSource: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2026, "the utm_source is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_source can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
6147
6151
|
declare const IsValidUrlUtmMedium: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2026, "the utm_medium is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_medium can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
@@ -6157,4 +6161,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
|
|
|
6157
6161
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
6158
6162
|
declare const IsValidOrUndefinedUrlUtmId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
6159
6163
|
|
|
6160
|
-
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateFormat, type SUtmLinkBuilderPartCampaignDateFormatInput, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, type SUtmLinkBuilderPartCampaignDateObjectInput, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, type SUtmLinkBuilderPartCampaignDateValueDayInput, type SUtmLinkBuilderPartCampaignDateValueInput, SUtmLinkBuilderPartCampaignDateValueMonth, type SUtmLinkBuilderPartCampaignDateValueMonthInput, SUtmLinkBuilderPartCampaignDateValueQuarter, type SUtmLinkBuilderPartCampaignDateValueQuarterInput, SUtmLinkBuilderPartCampaignDateValueYear, type SUtmLinkBuilderPartCampaignDateValueYearInput, SUtmLinkBuilderPartCampaignId, type SUtmLinkBuilderPartCampaignIdInput, SUtmLinkBuilderPartCampaignKey, type SUtmLinkBuilderPartCampaignKeyInput, SUtmLinkBuilderPartCampaignObject, type SUtmLinkBuilderPartCampaignObjectInput, SUtmLinkBuilderPartCampaignPhase, type SUtmLinkBuilderPartCampaignPhaseInput, SUtmLinkBuilderPartCampaignProduct, type SUtmLinkBuilderPartCampaignProductInput, SUtmLinkBuilderPartCampaignTargeting, type SUtmLinkBuilderPartCampaignTargetingInput, SUtmLinkBuilderPartCampaigns, type SUtmLinkBuilderPartCampaignsInput, SUtmLinkBuilderPartContents, type SUtmLinkBuilderPartContentsInput, SUtmLinkBuilderPartCreativeFormatObject, type SUtmLinkBuilderPartCreativeFormatObjectInput, SUtmLinkBuilderPartCreativeFormatValue, type SUtmLinkBuilderPartCreativeFormatValueInput, SUtmLinkBuilderPartCreativeFormatVariantValue, type SUtmLinkBuilderPartCreativeFormatVariantValueInput, SUtmLinkBuilderPartCreativeFormats, type SUtmLinkBuilderPartCreativeFormatsInput, SUtmLinkBuilderPartMediums, type SUtmLinkBuilderPartMediumsInput, SUtmLinkBuilderPartSources, type SUtmLinkBuilderPartSourcesInput, SUtmLinkBuilderPartTerms, type SUtmLinkBuilderPartTermsInput, SUtmLinkBuilderPartUrlDestinations, type SUtmLinkBuilderPartUrlDestinationsInput, SUtmLinkBuilderPartUrlObject, type SUtmLinkBuilderPartUrlObjectInput, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyGroupUserDocument, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiErrorDetail, type StrapiErrorKey, type StrapiErrorResponse, type StrapiErrorResult, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
6164
|
+
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidGroupValue, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedGroupValue, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_GROUP_VALUE, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_GROUP_VALUE, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateFormat, type SUtmLinkBuilderPartCampaignDateFormatInput, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, type SUtmLinkBuilderPartCampaignDateObjectInput, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, type SUtmLinkBuilderPartCampaignDateValueDayInput, type SUtmLinkBuilderPartCampaignDateValueInput, SUtmLinkBuilderPartCampaignDateValueMonth, type SUtmLinkBuilderPartCampaignDateValueMonthInput, SUtmLinkBuilderPartCampaignDateValueQuarter, type SUtmLinkBuilderPartCampaignDateValueQuarterInput, SUtmLinkBuilderPartCampaignDateValueYear, type SUtmLinkBuilderPartCampaignDateValueYearInput, SUtmLinkBuilderPartCampaignId, type SUtmLinkBuilderPartCampaignIdInput, SUtmLinkBuilderPartCampaignKey, type SUtmLinkBuilderPartCampaignKeyInput, SUtmLinkBuilderPartCampaignObject, type SUtmLinkBuilderPartCampaignObjectInput, SUtmLinkBuilderPartCampaignPhase, type SUtmLinkBuilderPartCampaignPhaseInput, SUtmLinkBuilderPartCampaignProduct, type SUtmLinkBuilderPartCampaignProductInput, SUtmLinkBuilderPartCampaignTargeting, type SUtmLinkBuilderPartCampaignTargetingInput, SUtmLinkBuilderPartCampaigns, type SUtmLinkBuilderPartCampaignsInput, SUtmLinkBuilderPartContents, type SUtmLinkBuilderPartContentsInput, SUtmLinkBuilderPartCreativeFormatObject, type SUtmLinkBuilderPartCreativeFormatObjectInput, SUtmLinkBuilderPartCreativeFormatValue, type SUtmLinkBuilderPartCreativeFormatValueInput, SUtmLinkBuilderPartCreativeFormatVariantValue, type SUtmLinkBuilderPartCreativeFormatVariantValueInput, SUtmLinkBuilderPartCreativeFormats, type SUtmLinkBuilderPartCreativeFormatsInput, SUtmLinkBuilderPartMediums, type SUtmLinkBuilderPartMediumsInput, SUtmLinkBuilderPartSources, type SUtmLinkBuilderPartSourcesInput, SUtmLinkBuilderPartTerms, type SUtmLinkBuilderPartTermsInput, SUtmLinkBuilderPartUrlDestinations, type SUtmLinkBuilderPartUrlDestinationsInput, SUtmLinkBuilderPartUrlObject, type SUtmLinkBuilderPartUrlObjectInput, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyGroupUserDocument, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiErrorDetail, type StrapiErrorKey, type StrapiErrorResponse, type StrapiErrorResult, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|