@joeygrable94/utm-src-pub-validators 0.0.52 → 0.0.54

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.d.cts CHANGED
@@ -140,6 +140,12 @@ declare const SCreateGroupUserDocument: v.ObjectSchema<{
140
140
  readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<GroupEntityScope[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<GroupEntityScope[], 1, "you must provide at least one scope">, v.MaxLengthAction<GroupEntityScope[], number, "you cannot provide more scopes than available">]>;
141
141
  }, undefined>;
142
142
  type SCreateGroupUserDocument = v.InferOutput<typeof SCreateGroupUserDocument>;
143
+ declare const SCreateGroupUserAssignMultipleUsers: v.ObjectSchema<{
144
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
145
+ readonly user: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, "Please assign at least one user to this group">]>;
146
+ readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<GroupEntityScope[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<GroupEntityScope[], 1, "you must provide at least one scope">, v.MaxLengthAction<GroupEntityScope[], number, "you cannot provide more scopes than available">]>;
147
+ }, undefined>;
148
+ type SCreateGroupUserAssignMultipleUsers = v.InferOutput<typeof SCreateGroupUserAssignMultipleUsers>;
143
149
  declare const SCreateGroupUserDocumentRequest: v.ObjectSchema<{
144
150
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
145
151
  readonly data: v.ObjectSchema<{
@@ -540,6 +546,38 @@ declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
540
546
  readonly utm_id: 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: - _ .">]>;
541
547
  }, undefined>;
542
548
  type SCreateTrackingLinkDocument = v.InferOutput<typeof SCreateTrackingLinkDocument>;
549
+ declare const SCreateMultipleTrackingLinkDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
550
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
551
+ readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
552
+ readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
553
+ readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
554
+ readonly path: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url path">, v.TrimAction, v.MinLengthAction<string, 1, "the url path is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url path is too long, it must be 2038 characters or less">]>;
555
+ readonly query: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url query">, v.TrimAction, v.MinLengthAction<string, 1, "the url query is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url query is too long, it must be 2038 characters or less">]>;
556
+ readonly fragment: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url hash/fragment">, v.TrimAction, v.MinLengthAction<string, 1, "the url hash/fragment is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url hash/fragment is too long, it must be 2038 characters or less">]>;
557
+ readonly utm_source: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_source is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_source is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_source can only contain letters, numbers, and the special characters: - _ .">]>;
558
+ readonly utm_medium: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_medium is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_medium is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_medium can only contain letters, numbers, and the special characters: - _ .">]>;
559
+ readonly utm_campaign: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_campaign is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2024, "the utm_campaign is too long, it must be 2024 characters or less">, v.RegexAction<string, "utm_campaign can only contain letters, numbers, and the special characters: - _ .">]>;
560
+ readonly utm_creative_format: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_creative_format is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2017, "the utm_creative_format is too long, it must be 2017 characters or less">, v.RegexAction<string, "utm_creative_format can only contain letters, numbers, and the special characters: - _ .">]>;
561
+ readonly utm_content: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_content is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2025, "the utm_content is too long, it must be 2025 characters or less">, v.RegexAction<string, "utm_content can only contain letters, numbers, and the special characters: - _ .">]>;
562
+ readonly utm_term: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_term is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2028, "the utm_term is too long, it must be 2028 characters or less">, v.RegexAction<string, "utm_term can only contain letters, numbers, and the special characters: - _ .">]>;
563
+ readonly utm_id: 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: - _ .">]>;
564
+ }, undefined>, undefined>, v.MinLengthAction<{
565
+ is_active: boolean;
566
+ destination: string;
567
+ protocol: "http" | "https";
568
+ domain: string;
569
+ path: string;
570
+ query: string;
571
+ fragment: string;
572
+ utm_source: string;
573
+ utm_medium: string;
574
+ utm_campaign: string;
575
+ utm_creative_format: string;
576
+ utm_content: string;
577
+ utm_term: string;
578
+ utm_id: string;
579
+ }[], 1, "Please create at least one tracking link">]>;
580
+ type SCreateMultipleTrackingLinkDocuments = v.InferOutput<typeof SCreateMultipleTrackingLinkDocuments>;
543
581
  declare const SCreateTrackingLinkDocumentRequest: v.ObjectSchema<{
544
582
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
545
583
  readonly data: v.ObjectSchema<{
@@ -804,6 +842,20 @@ declare const SCreateCampaignIdDocument: v.ObjectSchema<{
804
842
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
805
843
  }, undefined>;
806
844
  type SCreateCampaignIdDocument = v.InferOutput<typeof SCreateCampaignIdDocument>;
845
+ declare const SCreateMultipleCampaignIdDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
846
+ readonly cost: v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>;
847
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
848
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
849
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
850
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
851
+ }, undefined>, undefined>, v.MinLengthAction<{
852
+ cost: number;
853
+ label: string;
854
+ value: string;
855
+ description: string | null;
856
+ is_active: boolean;
857
+ }[], 1, "At least one campaign ID is required">]>;
858
+ type SCreateMultipleCampaignIdDocuments = v.InferOutput<typeof SCreateMultipleCampaignIdDocuments>;
807
859
  declare const SCreateCampaignIdDocumentRequest: v.ObjectSchema<{
808
860
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
809
861
  readonly data: v.ObjectSchema<{
@@ -887,6 +939,18 @@ declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
887
939
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
888
940
  }, undefined>;
889
941
  type SCreateCampaignKeyDocument = v.InferOutput<typeof SCreateCampaignKeyDocument>;
942
+ declare const SCreateMultipleCampaignKeyDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
943
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
944
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
945
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
946
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
947
+ }, undefined>, undefined>, v.MinLengthAction<{
948
+ label: string;
949
+ value: string;
950
+ description: string | null;
951
+ is_active: boolean;
952
+ }[], 1, "At least one campaign key is required">]>;
953
+ type SCreateMultipleCampaignKeyDocuments = v.InferOutput<typeof SCreateMultipleCampaignKeyDocuments>;
890
954
  declare const SCreateCampaignKeyDocumentRequest: v.ObjectSchema<{
891
955
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
892
956
  readonly data: v.ObjectSchema<{
@@ -966,6 +1030,18 @@ declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
966
1030
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
967
1031
  }, undefined>;
968
1032
  type SCreateCampaignPhaseDocument = v.InferOutput<typeof SCreateCampaignPhaseDocument>;
1033
+ declare const SCreateMultipleCampaignPhaseDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1034
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
1035
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
1036
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1037
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1038
+ }, undefined>, undefined>, v.MinLengthAction<{
1039
+ label: string;
1040
+ value: string;
1041
+ description: string | null;
1042
+ is_active: boolean;
1043
+ }[], 1, "At least one campaign phase is required">]>;
1044
+ type SCreateMultipleCampaignPhaseDocuments = v.InferOutput<typeof SCreateMultipleCampaignPhaseDocuments>;
969
1045
  declare const SCreateCampaignPhaseDocumentRequest: v.ObjectSchema<{
970
1046
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
971
1047
  readonly data: v.ObjectSchema<{
@@ -1045,6 +1121,18 @@ declare const SCreateCampaignProductDocument: v.ObjectSchema<{
1045
1121
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1046
1122
  }, undefined>;
1047
1123
  type SCreateCampaignProductDocument = v.InferOutput<typeof SCreateCampaignProductDocument>;
1124
+ declare const SCreateMultipleCampaignProductDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1125
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
1126
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
1127
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1128
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1129
+ }, undefined>, undefined>, v.MinLengthAction<{
1130
+ label: string;
1131
+ value: string;
1132
+ description: string | null;
1133
+ is_active: boolean;
1134
+ }[], 1, "At least one campaign product is required">]>;
1135
+ type SCreateMultipleCampaignProductDocuments = v.InferOutput<typeof SCreateMultipleCampaignProductDocuments>;
1048
1136
  declare const SCreateCampaignProductDocumentRequest: v.ObjectSchema<{
1049
1137
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1050
1138
  readonly data: v.ObjectSchema<{
@@ -1124,6 +1212,18 @@ declare const SCreateContentDocument: v.ObjectSchema<{
1124
1212
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1125
1213
  }, undefined>;
1126
1214
  type SCreateContentDocument = v.InferOutput<typeof SCreateContentDocument>;
1215
+ declare const SCreateMultipleContentDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1216
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
1217
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
1218
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1219
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1220
+ }, undefined>, undefined>, v.MinLengthAction<{
1221
+ label: string;
1222
+ value: string;
1223
+ description: string | null;
1224
+ is_active: boolean;
1225
+ }[], 1, "At least one term is required">]>;
1226
+ type SCreateMultipleContentDocuments = v.InferOutput<typeof SCreateMultipleContentDocuments>;
1127
1227
  declare const SCreateContentDocumentRequest: v.ObjectSchema<{
1128
1228
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1129
1229
  readonly data: v.ObjectSchema<{
@@ -1203,6 +1303,18 @@ declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
1203
1303
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1204
1304
  }, undefined>;
1205
1305
  type SCreateCreativeFormatVariantDocument = v.InferOutput<typeof SCreateCreativeFormatVariantDocument>;
1306
+ declare const SCreateMultipleCreativeFormatVariantDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1307
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
1308
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
1309
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1310
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1311
+ }, undefined>, undefined>, v.MinLengthAction<{
1312
+ label: string;
1313
+ value: string;
1314
+ description: string | null;
1315
+ is_active: boolean;
1316
+ }[], 1, "At least one term is required">]>;
1317
+ type SCreateMultipleCreativeFormatVariantDocuments = v.InferOutput<typeof SCreateMultipleCreativeFormatVariantDocuments>;
1206
1318
  declare const SCreateCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
