@joeygrable94/utm-src-pub-validators 0.0.86 → 0.0.88
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 +1206 -1078
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +225 -66
- package/dist/index.d.ts +225 -66
- package/dist/index.js +1191 -1078
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -187,6 +187,14 @@ declare const SGroupUserDocumentStatus: v.ObjectSchema<{
|
|
|
187
187
|
}, undefined>;
|
|
188
188
|
type SGroupUserDocumentStatus = v.InferOutput<typeof SGroupUserDocumentStatus>;
|
|
189
189
|
|
|
190
|
+
declare const SQuerySortGroupDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
191
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "apply_value_to", "apply_value_as", "createdAt", "updatedAt"], undefined>, "label">;
|
|
192
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
193
|
+
}, undefined>, {
|
|
194
|
+
readonly key: "label";
|
|
195
|
+
readonly order: "ASC";
|
|
196
|
+
}>;
|
|
197
|
+
type SQuerySortGroupDocuments = v.InferOutput<typeof SQuerySortGroupDocuments>;
|
|
190
198
|
declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
191
199
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
192
200
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 100, undefined>]>, 10>, 10>;
|
|
@@ -197,9 +205,12 @@ declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
|
197
205
|
readonly apply_value_as: v.OptionalSchema<v.PicklistSchema<readonly ["prefix", "suffix"], undefined>, undefined>;
|
|
198
206
|
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>;
|
|
199
207
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
200
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "apply_value_to", "apply_value_as", "createdAt", "updatedAt"], undefined>;
|
|
201
|
-
readonly order: v.PicklistSchema<["
|
|
202
|
-
}, undefined>,
|
|
208
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "apply_value_to", "apply_value_as", "createdAt", "updatedAt"], undefined>, "label">;
|
|
209
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
210
|
+
}, undefined>, {
|
|
211
|
+
readonly key: "label";
|
|
212
|
+
readonly order: "ASC";
|
|
213
|
+
}>;
|
|
203
214
|
}, undefined>;
|
|
204
215
|
type SQueryListGroupDocuments = v.InferOutput<typeof SQueryListGroupDocuments>;
|
|
205
216
|
declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
@@ -332,7 +343,7 @@ type SUtmLinkBuilderPartCampaignProductInput = v.InferInput<typeof SUtmLinkBuild
|
|
|
332
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
333
344
|
type SUtmLinkBuilderPartCampaignProduct = v.InferOutput<typeof SUtmLinkBuilderPartCampaignProduct>;
|
|
334
345
|
type SUtmLinkBuilderPartCampaignTargetingInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignTargeting>;
|
|
335
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
336
347
|
type SUtmLinkBuilderPartCampaignTargeting = v.InferOutput<typeof SUtmLinkBuilderPartCampaignTargeting>;
|
|
337
348
|
type SUtmLinkBuilderPartCampaignKeyInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignKey>;
|
|
338
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
@@ -341,7 +352,7 @@ type SUtmLinkBuilderPartCampaignObjectInput = v.InferInput<typeof SUtmLinkBuilde
|
|
|
341
352
|
declare const SUtmLinkBuilderPartCampaignObject: v.ObjectSchema<{
|
|
342
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
343
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
344
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
345
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
346
357
|
readonly campaign_date: v.ObjectSchema<{
|
|
347
358
|
readonly format: v.PicklistSchema<readonly ["no date", "annually", "quarterly", "monthly", "on a specific date"], "Please select a valid campaign date format.">;
|
|
@@ -358,7 +369,7 @@ type SUtmLinkBuilderPartCampaignsInput = v.InferInput<typeof SUtmLinkBuilderPart
|
|
|
358
369
|
declare const SUtmLinkBuilderPartCampaigns: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
359
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
360
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
361
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
362
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
363
374
|
readonly campaign_date: v.ObjectSchema<{
|
|
364
375
|
readonly format: v.PicklistSchema<readonly ["no date", "annually", "quarterly", "monthly", "on a specific date"], "Please select a valid campaign date format.">;
|
|
@@ -400,34 +411,31 @@ declare const SUtmLinkBuilderPartCampaigns: v.SchemaWithPipe<readonly [v.ArraySc
|
|
|
400
411
|
}[], 10, "You can provide up to 10 campaigns.">]>;
|
|
401
412
|
type SUtmLinkBuilderPartCampaigns = v.InferOutput<typeof SUtmLinkBuilderPartCampaigns>;
|
|
402
413
|
type SUtmLinkBuilderPartContentsInput = v.InferInput<typeof SUtmLinkBuilderPartContents>;
|
|
403
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
404
415
|
type SUtmLinkBuilderPartContents = v.InferOutput<typeof SUtmLinkBuilderPartContents>;
|
|
405
416
|
type SUtmLinkBuilderPartCreativeFormatValueInput = v.InferInput<typeof SUtmLinkBuilderPartCreativeFormatValue>;
|
|
406
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
407
418
|
type SUtmLinkBuilderPartCreativeFormatValue = v.InferOutput<typeof SUtmLinkBuilderPartCreativeFormatValue>;
|
|
408
419
|
type SUtmLinkBuilderPartCreativeFormatVariantValueInput = v.InferInput<typeof SUtmLinkBuilderPartCreativeFormatVariantValue>;
|
|
409
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
410
421
|
type SUtmLinkBuilderPartCreativeFormatVariantValue = v.InferOutput<typeof SUtmLinkBuilderPartCreativeFormatVariantValue>;
|
|
411
422
|
type SUtmLinkBuilderPartCreativeFormatObjectInput = v.InferInput<typeof SUtmLinkBuilderPartCreativeFormatObject>;
|
|
412
423
|
declare const SUtmLinkBuilderPartCreativeFormatObject: v.ObjectSchema<{
|
|
413
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
414
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
415
426
|
}, undefined>;
|
|
416
427
|
type SUtmLinkBuilderPartCreativeFormatObject = v.InferOutput<typeof SUtmLinkBuilderPartCreativeFormatObject>;
|
|
417
428
|
type SUtmLinkBuilderPartCreativeFormatsInput = v.InferInput<typeof SUtmLinkBuilderPartCreativeFormats>;
|
|
418
429
|
declare const SUtmLinkBuilderPartCreativeFormats: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
419
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
420
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
421
|
-
}, undefined>, undefined>, v.
|
|
422
|
-
creative_format?: string | undefined;
|
|
423
|
-
creative_format_variants?: string[] | undefined;
|
|
424
|
-
}[], 1, "Please select at least one creative format.">, v.MaxLengthAction<{
|
|
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, 200, "the value is too long, it must be 200 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
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
425
433
|
creative_format?: string | undefined;
|
|
426
434
|
creative_format_variants?: string[] | undefined;
|
|
427
435
|
}[], 10, "You can select up to 10 creative formats.">]>, undefined>;
|
|
428
436
|
type SUtmLinkBuilderPartCreativeFormats = v.InferOutput<typeof SUtmLinkBuilderPartCreativeFormats>;
|
|
429
437
|
type SUtmLinkBuilderPartTermsInput = v.InferInput<typeof SUtmLinkBuilderPartTerms>;
|
|
430
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
431
439
|
type SUtmLinkBuilderPartTerms = v.InferOutput<typeof SUtmLinkBuilderPartTerms>;
|
|
432
440
|
type SUtmLinkBuilderPartCampaignIdInput = v.InferInput<typeof SUtmLinkBuilderPartCampaignId>;
|
|
433
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
@@ -447,7 +455,7 @@ declare const SUtmLinkBuilderTableForm: v.ObjectSchema<{
|
|
|
447
455
|
readonly campaigns: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
448
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
449
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
450
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
451
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
452
460
|
readonly campaign_date: v.ObjectSchema<{
|
|
453
461
|
readonly format: v.PicklistSchema<readonly ["no date", "annually", "quarterly", "monthly", "on a specific date"], "Please select a valid campaign date format.">;
|
|
@@ -487,18 +495,15 @@ declare const SUtmLinkBuilderTableForm: v.ObjectSchema<{
|
|
|
487
495
|
};
|
|
488
496
|
};
|
|
489
497
|
}[], 10, "You can provide up to 10 campaigns.">]>;
|
|
490
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
491
499
|
readonly creative_formats: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
492
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
493
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
494
|
-
}, undefined>, undefined>, v.
|
|
495
|
-
creative_format?: string | undefined;
|
|
496
|
-
creative_format_variants?: string[] | undefined;
|
|
497
|
-
}[], 1, "Please select at least one creative format.">, v.MaxLengthAction<{
|
|
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, 200, "the value is too long, it must be 200 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
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
498
503
|
creative_format?: string | undefined;
|
|
499
504
|
creative_format_variants?: string[] | undefined;
|
|
500
505
|
}[], 10, "You can select up to 10 creative formats.">]>, undefined>;
|
|
501
|
-
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>, v.
|
|
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, 200, "the value is too long, it must be 200 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>;
|
|
502
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, 200, "the value is too long, it must be 200 characters or less">, v.RegexAction<string, "value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
503
508
|
}, undefined>;
|
|
504
509
|
type SUtmLinkBuilderTableForm = v.InferOutput<typeof SUtmLinkBuilderTableForm>;
|
|
@@ -525,6 +530,14 @@ declare const SStripeCheckoutCreateSession: v.ObjectSchema<{
|
|
|
525
530
|
}, undefined>;
|
|
526
531
|
type SStripeCheckoutCreateSession = v.InferOutput<typeof SStripeCheckoutCreateSession>;
|
|
527
532
|
|
|
533
|
+
declare const SQuerySortTrackingLinkDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
534
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "destination", "is_active", "protocol", "domain", "path", "query", "fragment", "utm_source", "utm_medium", "utm_campaign", "utm_creative_format", "utm_content", "utm_term", "utm_id", "createdAt", "updatedAt"], undefined>, "createdAt">;
|
|
535
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
536
|
+
}, undefined>, {
|
|
537
|
+
readonly key: "createdAt";
|
|
538
|
+
readonly order: "DESC";
|
|
539
|
+
}>;
|
|
540
|
+
type SQuerySortTrackingLinkDocuments = v.InferOutput<typeof SQuerySortTrackingLinkDocuments>;
|
|
528
541
|
declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
529
542
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
530
543
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -546,9 +559,12 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
546
559
|
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>;
|
|
547
560
|
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>;
|
|
548
561
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
549
|
-
readonly key: v.PicklistSchema<["id", "destination", "is_active", "protocol", "domain", "path", "query", "fragment", "utm_source", "utm_medium", "utm_campaign", "utm_creative_format", "utm_content", "utm_term", "utm_id", "createdAt", "updatedAt"], undefined>;
|
|
550
|
-
readonly order: v.PicklistSchema<["
|
|
551
|
-
}, undefined>,
|
|
562
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "destination", "is_active", "protocol", "domain", "path", "query", "fragment", "utm_source", "utm_medium", "utm_campaign", "utm_creative_format", "utm_content", "utm_term", "utm_id", "createdAt", "updatedAt"], undefined>, "createdAt">;
|
|
563
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
564
|
+
}, undefined>, {
|
|
565
|
+
readonly key: "createdAt";
|
|
566
|
+
readonly order: "DESC";
|
|
567
|
+
}>;
|
|
552
568
|
}, undefined>;
|
|
553
569
|
type SQueryListTrackingLinkDocuments = v.InferOutput<typeof SQueryListTrackingLinkDocuments>;
|
|
554
570
|
declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
@@ -877,6 +893,14 @@ declare const SUpdateUserLimitationsDocument: v.ObjectSchema<{
|
|
|
877
893
|
}, undefined>;
|
|
878
894
|
type SUpdateUserLimitationsDocument = v.InferOutput<typeof SUpdateUserLimitationsDocument>;
|
|
879
895
|
|
|
896
|
+
declare const SQuerySortUserDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
897
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "email", "username", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>, "createdAt">;
|
|
898
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
899
|
+
}, undefined>, {
|
|
900
|
+
readonly key: "createdAt";
|
|
901
|
+
readonly order: "DESC";
|
|
902
|
+
}>;
|
|
903
|
+
type SQuerySortUserDocuments = v.InferOutput<typeof SQuerySortUserDocuments>;
|
|
880
904
|
declare const SQueryListUserDocuments: v.ObjectSchema<{
|
|
881
905
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
882
906
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
|
|
@@ -885,9 +909,12 @@ declare const SQueryListUserDocuments: v.ObjectSchema<{
|
|
|
885
909
|
readonly confirmed: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
886
910
|
readonly blocked: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
887
911
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
888
|
-
readonly key: v.PicklistSchema<["id", "email", "username", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>;
|
|
889
|
-
readonly order: v.PicklistSchema<["
|
|
890
|
-
}, undefined>,
|
|
912
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "email", "username", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>, "createdAt">;
|
|
913
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "DESC">;
|
|
914
|
+
}, undefined>, {
|
|
915
|
+
readonly key: "createdAt";
|
|
916
|
+
readonly order: "DESC";
|
|
917
|
+
}>;
|
|
891
918
|
}, undefined>;
|
|
892
919
|
type SQueryListUserDocuments = v.InferOutput<typeof SQueryListUserDocuments>;
|
|
893
920
|
declare const SQueryListUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
@@ -905,6 +932,14 @@ declare const SReadUserDocumentByDocumentId: v.ObjectSchema<{
|
|
|
905
932
|
}, undefined>;
|
|
906
933
|
type SReadUserDocumentByDocumentId = v.InferOutput<typeof SReadUserDocumentByDocumentId>;
|
|
907
934
|
|
|
935
|
+
declare const SQuerySortCampaignIdDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
936
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "cost", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
937
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
938
|
+
}, undefined>, {
|
|
939
|
+
readonly key: "label";
|
|
940
|
+
readonly order: "ASC";
|
|
941
|
+
}>;
|
|
942
|
+
type SQuerySortCampaignIdDocuments = v.InferOutput<typeof SQuerySortCampaignIdDocuments>;
|
|
908
943
|
declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
|
|
909
944
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
910
945
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -918,9 +953,12 @@ declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
|
|
|
918
953
|
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>;
|
|
919
954
|
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>;
|
|
920
955
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
921
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
922
|
-
readonly order: v.PicklistSchema<["
|
|
923
|
-
}, undefined>,
|
|
956
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "cost", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
957
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
958
|
+
}, undefined>, {
|
|
959
|
+
readonly key: "label";
|
|
960
|
+
readonly order: "ASC";
|
|
961
|
+
}>;
|
|
924
962
|
}, undefined>;
|
|
925
963
|
type SQueryListCampaignIdDocuments = v.InferOutput<typeof SQueryListCampaignIdDocuments>;
|
|
926
964
|
declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
@@ -1009,6 +1047,14 @@ declare const SDeleteCampaignIdDocument: v.ObjectSchema<{
|
|
|
1009
1047
|
}, undefined>;
|
|
1010
1048
|
type SDeleteCampaignIdDocument = v.InferOutput<typeof SDeleteCampaignIdDocument>;
|
|
1011
1049
|
|
|
1050
|
+
declare const SQuerySortCampaignKeyDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1051
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1052
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1053
|
+
}, undefined>, {
|
|
1054
|
+
readonly key: "label";
|
|
1055
|
+
readonly order: "ASC";
|
|
1056
|
+
}>;
|
|
1057
|
+
type SQuerySortCampaignKeyDocuments = v.InferOutput<typeof SQuerySortCampaignKeyDocuments>;
|
|
1012
1058
|
declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
|
|
1013
1059
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1014
1060
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1019,9 +1065,12 @@ declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
|
|
|
1019
1065
|
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>;
|
|
1020
1066
|
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>;
|
|
1021
1067
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1022
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1023
|
-
readonly order: v.PicklistSchema<["
|
|
1024
|
-
}, undefined>,
|
|
1068
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1069
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1070
|
+
}, undefined>, {
|
|
1071
|
+
readonly key: "label";
|
|
1072
|
+
readonly order: "ASC";
|
|
1073
|
+
}>;
|
|
1025
1074
|
}, undefined>;
|
|
1026
1075
|
type SQueryListCampaignKeyDocuments = v.InferOutput<typeof SQueryListCampaignKeyDocuments>;
|
|
1027
1076
|
declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
@@ -1104,6 +1153,14 @@ declare const SDeleteCampaignKeyDocument: v.ObjectSchema<{
|
|
|
1104
1153
|
}, undefined>;
|
|
1105
1154
|
type SDeleteCampaignKeyDocument = v.InferOutput<typeof SDeleteCampaignKeyDocument>;
|
|
1106
1155
|
|
|
1156
|
+
declare const SQuerySortCampaignPhaseDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1157
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1158
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1159
|
+
}, undefined>, {
|
|
1160
|
+
readonly key: "label";
|
|
1161
|
+
readonly order: "ASC";
|
|
1162
|
+
}>;
|
|
1163
|
+
type SQuerySortCampaignPhaseDocuments = v.InferOutput<typeof SQuerySortCampaignPhaseDocuments>;
|
|
1107
1164
|
declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
|
|
1108
1165
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1109
1166
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1114,9 +1171,12 @@ declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
|
|
|
1114
1171
|
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>;
|
|
1115
1172
|
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>;
|
|
1116
1173
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1117
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1118
|
-
readonly order: v.PicklistSchema<["
|
|
1119
|
-
}, undefined>,
|
|
1174
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1175
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1176
|
+
}, undefined>, {
|
|
1177
|
+
readonly key: "label";
|
|
1178
|
+
readonly order: "ASC";
|
|
1179
|
+
}>;
|
|
1120
1180
|
}, undefined>;
|
|
1121
1181
|
type SQueryListCampaignPhaseDocuments = v.InferOutput<typeof SQueryListCampaignPhaseDocuments>;
|
|
1122
1182
|
declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
@@ -1199,6 +1259,14 @@ declare const SDeleteCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
1199
1259
|
}, undefined>;
|
|
1200
1260
|
type SDeleteCampaignPhaseDocument = v.InferOutput<typeof SDeleteCampaignPhaseDocument>;
|
|
1201
1261
|
|
|
1262
|
+
declare const SQuerySortCampaignProductDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1263
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1264
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1265
|
+
}, undefined>, {
|
|
1266
|
+
readonly key: "label";
|
|
1267
|
+
readonly order: "ASC";
|
|
1268
|
+
}>;
|
|
1269
|
+
type SQuerySortCampaignProductDocuments = v.InferOutput<typeof SQuerySortCampaignProductDocuments>;
|
|
1202
1270
|
declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
|
|
1203
1271
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1204
1272
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1209,9 +1277,12 @@ declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
|
|
|
1209
1277
|
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>;
|
|
1210
1278
|
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>;
|
|
1211
1279
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1212
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1213
|
-
readonly order: v.PicklistSchema<["
|
|
1214
|
-
}, undefined>,
|
|
1280
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1281
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1282
|
+
}, undefined>, {
|
|
1283
|
+
readonly key: "label";
|
|
1284
|
+
readonly order: "ASC";
|
|
1285
|
+
}>;
|
|
1215
1286
|
}, undefined>;
|
|
1216
1287
|
type SQueryListCampaignProductDocuments = v.InferOutput<typeof SQueryListCampaignProductDocuments>;
|
|
1217
1288
|
declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
@@ -1294,6 +1365,14 @@ declare const SDeleteCampaignProductDocument: v.ObjectSchema<{
|
|
|
1294
1365
|
}, undefined>;
|
|
1295
1366
|
type SDeleteCampaignProductDocument = v.InferOutput<typeof SDeleteCampaignProductDocument>;
|
|
1296
1367
|
|
|
1368
|
+
declare const SQuerySortCampaignTargetDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1369
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1370
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1371
|
+
}, undefined>, {
|
|
1372
|
+
readonly key: "label";
|
|
1373
|
+
readonly order: "ASC";
|
|
1374
|
+
}>;
|
|
1375
|
+
type SQuerySortCampaignTargetDocuments = v.InferOutput<typeof SQuerySortCampaignTargetDocuments>;
|
|
1297
1376
|
declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
|
|
1298
1377
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1299
1378
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1304,9 +1383,12 @@ declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
|
|
|
1304
1383
|
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>;
|
|
1305
1384
|
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>;
|
|
1306
1385
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1307
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1308
|
-
readonly order: v.PicklistSchema<["
|
|
1309
|
-
}, undefined>,
|
|
1386
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1387
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1388
|
+
}, undefined>, {
|
|
1389
|
+
readonly key: "label";
|
|
1390
|
+
readonly order: "ASC";
|
|
1391
|
+
}>;
|
|
1310
1392
|
}, undefined>;
|
|
1311
1393
|
type SQueryListCampaignTargetDocuments = v.InferOutput<typeof SQueryListCampaignTargetDocuments>;
|
|
1312
1394
|
declare const SCreateCampaignTargetDocument: v.ObjectSchema<{
|
|
@@ -1389,6 +1471,14 @@ declare const SDeleteCampaignTargetDocument: v.ObjectSchema<{
|
|
|
1389
1471
|
}, undefined>;
|
|
1390
1472
|
type SDeleteCampaignTargetDocument = v.InferOutput<typeof SDeleteCampaignTargetDocument>;
|
|
1391
1473
|
|
|
1474
|
+
declare const SQuerySortContentDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1475
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1476
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1477
|
+
}, undefined>, {
|
|
1478
|
+
readonly key: "label";
|
|
1479
|
+
readonly order: "ASC";
|
|
1480
|
+
}>;
|
|
1481
|
+
type SQuerySortContentDocuments = v.InferOutput<typeof SQuerySortContentDocuments>;
|
|
1392
1482
|
declare const SQueryListContentDocuments: v.ObjectSchema<{
|
|
1393
1483
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1394
1484
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1399,9 +1489,12 @@ declare const SQueryListContentDocuments: v.ObjectSchema<{
|
|
|
1399
1489
|
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>;
|
|
1400
1490
|
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>;
|
|
1401
1491
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1402
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1403
|
-
readonly order: v.PicklistSchema<["
|
|
1404
|
-
}, undefined>,
|
|
1492
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1493
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1494
|
+
}, undefined>, {
|
|
1495
|
+
readonly key: "label";
|
|
1496
|
+
readonly order: "ASC";
|
|
1497
|
+
}>;
|
|
1405
1498
|
}, undefined>;
|
|
1406
1499
|
type SQueryListContentDocuments = v.InferOutput<typeof SQueryListContentDocuments>;
|
|
1407
1500
|
declare const SCreateContentDocument: v.ObjectSchema<{
|
|
@@ -1484,6 +1577,14 @@ declare const SDeleteContentDocument: v.ObjectSchema<{
|
|
|
1484
1577
|
}, undefined>;
|
|
1485
1578
|
type SDeleteContentDocument = v.InferOutput<typeof SDeleteContentDocument>;
|
|
1486
1579
|
|
|
1580
|
+
declare const SQuerySortCreativeFormatVariantDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1581
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1582
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1583
|
+
}, undefined>, {
|
|
1584
|
+
readonly key: "label";
|
|
1585
|
+
readonly order: "ASC";
|
|
1586
|
+
}>;
|
|
1587
|
+
type SQuerySortCreativeFormatVariantDocuments = v.InferOutput<typeof SQuerySortCreativeFormatVariantDocuments>;
|
|
1487
1588
|
declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
1488
1589
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1489
1590
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1494,9 +1595,12 @@ declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
|
1494
1595
|
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>;
|
|
1495
1596
|
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>;
|
|
1496
1597
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1497
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1498
|
-
readonly order: v.PicklistSchema<["
|
|
1499
|
-
}, undefined>,
|
|
1598
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1599
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1600
|
+
}, undefined>, {
|
|
1601
|
+
readonly key: "label";
|
|
1602
|
+
readonly order: "ASC";
|
|
1603
|
+
}>;
|
|
1500
1604
|
}, undefined>;
|
|
1501
1605
|
type SQueryListCreativeFormatVariantDocuments = v.InferOutput<typeof SQueryListCreativeFormatVariantDocuments>;
|
|
1502
1606
|
declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
@@ -1579,6 +1683,14 @@ declare const SDeleteCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
1579
1683
|
}, undefined>;
|
|
1580
1684
|
type SDeleteCreativeFormatVariantDocument = v.InferOutput<typeof SDeleteCreativeFormatVariantDocument>;
|
|
1581
1685
|
|
|
1686
|
+
declare const SQuerySortCreativeFormatDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1687
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1688
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1689
|
+
}, undefined>, {
|
|
1690
|
+
readonly key: "label";
|
|
1691
|
+
readonly order: "ASC";
|
|
1692
|
+
}>;
|
|
1693
|
+
type SQuerySortCreativeFormatDocuments = v.InferOutput<typeof SQuerySortCreativeFormatDocuments>;
|
|
1582
1694
|
declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
|
|
1583
1695
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1584
1696
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1589,9 +1701,12 @@ declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
|
|
|
1589
1701
|
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>;
|
|
1590
1702
|
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>;
|
|
1591
1703
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1592
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1593
|
-
readonly order: v.PicklistSchema<["
|
|
1594
|
-
}, undefined>,
|
|
1704
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1705
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1706
|
+
}, undefined>, {
|
|
1707
|
+
readonly key: "label";
|
|
1708
|
+
readonly order: "ASC";
|
|
1709
|
+
}>;
|
|
1595
1710
|
}, undefined>;
|
|
1596
1711
|
type SQueryListCreativeFormatDocuments = v.InferOutput<typeof SQueryListCreativeFormatDocuments>;
|
|
1597
1712
|
declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
@@ -1674,6 +1789,14 @@ declare const SDeleteCreativeFormatDocument: v.ObjectSchema<{
|
|
|
1674
1789
|
}, undefined>;
|
|
1675
1790
|
type SDeleteCreativeFormatDocument = v.InferOutput<typeof SDeleteCreativeFormatDocument>;
|
|
1676
1791
|
|
|
1792
|
+
declare const SQuerySortMediumDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1793
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1794
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1795
|
+
}, undefined>, {
|
|
1796
|
+
readonly key: "label";
|
|
1797
|
+
readonly order: "ASC";
|
|
1798
|
+
}>;
|
|
1799
|
+
type SQuerySortMediumDocuments = v.InferOutput<typeof SQuerySortMediumDocuments>;
|
|
1677
1800
|
declare const SQueryListMediumDocuments: v.ObjectSchema<{
|
|
1678
1801
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1679
1802
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1684,9 +1807,12 @@ declare const SQueryListMediumDocuments: v.ObjectSchema<{
|
|
|
1684
1807
|
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>;
|
|
1685
1808
|
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>;
|
|
1686
1809
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1687
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1688
|
-
readonly order: v.PicklistSchema<["
|
|
1689
|
-
}, undefined>,
|
|
1810
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1811
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1812
|
+
}, undefined>, {
|
|
1813
|
+
readonly key: "label";
|
|
1814
|
+
readonly order: "ASC";
|
|
1815
|
+
}>;
|
|
1690
1816
|
}, undefined>;
|
|
1691
1817
|
type SQueryListMediumDocuments = v.InferOutput<typeof SQueryListMediumDocuments>;
|
|
1692
1818
|
declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
@@ -1769,6 +1895,14 @@ declare const SDeleteMediumDocument: v.ObjectSchema<{
|
|
|
1769
1895
|
}, undefined>;
|
|
1770
1896
|
type SDeleteMediumDocument = v.InferOutput<typeof SDeleteMediumDocument>;
|
|
1771
1897
|
|
|
1898
|
+
declare const SQuerySortSourceDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
1899
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1900
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1901
|
+
}, undefined>, {
|
|
1902
|
+
readonly key: "label";
|
|
1903
|
+
readonly order: "ASC";
|
|
1904
|
+
}>;
|
|
1905
|
+
type SQuerySortSourceDocuments = v.InferOutput<typeof SQuerySortSourceDocuments>;
|
|
1772
1906
|
declare const SQueryListSourceDocuments: v.ObjectSchema<{
|
|
1773
1907
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1774
1908
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1779,9 +1913,12 @@ declare const SQueryListSourceDocuments: v.ObjectSchema<{
|
|
|
1779
1913
|
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>;
|
|
1780
1914
|
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>;
|
|
1781
1915
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1782
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1783
|
-
readonly order: v.PicklistSchema<["
|
|
1784
|
-
}, undefined>,
|
|
1916
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
1917
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
1918
|
+
}, undefined>, {
|
|
1919
|
+
readonly key: "label";
|
|
1920
|
+
readonly order: "ASC";
|
|
1921
|
+
}>;
|
|
1785
1922
|
}, undefined>;
|
|
1786
1923
|
type SQueryListSourceDocuments = v.InferOutput<typeof SQueryListSourceDocuments>;
|
|
1787
1924
|
declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
@@ -1864,6 +2001,14 @@ declare const SDeleteSourceDocument: v.ObjectSchema<{
|
|
|
1864
2001
|
}, undefined>;
|
|
1865
2002
|
type SDeleteSourceDocument = v.InferOutput<typeof SDeleteSourceDocument>;
|
|
1866
2003
|
|
|
2004
|
+
declare const SQuerySortTermDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
2005
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
2006
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
2007
|
+
}, undefined>, {
|
|
2008
|
+
readonly key: "label";
|
|
2009
|
+
readonly order: "ASC";
|
|
2010
|
+
}>;
|
|
2011
|
+
type SQuerySortTermDocuments = v.InferOutput<typeof SQuerySortTermDocuments>;
|
|
1867
2012
|
declare const SQueryListTermDocuments: v.ObjectSchema<{
|
|
1868
2013
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1869
2014
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1874,9 +2019,12 @@ declare const SQueryListTermDocuments: v.ObjectSchema<{
|
|
|
1874
2019
|
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>;
|
|
1875
2020
|
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>;
|
|
1876
2021
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1877
|
-
readonly key: v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>;
|
|
1878
|
-
readonly order: v.PicklistSchema<["
|
|
1879
|
-
}, undefined>,
|
|
2022
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "label", "value", "is_active", "createdAt", "updatedAt"], undefined>, "label">;
|
|
2023
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
2024
|
+
}, undefined>, {
|
|
2025
|
+
readonly key: "label";
|
|
2026
|
+
readonly order: "ASC";
|
|
2027
|
+
}>;
|
|
1880
2028
|
}, undefined>;
|
|
1881
2029
|
type SQueryListTermDocuments = v.InferOutput<typeof SQueryListTermDocuments>;
|
|
1882
2030
|
declare const SCreateTermDocument: v.ObjectSchema<{
|
|
@@ -1959,6 +2107,14 @@ declare const SDeleteTermDocument: v.ObjectSchema<{
|
|
|
1959
2107
|
}, undefined>;
|
|
1960
2108
|
type SDeleteTermDocument = v.InferOutput<typeof SDeleteTermDocument>;
|
|
1961
2109
|
|
|
2110
|
+
declare const SQuerySortWebsiteDocuments: v.OptionalSchema<v.ObjectSchema<{
|
|
2111
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "domain", "is_active", "is_secure", "createdAt", "updatedAt"], undefined>, "domain">;
|
|
2112
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
2113
|
+
}, undefined>, {
|
|
2114
|
+
readonly key: "domain";
|
|
2115
|
+
readonly order: "ASC";
|
|
2116
|
+
}>;
|
|
2117
|
+
type SQuerySortWebsiteDocuments = v.InferOutput<typeof SQuerySortWebsiteDocuments>;
|
|
1962
2118
|
declare const SQueryListWebsiteDocuments: v.ObjectSchema<{
|
|
1963
2119
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1964
2120
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
@@ -1969,9 +2125,12 @@ declare const SQueryListWebsiteDocuments: v.ObjectSchema<{
|
|
|
1969
2125
|
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>;
|
|
1970
2126
|
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>;
|
|
1971
2127
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1972
|
-
readonly key: v.PicklistSchema<["id", "domain", "is_active", "is_secure", "createdAt", "updatedAt"], undefined>;
|
|
1973
|
-
readonly order: v.PicklistSchema<["
|
|
1974
|
-
}, undefined>,
|
|
2128
|
+
readonly key: v.SchemaWithFallback<v.PicklistSchema<["id", "domain", "is_active", "is_secure", "createdAt", "updatedAt"], undefined>, "domain">;
|
|
2129
|
+
readonly order: v.SchemaWithFallback<v.PicklistSchema<["ASC", "DESC"], undefined>, "ASC">;
|
|
2130
|
+
}, undefined>, {
|
|
2131
|
+
readonly key: "domain";
|
|
2132
|
+
readonly order: "ASC";
|
|
2133
|
+
}>;
|
|
1975
2134
|
}, undefined>;
|
|
1976
2135
|
type SQueryListWebsiteDocuments = v.InferOutput<typeof SQueryListWebsiteDocuments>;
|
|
1977
2136
|
declare const SCreateWebsiteDocument: v.ObjectSchema<{
|
|
@@ -5956,4 +6115,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
|
|
|
5956
6115
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5957
6116
|
declare const IsValidOrUndefinedUrlUtmId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
5958
6117
|
|
|
5959
|
-
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, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, 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, 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, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, 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 };
|
|
6118
|
+
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, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, 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, 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, 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 };
|