1207
1319
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1208
1320
  readonly data: v.ObjectSchema<{
@@ -1282,6 +1394,18 @@ declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
1282
1394
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1283
1395
  }, undefined>;
1284
1396
  type SCreateCreativeFormatDocument = v.InferOutput<typeof SCreateCreativeFormatDocument>;
1397
+ declare const SCreateMultipleCreativeFormatDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1398
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
1399
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
1400
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1401
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1402
+ }, undefined>, undefined>, v.MinLengthAction<{
1403
+ label: string;
1404
+ value: string;
1405
+ description: string | null;
1406
+ is_active: boolean;
1407
+ }[], 1, "At least one creative format is required">]>;
1408
+ type SCreateMultipleCreativeFormatDocuments = v.InferOutput<typeof SCreateMultipleCreativeFormatDocuments>;
1285
1409
  declare const SCreateCreativeFormatDocumentRequest: v.ObjectSchema<{
1286
1410
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1287
1411
  readonly data: v.ObjectSchema<{
@@ -1361,6 +1485,18 @@ declare const SCreateMediumDocument: v.ObjectSchema<{
1361
1485
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1362
1486
  }, undefined>;
1363
1487
  type SCreateMediumDocument = v.InferOutput<typeof SCreateMediumDocument>;
1488
+ declare const SCreateMultipleMediumDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1489
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
1490
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
1491
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1492
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1493
+ }, undefined>, undefined>, v.MinLengthAction<{
1494
+ label: string;
1495
+ value: string;
1496
+ description: string | null;
1497
+ is_active: boolean;
1498
+ }[], 1, "At least one medium is required">]>;
1499
+ type SCreateMultipleMediumDocuments = v.InferOutput<typeof SCreateMultipleMediumDocuments>;
1364
1500
  declare const SCreateMediumDocumentRequest: v.ObjectSchema<{
1365
1501
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1366
1502
  readonly data: v.ObjectSchema<{
@@ -1440,6 +1576,18 @@ declare const SCreateSourceDocument: v.ObjectSchema<{
1440
1576
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1441
1577
  }, undefined>;
1442
1578
  type SCreateSourceDocument = v.InferOutput<typeof SCreateSourceDocument>;
1579
+ declare const SCreateMultipleSourceDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1580
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
1581
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
1582
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1583
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1584
+ }, undefined>, undefined>, v.MinLengthAction<{
1585
+ label: string;
1586
+ value: string;
1587
+ description: string | null;
1588
+ is_active: boolean;
1589
+ }[], 1, "At least one source is required">]>;
1590
+ type SCreateMultipleSourceDocuments = v.InferOutput<typeof SCreateMultipleSourceDocuments>;
1443
1591
  declare const SCreateSourceDocumentRequest: v.ObjectSchema<{
1444
1592
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1445
1593
  readonly data: v.ObjectSchema<{
@@ -1519,6 +1667,18 @@ declare const SCreateTermDocument: v.ObjectSchema<{
1519
1667
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1520
1668
  }, undefined>;
1521
1669
  type SCreateTermDocument = v.InferOutput<typeof SCreateTermDocument>;
1670
+ declare const SCreateMultipleTermDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1671
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
1672
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
1673
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1674
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1675
+ }, undefined>, undefined>, v.MinLengthAction<{
1676
+ label: string;
1677
+ value: string;
1678
+ description: string | null;
1679
+ is_active: boolean;
1680
+ }[], 1, "At least one term is required">]>;
1681
+ type SCreateMultipleTermDocuments = v.InferOutput<typeof SCreateMultipleTermDocuments>;
1522
1682
  declare const SCreateTermDocumentRequest: v.ObjectSchema<{
1523
1683
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1524
1684
  readonly data: v.ObjectSchema<{
@@ -1598,6 +1758,18 @@ declare const SCreateWebsiteDocument: v.ObjectSchema<{
1598
1758
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1599
1759
  }, undefined>;
1600
1760
  type SCreateWebsiteDocument = v.InferOutput<typeof SCreateWebsiteDocument>;
1761
+ declare const SCreateMultipleWebsiteDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1762
+ readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
1763
+ readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
1764
+ readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
1765
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1766
+ }, undefined>, undefined>, v.MinLengthAction<{
1767
+ domain: string;
1768
+ description: string | null | undefined;
1769
+ is_secure: boolean;
1770
+ is_active: boolean;
1771
+ }[], 1, "At least one website is required">]>;
1772
+ type SCreateMultipleWebsiteDocuments = v.InferOutput<typeof SCreateMultipleWebsiteDocuments>;
1601
1773
  declare const SCreateWebsiteDocumentRequest: v.ObjectSchema<{
1602
1774
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1603
1775
  readonly data: v.ObjectSchema<{
@@ -1658,6 +1830,15 @@ declare const SDeleteWebsiteDocument: v.ObjectSchema<{
1658
1830
  }, undefined>;
1659
1831
  type SDeleteWebsiteDocument = v.InferOutput<typeof SDeleteWebsiteDocument>;
1660
1832
 
1833
+ declare const SBaseDocument: v.ObjectSchema<{
1834
+ readonly id: v.NumberSchema<undefined>;
1835
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1836
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1837
+ readonly createdAt: v.StringSchema<undefined>;
1838
+ readonly updatedAt: v.StringSchema<undefined>;
1839
+ }, undefined>;
1840
+ type SBaseDocument = v.InferOutput<typeof SBaseDocument>;
1841
+
1661
1842
  declare const SReadUserDocumentToken: v.ObjectSchema<{
1662
1843
  readonly token: v.StringSchema<undefined>;
1663
1844
  }, undefined>;
@@ -2188,14 +2369,6 @@ type SRoleDocumentOut = v.InferOutput<typeof SRoleDocument>;
2188
2369
  type SRoleRelationsDocumentIn = v.InferInput<typeof SRoleRelationsDocument>;
2189
2370
  type SRoleRelationsDocumentOut = v.InferOutput<typeof SRoleRelationsDocument>;
2190
2371
 
2191
- type SBaseDocument = {
2192
- id: number;
2193
- documentId: string;
2194
- publishedAt?: string | null;
2195
- createdAt: string;
2196
- updatedAt: string;
2197
- };
2198
-
2199
2372
  type MediaFormat = {
2200
2373
  ext: string;
2201
2374
  url: string;
@@ -3101,6 +3274,17 @@ declare const SCampaignProductDocument: v.ObjectSchema<{
3101
3274
  readonly createdAt: v.StringSchema<undefined>;
3102
3275
  readonly updatedAt: v.StringSchema<undefined>;
3103
3276
  }, undefined>;
3277
+ declare const SCampaignTargetDocument: v.ObjectSchema<{
3278
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
3279
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
3280
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
3281
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3282
+ readonly id: v.NumberSchema<undefined>;
3283
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3284
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3285
+ readonly createdAt: v.StringSchema<undefined>;
3286
+ readonly updatedAt: v.StringSchema<undefined>;
3287
+ }, undefined>;
3104
3288
  declare const SCampaignKeyDocument: v.ObjectSchema<{
3105
3289
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
3106
3290
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -3260,6 +3444,33 @@ declare const SCampaignProductRelationsDocument: v.ObjectSchema<{
3260
3444
  readonly updatedAt: v.StringSchema<undefined>;
3261
3445
  }, undefined>, undefined>;
3262
3446
  }, undefined>;
3447
+ declare const SCampaignTargetRelationsDocument: v.ObjectSchema<{
3448
+ readonly group: v.OptionalSchema<v.ObjectSchema<{
3449
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
3450
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
3451
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
3452
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3453
+ readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
3454
+ readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
3455
+ readonly id: v.NumberSchema<undefined>;
3456
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3457
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3458
+ readonly createdAt: v.StringSchema<undefined>;
3459
+ readonly updatedAt: v.StringSchema<undefined>;
3460
+ }, undefined>, undefined>;
3461
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
3462
+ readonly username: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>;
3463
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
3464
+ readonly confirmed: v.BooleanSchema<undefined>;
3465
+ readonly blocked: v.BooleanSchema<undefined>;
3466
+ readonly provider: v.LiteralSchema<"local", undefined>;
3467
+ readonly id: v.NumberSchema<undefined>;
3468
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3469
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3470
+ readonly createdAt: v.StringSchema<undefined>;
3471
+ readonly updatedAt: v.StringSchema<undefined>;
3472
+ }, undefined>, undefined>;
3473
+ }, undefined>;
3263
3474
  declare const SCampaignKeyRelationsDocument: v.ObjectSchema<{
3264
3475
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3265
3476
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
@@ -3469,6 +3680,12 @@ declare const SBaseCampaignProductDocument: v.ObjectSchema<{
3469
3680
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
3470
3681
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3471
3682
  }, undefined>;
3683
+ declare const SBaseCampaignTargetDocument: v.ObjectSchema<{
3684
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
3685
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
3686
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
3687
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3688
+ }, undefined>;
3472
3689
  declare const SBaseCampaignKeyDocument: v.ObjectSchema<{
3473
3690
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
3474
3691
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -3524,6 +3741,10 @@ type SCampaignProductDocumentIn = v.InferInput<typeof SCampaignProductDocument>;
3524
3741
  type SCampaignProductDocumentOut = v.InferOutput<typeof SCampaignProductDocument>;
3525
3742
  type SCampaignProductRelationsDocumentIn = v.InferInput<typeof SCampaignProductRelationsDocument>;
3526
3743
  type SCampaignProductRelationsDocumentOut = v.InferOutput<typeof SCampaignProductRelationsDocument>;
3744
+ type SCampaignTargetDocumentIn = v.InferInput<typeof SCampaignTargetDocument>;
3745
+ type SCampaignTargetDocumentOut = v.InferOutput<typeof SCampaignTargetDocument>;
3746
+ type SCampaignTargetRelationsDocumentIn = v.InferInput<typeof SCampaignTargetRelationsDocument>;
3747
+ type SCampaignTargetRelationsDocumentOut = v.InferOutput<typeof SCampaignTargetRelationsDocument>;
3527
3748
  type SCampaignKeyDocumentIn = v.InferInput<typeof SCampaignKeyDocument>;
3528
3749
  type SCampaignKeyDocumentOut = v.InferOutput<typeof SCampaignKeyDocument>;
3529
3750
  type SCampaignKeyRelationsDocumentIn = v.InferInput<typeof SCampaignKeyRelationsDocument>;
@@ -4310,11 +4531,6 @@ declare const SUserAuthorizationSuccessResponse: v.ObjectSchema<{
4310
4531
  type SUserAuthorizationSuccessResponse = v.InferOutput<typeof SUserAuthorizationSuccessResponse>;
4311
4532
 
4312
4533
  declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
4313
- readonly id: v.NumberSchema<undefined>;
4314
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4315
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4316
- readonly createdAt: v.StringSchema<undefined>;
4317
- readonly updatedAt: v.StringSchema<undefined>;
4318
4534
  readonly SBaseCampaignIdDocument: v.ObjectSchema<{
4319
4535
  readonly cost: v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>;
4320
4536
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
@@ -4349,21 +4565,62 @@ declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
4349
4565
  readonly updatedAt: v.StringSchema<undefined>;
4350
4566
  }, undefined>, undefined>;
4351
4567
  }, undefined>;
4568
+ readonly id: v.NumberSchema<undefined>;
4569
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4570
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4571
+ readonly createdAt: v.StringSchema<undefined>;
4572
+ readonly updatedAt: v.StringSchema<undefined>;
4352
4573
  }, undefined>;
4353
4574
  type SCampaignIdDocumentWithRelations = v.InferOutput<typeof SCampaignIdDocumentWithRelations>;
4354
- declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
4575
+ declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
4576
+ readonly SBaseCampaignPhaseDocument: v.ObjectSchema<{
4577
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4578
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
4579
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
4580
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4581
+ }, undefined>;
4582
+ readonly SCampaignPhaseRelationsDocument: v.ObjectSchema<{
4583
+ readonly group: v.OptionalSchema<v.ObjectSchema<{
4584
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4585
+ readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
4586
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
4587
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4588
+ readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
4589
+ readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
4590
+ readonly id: v.NumberSchema<undefined>;
4591
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4592
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4593
+ readonly createdAt: v.StringSchema<undefined>;
4594
+ readonly updatedAt: v.StringSchema<undefined>;
4595
+ }, undefined>, undefined>;
4596
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4597
+ readonly username: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>;
4598
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
4599
+ readonly confirmed: v.BooleanSchema<undefined>;
4600
+ readonly blocked: v.BooleanSchema<undefined>;
4601
+ readonly provider: v.LiteralSchema<"local", undefined>;
4602
+ readonly id: v.NumberSchema<undefined>;
4603
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4604
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4605
+ readonly createdAt: v.StringSchema<undefined>;
4606
+ readonly updatedAt: v.StringSchema<undefined>;
4607
+ }, undefined>, undefined>;
4608
+ }, undefined>;
4355
4609
  readonly id: v.NumberSchema<undefined>;
4356
4610
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4357
4611
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4358
4612
  readonly createdAt: v.StringSchema<undefined>;
4359
4613
  readonly updatedAt: v.StringSchema<undefined>;
4360
- readonly SBaseCampaignKeyDocument: v.ObjectSchema<{
4614
+ }, undefined>;
4615
+ type SCampaignPhaseDocumentWithRelations = v.InferOutput<typeof SCampaignPhaseDocumentWithRelations>;
4616
+ declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
4617
+ readonly SBaseCampaignProductDocument: v.ObjectSchema<{
4361
4618
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4362
4619
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
4363
4620
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
4364
4621
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4365
4622
  }, undefined>;
4366
- readonly SCampaignKeyRelationsDocument: v.ObjectSchema<{
4623
+ readonly SCampaignProductRelationsDocument: v.ObjectSchema<{
4367
4624
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4368
4625
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4369
4626
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4390,21 +4647,21 @@ declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
4390
4647
  readonly updatedAt: v.StringSchema<undefined>;
4391
4648
  }, undefined>, undefined>;
4392
4649
  }, undefined>;
4393
- }, undefined>;
4394
- type SCampaignKeyDocumentWithRelations = v.InferOutput<typeof SCampaignKeyDocumentWithRelations>;
4395
- declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
4396
4650
  readonly id: v.NumberSchema<undefined>;
4397
4651
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4398
4652
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4399
4653
  readonly createdAt: v.StringSchema<undefined>;
4400
4654
  readonly updatedAt: v.StringSchema<undefined>;
4401
- readonly SBaseCampaignPhaseDocument: v.ObjectSchema<{
4655
+ }, undefined>;
4656
+ type SCampaignProductDocumentWithRelations = v.InferOutput<typeof SCampaignProductDocumentWithRelations>;
4657
+ declare const SCampaignTargetDocumentWithRelations: v.ObjectSchema<{
4658
+ readonly SBaseCampaignTargetDocument: v.ObjectSchema<{
4402
4659
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4403
4660
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
4404
4661
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
4405
4662
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4406
4663
  }, undefined>;
4407
- readonly SCampaignPhaseRelationsDocument: v.ObjectSchema<{
4664
+ readonly SCampaignTargetRelationsDocument: v.ObjectSchema<{
4408
4665
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4409
4666
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4410
4667
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4431,21 +4688,21 @@ declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
4431
4688
  readonly updatedAt: v.StringSchema<undefined>;
4432
4689
  }, undefined>, undefined>;
4433
4690
  }, undefined>;
4434
- }, undefined>;
4435
- type SCampaignPhaseDocumentWithRelations = v.InferOutput<typeof SCampaignPhaseDocumentWithRelations>;
4436
- declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
4437
4691
  readonly id: v.NumberSchema<undefined>;
4438
4692
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4439
4693
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4440
4694
  readonly createdAt: v.StringSchema<undefined>;
4441
4695
  readonly updatedAt: v.StringSchema<undefined>;
4442
- readonly SBaseCampaignProductDocument: v.ObjectSchema<{
4696
+ }, undefined>;
4697
+ type SCampaignTargetDocumentWithRelations = v.InferOutput<typeof SCampaignTargetDocumentWithRelations>;
4698
+ declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
4699
+ readonly SBaseCampaignKeyDocument: v.ObjectSchema<{
4443
4700
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4444
4701
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
4445
4702
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
4446
4703
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4447
4704
  }, undefined>;
4448
- readonly SCampaignProductRelationsDocument: v.ObjectSchema<{
4705
+ readonly SCampaignKeyRelationsDocument: v.ObjectSchema<{
4449
4706
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4450
4707
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4451
4708
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4472,14 +4729,14 @@ declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
4472
4729
  readonly updatedAt: v.StringSchema<undefined>;
4473
4730
  }, undefined>, undefined>;
4474
4731
  }, undefined>;
4475
- }, undefined>;
4476
- type SCampaignProductDocumentWithRelations = v.InferOutput<typeof SCampaignProductDocumentWithRelations>;
4477
- declare const SSourceDocumentWithRelations: v.ObjectSchema<{
4478
4732
  readonly id: v.NumberSchema<undefined>;
4479
4733
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4480
4734
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4481
4735
  readonly createdAt: v.StringSchema<undefined>;
4482
4736
  readonly updatedAt: v.StringSchema<undefined>;
4737
+ }, undefined>;
4738
+ type SCampaignKeyDocumentWithRelations = v.InferOutput<typeof SCampaignKeyDocumentWithRelations>;
4739
+ declare const SSourceDocumentWithRelations: v.ObjectSchema<{
4483
4740
  readonly SBaseSourceDocument: v.ObjectSchema<{
4484
4741
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4485
4742
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4513,14 +4770,14 @@ declare const SSourceDocumentWithRelations: v.ObjectSchema<{
4513
4770
  readonly updatedAt: v.StringSchema<undefined>;
4514
4771
  }, undefined>, undefined>;
4515
4772
  }, undefined>;
4516
- }, undefined>;
4517
- type SSourceDocumentWithRelations = v.InferOutput<typeof SSourceDocumentWithRelations>;
4518
- declare const SMediumDocumentWithRelations: v.ObjectSchema<{
4519
4773
  readonly id: v.NumberSchema<undefined>;
4520
4774
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4521
4775
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4522
4776
  readonly createdAt: v.StringSchema<undefined>;
4523
4777
  readonly updatedAt: v.StringSchema<undefined>;
4778
+ }, undefined>;
4779
+ type SSourceDocumentWithRelations = v.InferOutput<typeof SSourceDocumentWithRelations>;
4780
+ declare const SMediumDocumentWithRelations: v.ObjectSchema<{
4524
4781
  readonly SBaseMediumDocument: v.ObjectSchema<{
4525
4782
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4526
4783
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4554,14 +4811,14 @@ declare const SMediumDocumentWithRelations: v.ObjectSchema<{
4554
4811
  readonly updatedAt: v.StringSchema<undefined>;
4555
4812
  }, undefined>, undefined>;
4556
4813
  }, undefined>;
4557
- }, undefined>;
4558
- type SMediumDocumentWithRelations = v.InferOutput<typeof SMediumDocumentWithRelations>;
4559
- declare const SContentDocumentWithRelations: v.ObjectSchema<{
4560
4814
  readonly id: v.NumberSchema<undefined>;
4561
4815
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4562
4816
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4563
4817
  readonly createdAt: v.StringSchema<undefined>;
4564
4818
  readonly updatedAt: v.StringSchema<undefined>;
4819
+ }, undefined>;
4820
+ type SMediumDocumentWithRelations = v.InferOutput<typeof SMediumDocumentWithRelations>;
4821
+ declare const SContentDocumentWithRelations: v.ObjectSchema<{
4565
4822
  readonly SBaseContentDocument: v.ObjectSchema<{
4566
4823
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4567
4824
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4595,14 +4852,14 @@ declare const SContentDocumentWithRelations: v.ObjectSchema<{
4595
4852
  readonly updatedAt: v.StringSchema<undefined>;
4596
4853
  }, undefined>, undefined>;
4597
4854
  }, undefined>;
4598
- }, undefined>;
4599
- type SContentDocumentWithRelations = v.InferOutput<typeof SContentDocumentWithRelations>;
4600
- declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
4601
4855
  readonly id: v.NumberSchema<undefined>;
4602
4856
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4603
4857
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4604
4858
  readonly createdAt: v.StringSchema<undefined>;
4605
4859
  readonly updatedAt: v.StringSchema<undefined>;
4860
+ }, undefined>;
4861
+ type SContentDocumentWithRelations = v.InferOutput<typeof SContentDocumentWithRelations>;
4862
+ declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
4606
4863
  readonly SBaseCreativeFormatDocument: v.ObjectSchema<{
4607
4864
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4608
4865
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4636,14 +4893,14 @@ declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
4636
4893
  readonly updatedAt: v.StringSchema<undefined>;
4637
4894
  }, undefined>, undefined>;
4638
4895
  }, undefined>;
4639
- }, undefined>;
4640
- type SCreativeFormatDocumentWithRelations = v.InferOutput<typeof SCreativeFormatDocumentWithRelations>;
4641
- declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
4642
4896
  readonly id: v.NumberSchema<undefined>;
4643
4897
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4644
4898
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4645
4899
  readonly createdAt: v.StringSchema<undefined>;
4646
4900
  readonly updatedAt: v.StringSchema<undefined>;
4901
+ }, undefined>;
4902
+ type SCreativeFormatDocumentWithRelations = v.InferOutput<typeof SCreativeFormatDocumentWithRelations>;
4903
+ declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
4647
4904
  readonly SBaseCreativeFormatVariantDocument: v.ObjectSchema<{
4648
4905
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4649
4906
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4677,14 +4934,14 @@ declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
4677
4934
  readonly updatedAt: v.StringSchema<undefined>;
4678
4935
  }, undefined>, undefined>;
4679
4936
  }, undefined>;
4680
- }, undefined>;
4681
- type SCreativeFormatVariantDocumentWithRelations = v.InferOutput<typeof SCreativeFormatVariantDocumentWithRelations>;
4682
- declare const STermDocumentWithRelations: v.ObjectSchema<{
4683
4937
  readonly id: v.NumberSchema<undefined>;
4684
4938
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4685
4939
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4686
4940
  readonly createdAt: v.StringSchema<undefined>;
4687
4941
  readonly updatedAt: v.StringSchema<undefined>;
4942
+ }, undefined>;
4943
+ type SCreativeFormatVariantDocumentWithRelations = v.InferOutput<typeof SCreativeFormatVariantDocumentWithRelations>;
4944
+ declare const STermDocumentWithRelations: v.ObjectSchema<{
4688
4945
  readonly SBaseTermDocument: v.ObjectSchema<{
4689
4946
  readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
4690
4947
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
@@ -4718,6 +4975,11 @@ declare const STermDocumentWithRelations: v.ObjectSchema<{
4718
4975
  readonly updatedAt: v.StringSchema<undefined>;
4719
4976
  }, undefined>, undefined>;
4720
4977
  }, undefined>;
4978
+ readonly id: v.NumberSchema<undefined>;
4979
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4980
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4981
+ readonly createdAt: v.StringSchema<undefined>;
4982
+ readonly updatedAt: v.StringSchema<undefined>;
4721
4983
  }, undefined>;
4722
4984
  type STermDocumentWithRelations = v.InferOutput<typeof STermDocumentWithRelations>;
4723
4985
 
@@ -4759,6 +5021,613 @@ declare const SWebsiteDocumentWithRelations: v.ObjectSchema<{
4759
5021
  }, undefined>;
4760
5022
  type SWebsiteDocumentWithRelations = v.InferOutput<typeof SWebsiteDocumentWithRelations>;
4761
5023
 
5024
+ declare const default_sources: {
5025
+ readonly meta: {
5026
+ readonly label: "Meta (FB/IG)";
5027
+ readonly value: "meta";
5028
+ readonly description: "Content published to all Meta platforms: Facebook, Instagram";
5029
+ readonly is_active: true;
5030
+ };
5031
+ readonly facebook: {
5032
+ readonly label: "Facebook";
5033
+ readonly value: "meta_facebook";
5034
+ readonly description: "Content published exclusively on Facebook";
5035
+ readonly is_active: true;
5036
+ };
5037
+ readonly instagram: {
5038
+ readonly label: "Instagram";
5039
+ readonly value: "meta_instagram";
5040
+ readonly description: "Content published exclusively on Instagram";
5041
+ readonly is_active: true;
5042
+ };
5043
+ readonly tiktok: {
5044
+ readonly label: "TikTok";
5045
+ readonly value: "tiktok";
5046
+ readonly description: "Content published exclusively on TikTok";
5047
+ readonly is_active: true;
5048
+ };
5049
+ readonly twitter: {
5050
+ readonly label: "X/Twitter";
5051
+ readonly value: "twitter";
5052
+ readonly description: "Content for X.com formerly known as Twitter";
5053
+ readonly is_active: true;
5054
+ };
5055
+ readonly xcom: {
5056
+ readonly label: "X.com";
5057
+ readonly value: "x_twitter";
5058
+ readonly description: "Content published exclusively on X.com";
5059
+ readonly is_active: true;
5060
+ };
5061
+ readonly linkedin: {
5062
+ readonly label: "LinkedIn";
5063
+ readonly value: "linkedin";
5064
+ readonly description: "Content published exclusively on LinkedIn";
5065
+ readonly is_active: true;
5066
+ };
5067
+ readonly pinterest: {
5068
+ readonly label: "Pinterest";
5069
+ readonly value: "pinterest";
5070
+ readonly description: "Content published exclusively on Pinterest";
5071
+ readonly is_active: true;
5072
+ };
5073
+ readonly youtube: {
5074
+ readonly label: "YouTube";
5075
+ readonly value: "youtube";
5076
+ readonly description: "Content published exclusively on YouTube";
5077
+ readonly is_active: true;
5078
+ };
5079
+ readonly sms: {
5080
+ readonly label: "Text Message (SMS)";
5081
+ readonly value: "sms";
5082
+ readonly description: "Content published exclusively via Text Message (SMS)";
5083
+ readonly is_active: true;
5084
+ };
5085
+ readonly email: {
5086
+ readonly label: "Email";
5087
+ readonly value: "email";
5088
+ readonly description: "Content published exclusively via Email";
5089
+ readonly is_active: true;
5090
+ };
5091
+ readonly google: {
5092
+ readonly label: "Google Ads";
5093
+ readonly value: "google";
5094
+ readonly description: "Content published exclusively via Google Ads";
5095
+ readonly is_active: true;
5096
+ };
5097
+ readonly realtorcom: {
5098
+ readonly label: "Realtor.com";
5099
+ readonly value: "rdc";
5100
+ readonly description: "Content published exclusively on Realtor.com (RDC)";
5101
+ readonly is_active: true;
5102
+ };
5103
+ readonly zillow: {
5104
+ readonly label: "Zillow";
5105
+ readonly value: "zillow";
5106
+ readonly description: "Content published exclusively on Zillow";
5107
+ readonly is_active: true;
5108
+ };
5109
+ readonly bdx_nhs: {
5110
+ readonly label: "New Home Source (Zonda)";
5111
+ readonly value: "bdx_nhs";
5112
+ readonly description: "Content published exclusively on New Home Source";
5113
+ readonly is_active: true;
5114
+ };
5115
+ readonly yelp: {
5116
+ readonly label: "Yelp";
5117
+ readonly value: "yelp";
5118
+ readonly description: "Content published exclusively on Yelp";
5119
+ readonly is_active: true;
5120
+ };
5121
+ readonly qr_code: {
5122
+ readonly label: "QR Code";
5123
+ readonly value: "qr_code";
5124
+ readonly description: "Content published exclusively via a QR Code";
5125
+ readonly is_active: true;
5126
+ };
5127
+ readonly stackadapt: {
5128
+ readonly label: "StackAdapt";
5129
+ readonly value: "stackadapt";
5130
+ readonly description: "Content published exclusively via StackAdapt";
5131
+ readonly is_active: true;
5132
+ };
5133
+ readonly newswire: {
5134
+ readonly label: "Newswire";
5135
+ readonly value: "newswire";
5136
+ readonly description: "Content published exclusively via Newswire";
5137
+ readonly is_active: true;
5138
+ };
5139
+ readonly mobile_app: {
5140
+ readonly label: "Mobile App";
5141
+ readonly value: "mobile_app";
5142
+ readonly description: "Content published exclusively via a Mobile App";
5143
+ readonly is_active: true;
5144
+ };
5145
+ readonly referral: {
5146
+ readonly label: "Referral";
5147
+ readonly value: "referral";
5148
+ readonly description: "Content published exclusively via a Referral source";
5149
+ readonly is_active: true;
5150
+ };
5151
+ };
5152
+ type DefaultSourceKey = keyof typeof default_sources;
5153
+ type DefaultSourceValue = (typeof default_sources)[DefaultSourceKey];
5154
+ declare const default_mediums: {
5155
+ readonly social: {
5156
+ readonly label: "Organic Social";
5157
+ readonly value: "social";
5158
+ readonly description: "Organic social posts across all platforms";
5159
+ readonly is_active: true;
5160
+ };
5161
+ readonly paid_social: {
5162
+ readonly label: "Paid Social";
5163
+ readonly value: "paid_social";
5164
+ readonly description: "Any paid media on social platforms";
5165
+ readonly is_active: true;
5166
+ };
5167
+ readonly paid_search: {
5168
+ readonly label: "Paid Search";
5169
+ readonly value: "paid_search";
5170
+ readonly description: "Reserved for text-based ads on search platforms (google, bing, etc)";
5171
+ readonly is_active: true;
5172
+ };
5173
+ readonly paid_display: {
5174
+ readonly label: "Paid Display";
5175
+ readonly value: "paid_display";
5176
+ readonly description: "Any image-based ads through a paid media buying platform (excluding social)";
5177
+ readonly is_active: true;
5178
+ };
5179
+ readonly paid_video: {
5180
+ readonly label: "Paid Video";
5181
+ readonly value: "paid_video";
5182
+ readonly description: "Any video-based ads through a paid media buying platform (excluding social)";
5183
+ readonly is_active: true;
5184
+ };
5185
+ readonly paid_listing: {
5186
+ readonly label: "Paid Listing";
5187
+ readonly value: "paid_listing";
5188
+ readonly description: "Paid product listing on a ad/partner/affiliated website";
5189
+ readonly is_active: true;
5190
+ };
5191
+ readonly paid: {
5192
+ readonly label: "Paid";
5193
+ readonly value: "paid";
5194
+ readonly description: "Reserved for any other paid promotions that do not fit into the other categories";
5195
+ readonly is_active: true;
5196
+ };
5197
+ readonly blast: {
5198
+ readonly label: "Blast";
5199
+ readonly value: "blast";
5200
+ readonly description: "Used when sending a piece of content through an OWNED media source (such as email or text) to an entire group of people all at once";
5201
+ readonly is_active: true;
5202
+ };
5203
+ readonly paid_blast: {
5204
+ readonly label: "Paid Blast";
5205
+ readonly value: "paid_blast";
5206
+ readonly description: "Used when sending a piece of content through a PAID media source (such as paid email lists or third-party text referral) to an entire group of people all at once";
5207
+ readonly is_active: true;
5208
+ };
5209
+ readonly flow: {
5210
+ readonly label: "Flow";
5211
+ readonly value: "flow";
5212
+ readonly description: "Used when sending a piece of content through an OWNED media source (such as email or text) to a single user as a part of a multi-touch drip campaign";
5213
+ readonly is_active: true;
5214
+ };
5215
+ readonly signage: {
5216
+ readonly label: "Signage";
5217
+ readonly value: "signage";
5218
+ readonly description: "Used when a user scans a QR code off of a sign, can add others here if we use QR codes on other content.";
5219
+ readonly is_active: true;
5220
+ };
5221
+ readonly content: {
5222
+ readonly label: "Content";
5223
+ readonly value: "content";
5224
+ readonly description: "Used for generic content mediums other than the mediums listed";
5225
+ readonly is_active: true;
5226
+ };
5227
+ readonly paid_ctv: {
5228
+ readonly label: "Connected TV";
5229
+ readonly value: "paid_ctv";
5230
+ readonly description: "Used for paid ads on TV, Streaming Providers or other Connected TV sources";
5231
+ readonly is_active: true;
5232
+ };
5233
+ readonly popup: {
5234
+ readonly label: "Popup";
5235
+ readonly value: "popup";
5236
+ readonly description: "Used only for popup content embedded on a website (owned or third party)";
5237
+ readonly is_active: true;
5238
+ };
5239
+ readonly press_release: {
5240
+ readonly label: "Press Release";
5241
+ readonly value: "press_release";
5242
+ readonly description: "Used for content related to a press release";
5243
+ readonly is_active: true;
5244
+ };
5245
+ };
5246
+ type DefaultMediumKey = keyof typeof default_mediums;
5247
+ type DefaultMediumValue = (typeof default_mediums)[DefaultMediumKey];
5248
+ declare const default_campaign_phases: {
5249
+ readonly brand: {
5250
+ readonly label: "Brand";
5251
+ readonly value: "brand";
5252
+ readonly description: "Company branded content";
5253
+ readonly is_active: true;
5254
+ };
5255
+ readonly p1: {
5256
+ readonly label: "Phase 1";
5257
+ readonly value: "p1";
5258
+ readonly description: "Interest list building";
5259
+ readonly is_active: true;
5260
+ };
5261
+ readonly p2: {
5262
+ readonly label: "Phase 2";
5263
+ readonly value: "p2";
5264
+ readonly description: "Pre-qual/pre-sale";
5265
+ readonly is_active: true;
5266
+ };
5267
+ readonly p3: {
5268
+ readonly label: "Phase 3";
5269
+ readonly value: "p3";
5270
+ readonly description: "Grand opening/now available";
5271
+ readonly is_active: true;
5272
+ };
5273
+ readonly p4: {
5274
+ readonly label: "Phase 4";
5275
+ readonly value: "p4";
5276
+ readonly description: "For sale/maintenance period";
5277
+ readonly is_active: true;
5278
+ };
5279
+ readonly p5: {
5280
+ readonly label: "Phase 5";
5281
+ readonly value: "p5";
5282
+ readonly description: "Final sale";
5283
+ readonly is_active: true;
5284
+ };
5285
+ };
5286
+ type DefaultCampaignPhaseKey = keyof typeof default_campaign_phases;
5287
+ type DefaultCampaignPhaseValue = (typeof default_campaign_phases)[DefaultCampaignPhaseKey];
5288
+ declare const default_contents: {
5289
+ readonly testimonial: {
5290
+ readonly label: "Testimonial";
5291
+ readonly value: "testimonial";
5292
+ readonly description: "Buyer telling story about their purchase experience";
5293
+ readonly is_active: true;
5294
+ };
5295
+ readonly agent: {
5296
+ readonly label: "Agent";
5297
+ readonly value: "agent";
5298
+ readonly description: "Salespeople on camera marketing their neighborhood";
5299
+ readonly is_active: true;
5300
+ };
5301
+ readonly education: {
5302
+ readonly label: "Education";
5303
+ readonly value: "education";
5304
+ readonly description: "Content that is to educate buyers on any variety of home buying process";
5305
+ readonly is_active: true;
5306
+ };
5307
+ readonly charity: {
5308
+ readonly label: "Charity";
5309
+ readonly value: "charity";
5310
+ readonly description: "Content related to any charitable efforts on behalf of builder";
5311
+ readonly is_active: true;
5312
+ };
5313
+ readonly recruitment: {
5314
+ readonly label: "Recruitment";
5315
+ readonly value: "recruitment";
5316
+ readonly description: "Content showcasing staff and culture to recruit future employees";
5317
+ readonly is_active: true;
5318
+ };
5319
+ readonly lifestyle: {
5320
+ readonly label: "Lifestyle";
5321
+ readonly value: "lifestyle";
5322
+ readonly description: "Content about the surrounding area and what it’s like to live in a place";
5323
+ readonly is_active: true;
5324
+ };
5325
+ readonly milestone: {
5326
+ readonly label: "Milestone";
5327
+ readonly value: "milestone";
5328
+ readonly description: "Benchmarks in the building process and life of a community";
5329
+ readonly is_active: true;
5330
+ };
5331
+ readonly trends: {
5332
+ readonly label: "Trends";
5333
+ readonly value: "trends";
5334
+ readonly description: "Content that is trending on social media";
5335
+ readonly is_active: true;
5336
+ };
5337
+ readonly brand: {
5338
+ readonly label: "Brand";
5339
+ readonly value: "brand";
5340
+ readonly description: "Content focused on client culture and mission and who they are";
5341
+ readonly is_active: true;
5342
+ };
5343
+ readonly events: {
5344
+ readonly label: "Events";
5345
+ readonly value: "events";
5346
+ readonly description: "Content about events like grand openings, phase releases, tours, parties, etc";
5347
+ readonly is_active: true;
5348
+ };
5349
+ readonly personalization: {
5350
+ readonly label: "Personalization";
5351
+ readonly value: "personalization";
5352
+ readonly description: "For personalized content";
5353
+ readonly is_active: true;
5354
+ };
5355
+ readonly tour_guide: {
5356
+ readonly label: "Tour Guide";
5357
+ readonly value: "tour_guide";
5358
+ readonly description: "Used for content that promotes touring a physical space";
5359
+ readonly is_active: true;
5360
+ };
5361
+ readonly product: {
5362
+ readonly label: "Product";
5363
+ readonly value: "product";
5364
+ readonly description: "Any content specifically about a product or sale item";
5365
+ readonly is_active: true;
5366
+ };
5367
+ readonly recipes: {
5368
+ readonly label: "Recipes";
5369
+ readonly value: "recipes";
5370
+ readonly description: "Content featuring recipes and cooking tips";
5371
+ readonly is_active: true;
5372
+ };
5373
+ readonly holiday: {
5374
+ readonly label: "Holiday";
5375
+ readonly value: "holiday";
5376
+ readonly description: "Content about national holidays";
5377
+ readonly is_active: true;
5378
+ };
5379
+ readonly culture: {
5380
+ readonly label: "Culture";
5381
+ readonly value: "culture";
5382
+ readonly description: "Content about our team, things we do, how we work together, our values";
5383
+ readonly is_active: true;
5384
+ };
5385
+ readonly our_work: {
5386
+ readonly label: "Our Work";
5387
+ readonly value: "our_work";
5388
+ readonly description: "Content about the work we do for our clients or ourselves, our thought process";
5389
+ readonly is_active: true;
5390
+ };
5391
+ readonly other: {
5392
+ readonly label: "Other";
5393
+ readonly value: "other";
5394
+ readonly description: "For other content not defined in by a specific content pillar";
5395
+ readonly is_active: true;
5396
+ };
5397
+ };
5398
+ type DefaultContentKey = keyof typeof default_contents;
5399
+ type DefaultContentValue = (typeof default_contents)[DefaultContentKey];
5400
+ declare const default_creative_formats: {
5401
+ readonly post: {
5402
+ readonly label: "Post";
5403
+ readonly value: "post";
5404
+ readonly description: "organic content post";
5405
+ readonly is_active: true;
5406
+ };
5407
+ readonly content: {
5408
+ readonly label: "Content";
5409
+ readonly value: "content";
5410
+ readonly description: "organic content or other content (not social post)";
5411
+ readonly is_active: true;
5412
+ };
5413
+ readonly reel: {
5414
+ readonly label: "Reel";
5415
+ readonly value: "reel";
5416
+ readonly description: "organic content for video reels";
5417
+ readonly is_active: true;
5418
+ };
5419
+ readonly reel_ad: {
5420
+ readonly label: "Reel Ad";
5421
+ readonly value: "reel_ad";
5422
+ readonly description: "paid media for video reel ads";
5423
+ readonly is_active: true;
5424
+ };
5425
+ readonly story_content: {
5426
+ readonly label: "Story";
5427
+ readonly value: "story_content";
5428
+ readonly description: "Ephemeral story content";
5429
+ readonly is_active: true;
5430
+ };
5431
+ readonly story_ad: {
5432
+ readonly label: "Story Ad";
5433
+ readonly value: "story_ad";
5434
+ readonly description: "Paid ephemeral story content";
5435
+ readonly is_active: true;
5436
+ };
5437
+ readonly listing: {
5438
+ readonly label: "Listing";
5439
+ readonly value: "listing";
5440
+ readonly description: "ad listing that blends into organic listings";
5441
+ readonly is_active: true;
5442
+ };
5443
+ readonly native: {
5444
+ readonly label: "Native Ad";
5445
+ readonly value: "native";
5446
+ readonly description: "Content that blends in with the native content on an affiliate website";
5447
+ readonly is_active: true;
5448
+ };
5449
+ readonly traffic: {
5450
+ readonly label: "Traffic";
5451
+ readonly value: "traffic_ad";
5452
+ readonly description: "For Ads designed to drive traffic to a specific destination";
5453
+ readonly is_active: true;
5454
+ };
5455
+ readonly darkpost: {
5456
+ readonly label: "Dark Post";
5457
+ readonly value: "darkpost";
5458
+ readonly description: "For Meta DarkPosts";
5459
+ readonly is_active: true;
5460
+ };
5461
+ readonly boost: {
5462
+ readonly label: "Boost";
5463
+ readonly value: "boost";
5464
+ readonly description: "For boosted content on social";
5465
+ readonly is_active: true;
5466
+ };
5467
+ readonly collection: {
5468
+ readonly label: "Collection Ad";
5469
+ readonly value: "collection";
5470
+ readonly description: "For Meta Collection Ads";
5471
+ readonly is_active: true;
5472
+ };
5473
+ readonly conversion: {
5474
+ readonly label: "Conversion Ad";
5475
+ readonly value: "conversion";
5476
+ readonly description: "For Meta Conversion Ads";
5477
+ readonly is_active: true;
5478
+ };
5479
+ readonly lead_ad: {
5480
+ readonly label: "Lead Ad";
5481
+ readonly value: "lead_ad";
5482
+ readonly description: "For Meta Lead Ads";
5483
+ readonly is_active: true;
5484
+ };
5485
+ readonly internal: {
5486
+ readonly label: "Internal";
5487
+ readonly value: "internal";
5488
+ readonly description: "Emails sent via an Internal CRM";
5489
+ readonly is_active: true;
5490
+ };
5491
+ readonly retargeting: {
5492
+ readonly label: "Retargeting";
5493
+ readonly value: "retargeting";
5494
+ readonly description: "Ad retargeted to a different audience than the original content";
5495
+ readonly is_active: true;
5496
+ };
5497
+ readonly profile: {
5498
+ readonly label: "Profile";
5499
+ readonly value: "profile";
5500
+ readonly description: "For links that are used on platform profile pages or SmartBio like profile referral sources";
5501
+ readonly is_active: true;
5502
+ };
5503
+ readonly sitelink: {
5504
+ readonly label: "Site Link";
5505
+ readonly value: "sitelink";
5506
+ readonly description: "For the additional links provided in a Google Search Ad.";
5507
+ readonly is_active: true;
5508
+ };
5509
+ readonly sponsored_ad: {
5510
+ readonly label: "Sponsored Ad";
5511
+ readonly value: "sponsored_ad";
5512
+ readonly description: "For LinkedIn Sponsored Ad posts.";
5513
+ readonly is_active: true;
5514
+ };
5515
+ };
5516
+ type DefaultCreativeFormatKey = keyof typeof default_creative_formats;
5517
+ type DefaultCreativeFormatValue = (typeof default_creative_formats)[DefaultCreativeFormatKey];
5518
+ declare const default_creative_format_variants: {
5519
+ readonly short_form: {
5520
+ readonly label: "Short Form Video";
5521
+ readonly value: "short_form";
5522
+ readonly description: "Short form video content";
5523
+ readonly is_active: true;
5524
+ };
5525
+ readonly long_form: {
5526
+ readonly label: "Long Form Video";
5527
+ readonly value: "long_form";
5528
+ readonly description: "Long form video content";
5529
+ readonly is_active: true;
5530
+ };
5531
+ readonly image: {
5532
+ readonly label: "Image";
5533
+ readonly value: "image";
5534
+ readonly description: "Content that rely on photography to convey a message";
5535
+ readonly is_active: true;
5536
+ };
5537
+ readonly gif: {
5538
+ readonly label: "GIF";
5539
+ readonly value: "gif";
5540
+ readonly description: "Content using an animated GIF";
5541
+ readonly is_active: true;
5542
+ };
5543
+ readonly text: {
5544
+ readonly label: "Text";
5545
+ readonly value: "text";
5546
+ readonly description: "Content that rely on typography/text to convey a message";
5547
+ readonly is_active: true;
5548
+ };
5549
+ readonly carousel: {
5550
+ readonly label: "Carousel";
5551
+ readonly value: "carousel";
5552
+ readonly description: "Content in a carousel or slideshow format";
5553
+ readonly is_active: true;
5554
+ };
5555
+ readonly people: {
5556
+ readonly label: "People";
5557
+ readonly value: "people";
5558
+ readonly description: "Content that uses humans/actors to convey a message";
5559
+ readonly is_active: true;
5560
+ };
5561
+ readonly faceless: {
5562
+ readonly label: "Faceless (No People)";
5563
+ readonly value: "faceless";
5564
+ readonly description: "Content with no people/human faces depicted";
5565
+ readonly is_active: true;
5566
+ };
5567
+ readonly popup: {
5568
+ readonly label: "Pop Up";
5569
+ readonly value: "popup";
5570
+ readonly description: "Website pop up content";
5571
+ readonly is_active: true;
5572
+ };
5573
+ readonly banner: {
5574
+ readonly label: "Banner";
5575
+ readonly value: "banner";
5576
+ readonly description: "Banner content on a website";
5577
+ readonly is_active: true;
5578
+ };
5579
+ readonly broker: {
5580
+ readonly label: "Broker";
5581
+ readonly value: "broker";
5582
+ readonly description: "Content created for brokers";
5583
+ readonly is_active: true;
5584
+ };
5585
+ readonly consumer: {
5586
+ readonly label: "Consumer";
5587
+ readonly value: "consumer";
5588
+ readonly description: "Content created for consumers";
5589
+ readonly is_active: true;
5590
+ };
5591
+ readonly redrop: {
5592
+ readonly label: "Redrop";
5593
+ readonly value: "redrop";
5594
+ readonly description: "Content that is re-dropped to the same audience";
5595
+ readonly is_active: true;
5596
+ };
5597
+ readonly variant_a: {
5598
+ readonly label: "Variant A";
5599
+ readonly value: "variant_a";
5600
+ readonly description: "Used for a/b testing and/or ad variant names.";
5601
+ readonly is_active: true;
5602
+ };
5603
+ readonly variant_b: {
5604
+ readonly label: "Variant B";
5605
+ readonly value: "variant_b";
5606
+ readonly description: "Used for a/b testing and/or ad variant names.";
5607
+ readonly is_active: true;
5608
+ };
5609
+ readonly variant_c: {
5610
+ readonly label: "Variant C";
5611
+ readonly value: "variant_c";
5612
+ readonly description: "Used for a/b testing and/or ad variant names.";
5613
+ readonly is_active: true;
5614
+ };
5615
+ readonly variant_d: {
5616
+ readonly label: "Variant D";
5617
+ readonly value: "variant_d";
5618
+ readonly description: "Used for a/b testing and/or ad variant names.";
5619
+ readonly is_active: true;
5620
+ };
5621
+ readonly client_creative: {
5622
+ readonly label: "Client Creative";
5623
+ readonly value: "client_creative";
5624
+ readonly description: "Creative content was provided by the client to use—not GC designed content.";
5625
+ readonly is_active: true;
5626
+ };
5627
+ };
5628
+ type DefaultCreativeFormatVariantKey = keyof typeof default_creative_format_variants;
5629
+ type DefaultCreativeFormatVariantValue = (typeof default_creative_format_variants)[DefaultCreativeFormatVariantKey];
5630
+
4762
5631
  declare function dateToday(): Date;
4763
5632
  declare function datePlusDays(today: Date, days?: number): Date;
4764
5633
 
@@ -4866,4 +5735,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
4866
5735
  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: - _ .">]>;
4867
5736
  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>;
4868
5737
 
4869
- 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, 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, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, 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_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_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, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, 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, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, 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, 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, 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, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, 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, 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, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, 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, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiErrorDetail, type StrapiErrorResponse, 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, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
5738
+ 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, 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, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, 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_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_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, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, 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, 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, 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, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, 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, 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, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, 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, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiErrorDetail, type StrapiErrorResponse, 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, default_campaign_phases, default_contents, default_creative_format_variants, default_creative_formats, default_mediums, default_sources, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };