@joeygrable94/utm-src-pub-validators 0.0.51 → 0.0.53

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<{
@@ -467,11 +473,11 @@ declare const SUtmLinkBuilderTableForm: v.ObjectSchema<{
467
473
  }[] | undefined;
468
474
  }[], 10, "You can select up to 10 creative formats.">]>, undefined>;
469
475
  readonly id: v.OptionalSchema<v.ObjectSchema<{
476
+ 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">]>;
470
477
  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">]>;
471
478
  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: - _ .">]>;
472
479
  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>;
473
480
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
474
- 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">]>;
475
481
  readonly id: v.NumberSchema<undefined>;
476
482
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
477
483
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -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,14 @@ declare const SDeleteWebsiteDocument: v.ObjectSchema<{
1658
1830
  }, undefined>;
1659
1831
  type SDeleteWebsiteDocument = v.InferOutput<typeof SDeleteWebsiteDocument>;
1660
1832
 
1833
+ type SBaseDocument = {
1834
+ id: number;
1835
+ documentId: string;
1836
+ publishedAt?: string | null;
1837
+ createdAt: string;
1838
+ updatedAt: string;
1839
+ };
1840
+
1661
1841
  declare const SReadUserDocumentToken: v.ObjectSchema<{
1662
1842
  readonly token: v.StringSchema<undefined>;
1663
1843
  }, undefined>;
@@ -1797,11 +1977,11 @@ declare const SGroupRelationMediums: v.ObjectSchema<{
1797
1977
  }, undefined>;
1798
1978
  declare const SGroupRelationCampaignIds: v.ObjectSchema<{
1799
1979
  readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1980
+ 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">]>;
1800
1981
  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">]>;
1801
1982
  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: - _ .">]>;
1802
1983
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1803
1984
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1804
- 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">]>;
1805
1985
  readonly id: v.NumberSchema<undefined>;
1806
1986
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1807
1987
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -1969,11 +2149,11 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
1969
2149
  readonly updatedAt: v.StringSchema<undefined>;
1970
2150
  }, undefined>, undefined>, undefined>;
1971
2151
  readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2152
+ 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">]>;
1972
2153
  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">]>;
1973
2154
  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: - _ .">]>;
1974
2155
  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>;
1975
2156
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1976
- 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">]>;
1977
2157
  readonly id: v.NumberSchema<undefined>;
1978
2158
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1979
2159
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -2084,6 +2264,18 @@ declare const SGroupUserDocument: v.ObjectSchema<{
2084
2264
  }, undefined>;
2085
2265
 
2086
2266
  declare const SGroupUserRelationsDocument: v.ObjectSchema<{
2267
+ readonly user: v.OptionalSchema<v.ObjectSchema<{
2268
+ 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: - _ .">]>;
2269
+ 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">]>;
2270
+ readonly confirmed: v.BooleanSchema<undefined>;
2271
+ readonly blocked: v.BooleanSchema<undefined>;
2272
+ readonly provider: v.LiteralSchema<"local", undefined>;
2273
+ readonly id: v.NumberSchema<undefined>;
2274
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
2275
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2276
+ readonly createdAt: v.StringSchema<undefined>;
2277
+ readonly updatedAt: v.StringSchema<undefined>;
2278
+ }, undefined>, undefined>;
2087
2279
  readonly group: v.OptionalSchema<v.ObjectSchema<{
2088
2280
  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">]>;
2089
2281
  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: - _ .">]>;
@@ -2097,7 +2289,9 @@ declare const SGroupUserRelationsDocument: v.ObjectSchema<{
2097
2289
  readonly createdAt: v.StringSchema<undefined>;
2098
2290
  readonly updatedAt: v.StringSchema<undefined>;
2099
2291
  }, undefined>, undefined>;
2100
- readonly user: v.OptionalSchema<v.ObjectSchema<{
2292
+ }, undefined>;
2293
+ declare const SGroupUserRelationsReqDocument: v.ObjectSchema<{
2294
+ readonly user: v.ObjectSchema<{
2101
2295
  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: - _ .">]>;
2102
2296
  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">]>;
2103
2297
  readonly confirmed: v.BooleanSchema<undefined>;
@@ -2108,9 +2302,7 @@ declare const SGroupUserRelationsDocument: v.ObjectSchema<{
2108
2302
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2109
2303
  readonly createdAt: v.StringSchema<undefined>;
2110
2304
  readonly updatedAt: v.StringSchema<undefined>;
2111
- }, undefined>, undefined>;
2112
- }, undefined>;
2113
- declare const SGroupUserRelationsReqDocument: v.ObjectSchema<{
2305
+ }, undefined>;
2114
2306
  readonly group: v.ObjectSchema<{
2115
2307
  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">]>;
2116
2308
  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: - _ .">]>;
@@ -2124,18 +2316,6 @@ declare const SGroupUserRelationsReqDocument: v.ObjectSchema<{
2124
2316
  readonly createdAt: v.StringSchema<undefined>;
2125
2317
  readonly updatedAt: v.StringSchema<undefined>;
2126
2318
  }, undefined>;
2127
- readonly user: v.ObjectSchema<{
2128
- 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: - _ .">]>;
2129
- 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">]>;
2130
- readonly confirmed: v.BooleanSchema<undefined>;
2131
- readonly blocked: v.BooleanSchema<undefined>;
2132
- readonly provider: v.LiteralSchema<"local", undefined>;
2133
- readonly id: v.NumberSchema<undefined>;
2134
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
2135
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2136
- readonly createdAt: v.StringSchema<undefined>;
2137
- readonly updatedAt: v.StringSchema<undefined>;
2138
- }, undefined>;
2139
2319
  }, undefined>;
2140
2320
 
2141
2321
  declare const SBaseGroupUserDocument: v.ObjectSchema<{
@@ -2162,7 +2342,7 @@ declare const SRoleDocument: v.ObjectSchema<{
2162
2342
  }, undefined>;
2163
2343
 
2164
2344
  declare const SRoleRelationsDocument: v.ObjectSchema<{
2165
- readonly users: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2345
+ readonly user: v.OptionalSchema<v.ObjectSchema<{
2166
2346
  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: - _ .">]>;
2167
2347
  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">]>;
2168
2348
  readonly confirmed: v.BooleanSchema<undefined>;
@@ -2173,7 +2353,7 @@ declare const SRoleRelationsDocument: v.ObjectSchema<{
2173
2353
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2174
2354
  readonly createdAt: v.StringSchema<undefined>;
2175
2355
  readonly updatedAt: v.StringSchema<undefined>;
2176
- }, undefined>, undefined>, undefined>;
2356
+ }, undefined>, undefined>;
2177
2357
  }, undefined>;
2178
2358
 
2179
2359
  declare const SBaseRoleDocument: v.ObjectSchema<{
@@ -2188,14 +2368,6 @@ type SRoleDocumentOut = v.InferOutput<typeof SRoleDocument>;
2188
2368
  type SRoleRelationsDocumentIn = v.InferInput<typeof SRoleRelationsDocument>;
2189
2369
  type SRoleRelationsDocumentOut = v.InferOutput<typeof SRoleRelationsDocument>;
2190
2370
 
2191
- type SBaseDocument = {
2192
- id: number;
2193
- documentId: string;
2194
- publishedAt?: string | null;
2195
- createdAt: string;
2196
- updatedAt: string;
2197
- };
2198
-
2199
2371
  type MediaFormat = {
2200
2372
  ext: string;
2201
2373
  url: string;
@@ -2381,18 +2553,6 @@ declare const STrackingLinkDocument: v.ObjectSchema<{
2381
2553
  }, undefined>;
2382
2554
 
2383
2555
  declare const STrackingLinkRelationsDocument: v.ObjectSchema<{
2384
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
2385
- 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: - _ .">]>;
2386
- 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">]>;
2387
- readonly confirmed: v.BooleanSchema<undefined>;
2388
- readonly blocked: v.BooleanSchema<undefined>;
2389
- readonly provider: v.LiteralSchema<"local", undefined>;
2390
- readonly id: v.NumberSchema<undefined>;
2391
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
2392
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2393
- readonly createdAt: v.StringSchema<undefined>;
2394
- readonly updatedAt: v.StringSchema<undefined>;
2395
- }, undefined>, undefined>;
2396
2556
  readonly group: v.OptionalSchema<v.ObjectSchema<{
2397
2557
  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">]>;
2398
2558
  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: - _ .">]>;
@@ -2406,6 +2566,18 @@ declare const STrackingLinkRelationsDocument: v.ObjectSchema<{
2406
2566
  readonly createdAt: v.StringSchema<undefined>;
2407
2567
  readonly updatedAt: v.StringSchema<undefined>;
2408
2568
  }, undefined>, undefined>;
2569
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
2570
+ 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: - _ .">]>;
2571
+ 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">]>;
2572
+ readonly confirmed: v.BooleanSchema<undefined>;
2573
+ readonly blocked: v.BooleanSchema<undefined>;
2574
+ readonly provider: v.LiteralSchema<"local", undefined>;
2575
+ readonly id: v.NumberSchema<undefined>;
2576
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
2577
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2578
+ readonly createdAt: v.StringSchema<undefined>;
2579
+ readonly updatedAt: v.StringSchema<undefined>;
2580
+ }, undefined>, undefined>;
2409
2581
  }, undefined>;
2410
2582
 
2411
2583
  declare const SBaseTrackingLinkDocument: v.ObjectSchema<{
@@ -2652,11 +2824,11 @@ declare const SUserRelationMediums: v.ObjectSchema<{
2652
2824
  }, undefined>;
2653
2825
  declare const SUserRelationCampaignIds: v.ObjectSchema<{
2654
2826
  readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2827
+ 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">]>;
2655
2828
  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">]>;
2656
2829
  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: - _ .">]>;
2657
2830
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
2658
2831
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
2659
- 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">]>;
2660
2832
  readonly id: v.NumberSchema<undefined>;
2661
2833
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
2662
2834
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -2834,11 +3006,11 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
2834
3006
  readonly updatedAt: v.StringSchema<undefined>;
2835
3007
  }, undefined>, undefined>, undefined>;
2836
3008
  readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3009
+ 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">]>;
2837
3010
  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">]>;
2838
3011
  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: - _ .">]>;
2839
3012
  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>;
2840
3013
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
2841
- 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">]>;
2842
3014
  readonly id: v.NumberSchema<undefined>;
2843
3015
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
2844
3016
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -2912,7 +3084,18 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
2912
3084
  readonly createdAt: v.StringSchema<undefined>;
2913
3085
  readonly updatedAt: v.StringSchema<undefined>;
2914
3086
  }, undefined>, undefined>, undefined>;
2915
- readonly groups: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3087
+ readonly role: v.OptionalSchema<v.ObjectSchema<{
3088
+ readonly type: v.StringSchema<undefined>;
3089
+ readonly name: v.StringSchema<undefined>;
3090
+ readonly locale: v.StringSchema<undefined>;
3091
+ readonly description: v.StringSchema<undefined>;
3092
+ readonly id: v.NumberSchema<undefined>;
3093
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3094
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3095
+ readonly createdAt: v.StringSchema<undefined>;
3096
+ readonly updatedAt: v.StringSchema<undefined>;
3097
+ }, undefined>, undefined>;
3098
+ readonly group: v.OptionalSchema<v.ObjectSchema<{
2916
3099
  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">]>;
2917
3100
  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: - _ .">]>;
2918
3101
  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>;
@@ -2924,17 +3107,6 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
2924
3107
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2925
3108
  readonly createdAt: v.StringSchema<undefined>;
2926
3109
  readonly updatedAt: v.StringSchema<undefined>;
2927
- }, undefined>, undefined>, undefined>;
2928
- readonly role: v.OptionalSchema<v.ObjectSchema<{
2929
- readonly type: v.StringSchema<undefined>;
2930
- readonly name: v.StringSchema<undefined>;
2931
- readonly locale: v.StringSchema<undefined>;
2932
- readonly description: v.StringSchema<undefined>;
2933
- readonly id: v.NumberSchema<undefined>;
2934
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
2935
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2936
- readonly createdAt: v.StringSchema<undefined>;
2937
- readonly updatedAt: v.StringSchema<undefined>;
2938
3110
  }, undefined>, undefined>;
2939
3111
  }, undefined>;
2940
3112
 
@@ -3068,11 +3240,11 @@ type SUserLimitationsRelationsDocumentIn = v.InferInput<typeof SUserLimitationsR
3068
3240
  type SUserLimitationsRelationsDocumentOut = v.InferOutput<typeof SUserLimitationsRelationsDocument>;
3069
3241
 
3070
3242
  declare const SCampaignIdDocument: v.ObjectSchema<{
3243
+ 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">]>;
3071
3244
  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">]>;
3072
3245
  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: - _ .">]>;
3073
3246
  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>;
3074
3247
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3075
- 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">]>;
3076
3248
  readonly id: v.NumberSchema<undefined>;
3077
3249
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3078
3250
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -3180,18 +3352,6 @@ declare const STermDocument: v.ObjectSchema<{
3180
3352
  }, undefined>;
3181
3353
 
3182
3354
  declare const SCampaignIdRelationsDocument: v.ObjectSchema<{
3183
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
3184
- 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: - _ .">]>;
3185
- 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">]>;
3186
- readonly confirmed: v.BooleanSchema<undefined>;
3187
- readonly blocked: v.BooleanSchema<undefined>;
3188
- readonly provider: v.LiteralSchema<"local", undefined>;
3189
- readonly id: v.NumberSchema<undefined>;
3190
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3191
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3192
- readonly createdAt: v.StringSchema<undefined>;
3193
- readonly updatedAt: v.StringSchema<undefined>;
3194
- }, undefined>, undefined>;
3195
3355
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3196
3356
  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">]>;
3197
3357
  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: - _ .">]>;
@@ -3205,8 +3365,6 @@ declare const SCampaignIdRelationsDocument: v.ObjectSchema<{
3205
3365
  readonly createdAt: v.StringSchema<undefined>;
3206
3366
  readonly updatedAt: v.StringSchema<undefined>;
3207
3367
  }, undefined>, undefined>;
3208
- }, undefined>;
3209
- declare const SCampaignPhaseRelationsDocument: v.ObjectSchema<{
3210
3368
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3211
3369
  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: - _ .">]>;
3212
3370
  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">]>;
@@ -3219,6 +3377,8 @@ declare const SCampaignPhaseRelationsDocument: v.ObjectSchema<{
3219
3377
  readonly createdAt: v.StringSchema<undefined>;
3220
3378
  readonly updatedAt: v.StringSchema<undefined>;
3221
3379
  }, undefined>, undefined>;
3380
+ }, undefined>;
3381
+ declare const SCampaignPhaseRelationsDocument: v.ObjectSchema<{
3222
3382
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3223
3383
  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">]>;
3224
3384
  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: - _ .">]>;
@@ -3232,8 +3392,6 @@ declare const SCampaignPhaseRelationsDocument: v.ObjectSchema<{
3232
3392
  readonly createdAt: v.StringSchema<undefined>;
3233
3393
  readonly updatedAt: v.StringSchema<undefined>;
3234
3394
  }, undefined>, undefined>;
3235
- }, undefined>;
3236
- declare const SCampaignProductRelationsDocument: v.ObjectSchema<{
3237
3395
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3238
3396
  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: - _ .">]>;
3239
3397
  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">]>;
@@ -3246,6 +3404,8 @@ declare const SCampaignProductRelationsDocument: v.ObjectSchema<{
3246
3404
  readonly createdAt: v.StringSchema<undefined>;
3247
3405
  readonly updatedAt: v.StringSchema<undefined>;
3248
3406
  }, undefined>, undefined>;
3407
+ }, undefined>;
3408
+ declare const SCampaignProductRelationsDocument: v.ObjectSchema<{
3249
3409
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3250
3410
  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">]>;
3251
3411
  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: - _ .">]>;
@@ -3259,8 +3419,6 @@ declare const SCampaignProductRelationsDocument: v.ObjectSchema<{
3259
3419
  readonly createdAt: v.StringSchema<undefined>;
3260
3420
  readonly updatedAt: v.StringSchema<undefined>;
3261
3421
  }, undefined>, undefined>;
3262
- }, undefined>;
3263
- declare const SCampaignKeyRelationsDocument: v.ObjectSchema<{
3264
3422
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3265
3423
  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: - _ .">]>;
3266
3424
  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">]>;
@@ -3273,6 +3431,8 @@ declare const SCampaignKeyRelationsDocument: v.ObjectSchema<{
3273
3431
  readonly createdAt: v.StringSchema<undefined>;
3274
3432
  readonly updatedAt: v.StringSchema<undefined>;
3275
3433
  }, undefined>, undefined>;
3434
+ }, undefined>;
3435
+ declare const SCampaignKeyRelationsDocument: v.ObjectSchema<{
3276
3436
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3277
3437
  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">]>;
3278
3438
  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: - _ .">]>;
@@ -3286,8 +3446,6 @@ declare const SCampaignKeyRelationsDocument: v.ObjectSchema<{
3286
3446
  readonly createdAt: v.StringSchema<undefined>;
3287
3447
  readonly updatedAt: v.StringSchema<undefined>;
3288
3448
  }, undefined>, undefined>;
3289
- }, undefined>;
3290
- declare const SSourceRelationsDocument: v.ObjectSchema<{
3291
3449
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3292
3450
  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: - _ .">]>;
3293
3451
  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">]>;
@@ -3300,6 +3458,8 @@ declare const SSourceRelationsDocument: v.ObjectSchema<{
3300
3458
  readonly createdAt: v.StringSchema<undefined>;
3301
3459
  readonly updatedAt: v.StringSchema<undefined>;
3302
3460
  }, undefined>, undefined>;
3461
+ }, undefined>;
3462
+ declare const SSourceRelationsDocument: v.ObjectSchema<{
3303
3463
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3304
3464
  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">]>;
3305
3465
  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: - _ .">]>;
@@ -3313,8 +3473,6 @@ declare const SSourceRelationsDocument: v.ObjectSchema<{
3313
3473
  readonly createdAt: v.StringSchema<undefined>;
3314
3474
  readonly updatedAt: v.StringSchema<undefined>;
3315
3475
  }, undefined>, undefined>;
3316
- }, undefined>;
3317
- declare const SMediumRelationsDocument: v.ObjectSchema<{
3318
3476
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3319
3477
  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: - _ .">]>;
3320
3478
  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">]>;
@@ -3327,6 +3485,8 @@ declare const SMediumRelationsDocument: v.ObjectSchema<{
3327
3485
  readonly createdAt: v.StringSchema<undefined>;
3328
3486
  readonly updatedAt: v.StringSchema<undefined>;
3329
3487
  }, undefined>, undefined>;
3488
+ }, undefined>;
3489
+ declare const SMediumRelationsDocument: v.ObjectSchema<{
3330
3490
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3331
3491
  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">]>;
3332
3492
  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: - _ .">]>;
@@ -3340,8 +3500,6 @@ declare const SMediumRelationsDocument: v.ObjectSchema<{
3340
3500
  readonly createdAt: v.StringSchema<undefined>;
3341
3501
  readonly updatedAt: v.StringSchema<undefined>;
3342
3502
  }, undefined>, undefined>;
3343
- }, undefined>;
3344
- declare const SContentRelationsDocument: v.ObjectSchema<{
3345
3503
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3346
3504
  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: - _ .">]>;
3347
3505
  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">]>;
@@ -3354,6 +3512,8 @@ declare const SContentRelationsDocument: v.ObjectSchema<{
3354
3512
  readonly createdAt: v.StringSchema<undefined>;
3355
3513
  readonly updatedAt: v.StringSchema<undefined>;
3356
3514
  }, undefined>, undefined>;
3515
+ }, undefined>;
3516
+ declare const SContentRelationsDocument: v.ObjectSchema<{
3357
3517
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3358
3518
  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">]>;
3359
3519
  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: - _ .">]>;
@@ -3367,8 +3527,6 @@ declare const SContentRelationsDocument: v.ObjectSchema<{
3367
3527
  readonly createdAt: v.StringSchema<undefined>;
3368
3528
  readonly updatedAt: v.StringSchema<undefined>;
3369
3529
  }, undefined>, undefined>;
3370
- }, undefined>;
3371
- declare const SCreativeFormatRelationsDocument: v.ObjectSchema<{
3372
3530
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3373
3531
  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: - _ .">]>;
3374
3532
  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">]>;
@@ -3381,6 +3539,8 @@ declare const SCreativeFormatRelationsDocument: v.ObjectSchema<{
3381
3539
  readonly createdAt: v.StringSchema<undefined>;
3382
3540
  readonly updatedAt: v.StringSchema<undefined>;
3383
3541
  }, undefined>, undefined>;
3542
+ }, undefined>;
3543
+ declare const SCreativeFormatRelationsDocument: v.ObjectSchema<{
3384
3544
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3385
3545
  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">]>;
3386
3546
  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: - _ .">]>;
@@ -3394,8 +3554,6 @@ declare const SCreativeFormatRelationsDocument: v.ObjectSchema<{
3394
3554
  readonly createdAt: v.StringSchema<undefined>;
3395
3555
  readonly updatedAt: v.StringSchema<undefined>;
3396
3556
  }, undefined>, undefined>;
3397
- }, undefined>;
3398
- declare const SCreativeFormatVariantRelationsDocument: v.ObjectSchema<{
3399
3557
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3400
3558
  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: - _ .">]>;
3401
3559
  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">]>;
@@ -3408,6 +3566,8 @@ declare const SCreativeFormatVariantRelationsDocument: v.ObjectSchema<{
3408
3566
  readonly createdAt: v.StringSchema<undefined>;
3409
3567
  readonly updatedAt: v.StringSchema<undefined>;
3410
3568
  }, undefined>, undefined>;
3569
+ }, undefined>;
3570
+ declare const SCreativeFormatVariantRelationsDocument: v.ObjectSchema<{
3411
3571
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3412
3572
  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">]>;
3413
3573
  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: - _ .">]>;
@@ -3421,8 +3581,6 @@ declare const SCreativeFormatVariantRelationsDocument: v.ObjectSchema<{
3421
3581
  readonly createdAt: v.StringSchema<undefined>;
3422
3582
  readonly updatedAt: v.StringSchema<undefined>;
3423
3583
  }, undefined>, undefined>;
3424
- }, undefined>;
3425
- declare const STermRelationsDocument: v.ObjectSchema<{
3426
3584
  readonly creator: v.OptionalSchema<v.ObjectSchema<{
3427
3585
  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: - _ .">]>;
3428
3586
  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">]>;
@@ -3435,6 +3593,8 @@ declare const STermRelationsDocument: v.ObjectSchema<{
3435
3593
  readonly createdAt: v.StringSchema<undefined>;
3436
3594
  readonly updatedAt: v.StringSchema<undefined>;
3437
3595
  }, undefined>, undefined>;
3596
+ }, undefined>;
3597
+ declare const STermRelationsDocument: v.ObjectSchema<{
3438
3598
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3439
3599
  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">]>;
3440
3600
  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: - _ .">]>;
@@ -3448,14 +3608,26 @@ declare const STermRelationsDocument: v.ObjectSchema<{
3448
3608
  readonly createdAt: v.StringSchema<undefined>;
3449
3609
  readonly updatedAt: v.StringSchema<undefined>;
3450
3610
  }, undefined>, undefined>;
3611
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
3612
+ 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: - _ .">]>;
3613
+ 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">]>;
3614
+ readonly confirmed: v.BooleanSchema<undefined>;
3615
+ readonly blocked: v.BooleanSchema<undefined>;
3616
+ readonly provider: v.LiteralSchema<"local", undefined>;
3617
+ readonly id: v.NumberSchema<undefined>;
3618
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3619
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3620
+ readonly createdAt: v.StringSchema<undefined>;
3621
+ readonly updatedAt: v.StringSchema<undefined>;
3622
+ }, undefined>, undefined>;
3451
3623
  }, undefined>;
3452
3624
 
3453
3625
  declare const SBaseCampaignIdDocument: v.ObjectSchema<{
3626
+ readonly cost: v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>;
3454
3627
  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">]>;
3455
3628
  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: - _ .">]>;
3456
3629
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
3457
3630
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3458
- 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">]>;
3459
3631
  }, undefined>;
3460
3632
  declare const SBaseCampaignPhaseDocument: v.ObjectSchema<{
3461
3633
  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">]>;
@@ -3566,18 +3738,6 @@ declare const SWebsiteDocument: v.ObjectSchema<{
3566
3738
  }, undefined>;
3567
3739
 
3568
3740
  declare const SWebsiteRelationsDocument: v.ObjectSchema<{
3569
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
3570
- 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: - _ .">]>;
3571
- 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">]>;
3572
- readonly confirmed: v.BooleanSchema<undefined>;
3573
- readonly blocked: v.BooleanSchema<undefined>;
3574
- readonly provider: v.LiteralSchema<"local", undefined>;
3575
- readonly id: v.NumberSchema<undefined>;
3576
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3577
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3578
- readonly createdAt: v.StringSchema<undefined>;
3579
- readonly updatedAt: v.StringSchema<undefined>;
3580
- }, undefined>, undefined>;
3581
3741
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3582
3742
  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">]>;
3583
3743
  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: - _ .">]>;
@@ -3591,34 +3751,33 @@ declare const SWebsiteRelationsDocument: v.ObjectSchema<{
3591
3751
  readonly createdAt: v.StringSchema<undefined>;
3592
3752
  readonly updatedAt: v.StringSchema<undefined>;
3593
3753
  }, undefined>, undefined>;
3594
- }, undefined>;
3595
-
3596
- declare const SBaseWebsiteDocument: v.ObjectSchema<{
3597
- 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">]>;
3598
- 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>;
3599
- readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
3600
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3601
- }, undefined>;
3602
-
3603
- type SWebsiteDocumentIn = v.InferInput<typeof SWebsiteDocument>;
3604
- type SWebsiteDocumentOut = v.InferOutput<typeof SWebsiteDocument>;
3605
- type SWebsiteRelationsDocumentIn = v.InferInput<typeof SWebsiteRelationsDocument>;
3606
- type SWebsiteRelationsDocumentOut = v.InferOutput<typeof SWebsiteRelationsDocument>;
3607
-
3608
- declare const SGroupUserDocumentWithRelations: v.ObjectSchema<{
3609
- readonly group: v.OptionalSchema<v.ObjectSchema<{
3610
- 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">]>;
3611
- 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: - _ .">]>;
3612
- 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>;
3613
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3614
- readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
3615
- readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
3754
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
3755
+ 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: - _ .">]>;
3756
+ 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">]>;
3757
+ readonly confirmed: v.BooleanSchema<undefined>;
3758
+ readonly blocked: v.BooleanSchema<undefined>;
3759
+ readonly provider: v.LiteralSchema<"local", undefined>;
3616
3760
  readonly id: v.NumberSchema<undefined>;
3617
3761
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3618
3762
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3619
3763
  readonly createdAt: v.StringSchema<undefined>;
3620
3764
  readonly updatedAt: v.StringSchema<undefined>;
3621
3765
  }, undefined>, undefined>;
3766
+ }, undefined>;
3767
+
3768
+ declare const SBaseWebsiteDocument: v.ObjectSchema<{
3769
+ 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">]>;
3770
+ readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
3771
+ readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
3772
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3773
+ }, undefined>;
3774
+
3775
+ type SWebsiteDocumentIn = v.InferInput<typeof SWebsiteDocument>;
3776
+ type SWebsiteDocumentOut = v.InferOutput<typeof SWebsiteDocument>;
3777
+ type SWebsiteRelationsDocumentIn = v.InferInput<typeof SWebsiteRelationsDocument>;
3778
+ type SWebsiteRelationsDocumentOut = v.InferOutput<typeof SWebsiteRelationsDocument>;
3779
+
3780
+ declare const SGroupUserDocumentWithRelations: v.ObjectSchema<{
3622
3781
  readonly user: v.OptionalSchema<v.ObjectSchema<{
3623
3782
  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: - _ .">]>;
3624
3783
  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">]>;
@@ -3631,16 +3790,7 @@ declare const SGroupUserDocumentWithRelations: v.ObjectSchema<{
3631
3790
  readonly createdAt: v.StringSchema<undefined>;
3632
3791
  readonly updatedAt: v.StringSchema<undefined>;
3633
3792
  }, undefined>, undefined>;
3634
- 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">]>;
3635
- readonly id: v.NumberSchema<undefined>;
3636
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3637
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3638
- readonly createdAt: v.StringSchema<undefined>;
3639
- readonly updatedAt: v.StringSchema<undefined>;
3640
- }, undefined>;
3641
- type SGroupUserDocumentWithRelations = v.InferOutput<typeof SGroupUserDocumentWithRelations>;
3642
- declare const SGroupUserDocumentReqRelations: v.ObjectSchema<{
3643
- readonly group: v.ObjectSchema<{
3793
+ readonly group: v.OptionalSchema<v.ObjectSchema<{
3644
3794
  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">]>;
3645
3795
  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: - _ .">]>;
3646
3796
  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>;
@@ -3652,7 +3802,16 @@ declare const SGroupUserDocumentReqRelations: v.ObjectSchema<{
3652
3802
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3653
3803
  readonly createdAt: v.StringSchema<undefined>;
3654
3804
  readonly updatedAt: v.StringSchema<undefined>;
3655
- }, undefined>;
3805
+ }, undefined>, undefined>;
3806
+ 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">]>;
3807
+ readonly id: v.NumberSchema<undefined>;
3808
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3809
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3810
+ readonly createdAt: v.StringSchema<undefined>;
3811
+ readonly updatedAt: v.StringSchema<undefined>;
3812
+ }, undefined>;
3813
+ type SGroupUserDocumentWithRelations = v.InferOutput<typeof SGroupUserDocumentWithRelations>;
3814
+ declare const SGroupUserDocumentReqRelations: v.ObjectSchema<{
3656
3815
  readonly user: v.ObjectSchema<{
3657
3816
  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: - _ .">]>;
3658
3817
  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">]>;
@@ -3665,6 +3824,19 @@ declare const SGroupUserDocumentReqRelations: v.ObjectSchema<{
3665
3824
  readonly createdAt: v.StringSchema<undefined>;
3666
3825
  readonly updatedAt: v.StringSchema<undefined>;
3667
3826
  }, undefined>;
3827
+ readonly group: v.ObjectSchema<{
3828
+ 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">]>;
3829
+ 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: - _ .">]>;
3830
+ 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>;
3831
+ readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3832
+ readonly apply_value_to: v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>;
3833
+ readonly apply_value_as: v.PicklistSchema<readonly ["prefix", "suffix"], undefined>;
3834
+ readonly id: v.NumberSchema<undefined>;
3835
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3836
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3837
+ readonly createdAt: v.StringSchema<undefined>;
3838
+ readonly updatedAt: v.StringSchema<undefined>;
3839
+ }, undefined>;
3668
3840
  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">]>;
3669
3841
  readonly id: v.NumberSchema<undefined>;
3670
3842
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
@@ -3748,11 +3920,11 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
3748
3920
  readonly updatedAt: v.StringSchema<undefined>;
3749
3921
  }, undefined>, undefined>, undefined>;
3750
3922
  readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3923
+ 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">]>;
3751
3924
  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">]>;
3752
3925
  readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 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: - _ .">]>;
3753
3926
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
3754
3927
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3755
- 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">]>;
3756
3928
  readonly id: v.NumberSchema<undefined>;
3757
3929
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3758
3930
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -3852,7 +4024,7 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
3852
4024
  type SGroupDocumentWithRelations = v.InferOutput<typeof SGroupDocumentWithRelations>;
3853
4025
 
3854
4026
  declare const SRoleDocumentWithRelations: v.ObjectSchema<{
3855
- readonly users: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4027
+ readonly user: v.OptionalSchema<v.ObjectSchema<{
3856
4028
  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: - _ .">]>;
3857
4029
  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">]>;
3858
4030
  readonly confirmed: v.BooleanSchema<undefined>;
@@ -3863,7 +4035,7 @@ declare const SRoleDocumentWithRelations: v.ObjectSchema<{
3863
4035
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3864
4036
  readonly createdAt: v.StringSchema<undefined>;
3865
4037
  readonly updatedAt: v.StringSchema<undefined>;
3866
- }, undefined>, undefined>, undefined>;
4038
+ }, undefined>, undefined>;
3867
4039
  readonly type: v.StringSchema<undefined>;
3868
4040
  readonly name: v.StringSchema<undefined>;
3869
4041
  readonly locale: v.StringSchema<undefined>;
@@ -3877,18 +4049,6 @@ declare const SRoleDocumentWithRelations: v.ObjectSchema<{
3877
4049
  type SRoleDocumentWithRelations = v.InferOutput<typeof SRoleDocumentWithRelations>;
3878
4050
 
3879
4051
  declare const STrackingLinkDocumentWithRelations: v.ObjectSchema<{
3880
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
3881
- readonly username: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>;
3882
- readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 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">]>;
3883
- readonly confirmed: v.BooleanSchema<undefined>;
3884
- readonly blocked: v.BooleanSchema<undefined>;
3885
- readonly provider: v.LiteralSchema<"local", undefined>;
3886
- readonly id: v.NumberSchema<undefined>;
3887
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
3888
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3889
- readonly createdAt: v.StringSchema<undefined>;
3890
- readonly updatedAt: v.StringSchema<undefined>;
3891
- }, undefined>, undefined>;
3892
4052
  readonly group: v.OptionalSchema<v.ObjectSchema<{
3893
4053
  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">]>;
3894
4054
  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: - _ .">]>;
@@ -3902,6 +4062,18 @@ declare const STrackingLinkDocumentWithRelations: v.ObjectSchema<{
3902
4062
  readonly createdAt: v.StringSchema<undefined>;
3903
4063
  readonly updatedAt: v.StringSchema<undefined>;
3904
4064
  }, undefined>, undefined>;
4065
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4066
+ 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: - _ .">]>;
4067
+ 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">]>;
4068
+ readonly confirmed: v.BooleanSchema<undefined>;
4069
+ readonly blocked: v.BooleanSchema<undefined>;
4070
+ readonly provider: v.LiteralSchema<"local", undefined>;
4071
+ readonly id: v.NumberSchema<undefined>;
4072
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4073
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4074
+ readonly createdAt: v.StringSchema<undefined>;
4075
+ readonly updatedAt: v.StringSchema<undefined>;
4076
+ }, undefined>, undefined>;
3905
4077
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
3906
4078
  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">]>;
3907
4079
  readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
@@ -4091,11 +4263,11 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
4091
4263
  readonly updatedAt: v.StringSchema<undefined>;
4092
4264
  }, undefined>, undefined>, undefined>;
4093
4265
  readonly utm_ids: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4266
+ 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">]>;
4094
4267
  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">]>;
4095
4268
  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: - _ .">]>;
4096
4269
  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>;
4097
4270
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4098
- 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">]>;
4099
4271
  readonly id: v.NumberSchema<undefined>;
4100
4272
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4101
4273
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
@@ -4169,7 +4341,18 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
4169
4341
  readonly createdAt: v.StringSchema<undefined>;
4170
4342
  readonly updatedAt: v.StringSchema<undefined>;
4171
4343
  }, undefined>, undefined>, undefined>;
4172
- readonly groups: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4344
+ readonly role: v.OptionalSchema<v.ObjectSchema<{
4345
+ readonly type: v.StringSchema<undefined>;
4346
+ readonly name: v.StringSchema<undefined>;
4347
+ readonly locale: v.StringSchema<undefined>;
4348
+ readonly description: v.StringSchema<undefined>;
4349
+ readonly id: v.NumberSchema<undefined>;
4350
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4351
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4352
+ readonly createdAt: v.StringSchema<undefined>;
4353
+ readonly updatedAt: v.StringSchema<undefined>;
4354
+ }, undefined>, undefined>;
4355
+ readonly group: v.OptionalSchema<v.ObjectSchema<{
4173
4356
  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">]>;
4174
4357
  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: - _ .">]>;
4175
4358
  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>;
@@ -4181,17 +4364,6 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
4181
4364
  readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4182
4365
  readonly createdAt: v.StringSchema<undefined>;
4183
4366
  readonly updatedAt: v.StringSchema<undefined>;
4184
- }, undefined>, undefined>, undefined>;
4185
- readonly role: v.OptionalSchema<v.ObjectSchema<{
4186
- readonly type: v.StringSchema<undefined>;
4187
- readonly name: v.StringSchema<undefined>;
4188
- readonly locale: v.StringSchema<undefined>;
4189
- readonly description: v.StringSchema<undefined>;
4190
- readonly id: v.NumberSchema<undefined>;
4191
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4192
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4193
- readonly createdAt: v.StringSchema<undefined>;
4194
- readonly updatedAt: v.StringSchema<undefined>;
4195
4367
  }, undefined>, undefined>;
4196
4368
  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: - _ .">]>;
4197
4369
  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">]>;
@@ -4316,25 +4488,13 @@ declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
4316
4488
  readonly createdAt: v.StringSchema<undefined>;
4317
4489
  readonly updatedAt: v.StringSchema<undefined>;
4318
4490
  readonly SBaseCampaignIdDocument: v.ObjectSchema<{
4491
+ 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">]>;
4319
4492
  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">]>;
4320
4493
  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: - _ .">]>;
4321
4494
  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>;
4322
4495
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4323
- 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">]>;
4324
4496
  }, undefined>;
4325
4497
  readonly SCampaignIdRelationsDocument: v.ObjectSchema<{
4326
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4327
- 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: - _ .">]>;
4328
- 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">]>;
4329
- readonly confirmed: v.BooleanSchema<undefined>;
4330
- readonly blocked: v.BooleanSchema<undefined>;
4331
- readonly provider: v.LiteralSchema<"local", undefined>;
4332
- readonly id: v.NumberSchema<undefined>;
4333
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4334
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4335
- readonly createdAt: v.StringSchema<undefined>;
4336
- readonly updatedAt: v.StringSchema<undefined>;
4337
- }, undefined>, undefined>;
4338
4498
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4339
4499
  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">]>;
4340
4500
  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: - _ .">]>;
@@ -4348,6 +4508,18 @@ declare const SCampaignIdDocumentWithRelations: v.ObjectSchema<{
4348
4508
  readonly createdAt: v.StringSchema<undefined>;
4349
4509
  readonly updatedAt: v.StringSchema<undefined>;
4350
4510
  }, undefined>, undefined>;
4511
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4512
+ 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: - _ .">]>;
4513
+ 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">]>;
4514
+ readonly confirmed: v.BooleanSchema<undefined>;
4515
+ readonly blocked: v.BooleanSchema<undefined>;
4516
+ readonly provider: v.LiteralSchema<"local", undefined>;
4517
+ readonly id: v.NumberSchema<undefined>;
4518
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4519
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4520
+ readonly createdAt: v.StringSchema<undefined>;
4521
+ readonly updatedAt: v.StringSchema<undefined>;
4522
+ }, undefined>, undefined>;
4351
4523
  }, undefined>;
4352
4524
  }, undefined>;
4353
4525
  type SCampaignIdDocumentWithRelations = v.InferOutput<typeof SCampaignIdDocumentWithRelations>;
@@ -4364,18 +4536,6 @@ declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
4364
4536
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4365
4537
  }, undefined>;
4366
4538
  readonly SCampaignKeyRelationsDocument: v.ObjectSchema<{
4367
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4368
- 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: - _ .">]>;
4369
- 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">]>;
4370
- readonly confirmed: v.BooleanSchema<undefined>;
4371
- readonly blocked: v.BooleanSchema<undefined>;
4372
- readonly provider: v.LiteralSchema<"local", undefined>;
4373
- readonly id: v.NumberSchema<undefined>;
4374
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4375
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4376
- readonly createdAt: v.StringSchema<undefined>;
4377
- readonly updatedAt: v.StringSchema<undefined>;
4378
- }, undefined>, undefined>;
4379
4539
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4380
4540
  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">]>;
4381
4541
  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: - _ .">]>;
@@ -4389,6 +4549,18 @@ declare const SCampaignKeyDocumentWithRelations: v.ObjectSchema<{
4389
4549
  readonly createdAt: v.StringSchema<undefined>;
4390
4550
  readonly updatedAt: v.StringSchema<undefined>;
4391
4551
  }, undefined>, undefined>;
4552
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4553
+ 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: - _ .">]>;
4554
+ 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">]>;
4555
+ readonly confirmed: v.BooleanSchema<undefined>;
4556
+ readonly blocked: v.BooleanSchema<undefined>;
4557
+ readonly provider: v.LiteralSchema<"local", undefined>;
4558
+ readonly id: v.NumberSchema<undefined>;
4559
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4560
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4561
+ readonly createdAt: v.StringSchema<undefined>;
4562
+ readonly updatedAt: v.StringSchema<undefined>;
4563
+ }, undefined>, undefined>;
4392
4564
  }, undefined>;
4393
4565
  }, undefined>;
4394
4566
  type SCampaignKeyDocumentWithRelations = v.InferOutput<typeof SCampaignKeyDocumentWithRelations>;
@@ -4405,18 +4577,6 @@ declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
4405
4577
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4406
4578
  }, undefined>;
4407
4579
  readonly SCampaignPhaseRelationsDocument: v.ObjectSchema<{
4408
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4409
- 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: - _ .">]>;
4410
- 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">]>;
4411
- readonly confirmed: v.BooleanSchema<undefined>;
4412
- readonly blocked: v.BooleanSchema<undefined>;
4413
- readonly provider: v.LiteralSchema<"local", undefined>;
4414
- readonly id: v.NumberSchema<undefined>;
4415
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4416
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4417
- readonly createdAt: v.StringSchema<undefined>;
4418
- readonly updatedAt: v.StringSchema<undefined>;
4419
- }, undefined>, undefined>;
4420
4580
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4421
4581
  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">]>;
4422
4582
  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: - _ .">]>;
@@ -4430,6 +4590,18 @@ declare const SCampaignPhaseDocumentWithRelations: v.ObjectSchema<{
4430
4590
  readonly createdAt: v.StringSchema<undefined>;
4431
4591
  readonly updatedAt: v.StringSchema<undefined>;
4432
4592
  }, undefined>, undefined>;
4593
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4594
+ 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: - _ .">]>;
4595
+ 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">]>;
4596
+ readonly confirmed: v.BooleanSchema<undefined>;
4597
+ readonly blocked: v.BooleanSchema<undefined>;
4598
+ readonly provider: v.LiteralSchema<"local", undefined>;
4599
+ readonly id: v.NumberSchema<undefined>;
4600
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4601
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4602
+ readonly createdAt: v.StringSchema<undefined>;
4603
+ readonly updatedAt: v.StringSchema<undefined>;
4604
+ }, undefined>, undefined>;
4433
4605
  }, undefined>;
4434
4606
  }, undefined>;
4435
4607
  type SCampaignPhaseDocumentWithRelations = v.InferOutput<typeof SCampaignPhaseDocumentWithRelations>;
@@ -4446,18 +4618,6 @@ declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
4446
4618
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4447
4619
  }, undefined>;
4448
4620
  readonly SCampaignProductRelationsDocument: v.ObjectSchema<{
4449
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4450
- 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: - _ .">]>;
4451
- 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">]>;
4452
- readonly confirmed: v.BooleanSchema<undefined>;
4453
- readonly blocked: v.BooleanSchema<undefined>;
4454
- readonly provider: v.LiteralSchema<"local", undefined>;
4455
- readonly id: v.NumberSchema<undefined>;
4456
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4457
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4458
- readonly createdAt: v.StringSchema<undefined>;
4459
- readonly updatedAt: v.StringSchema<undefined>;
4460
- }, undefined>, undefined>;
4461
4621
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4462
4622
  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">]>;
4463
4623
  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: - _ .">]>;
@@ -4471,6 +4631,18 @@ declare const SCampaignProductDocumentWithRelations: v.ObjectSchema<{
4471
4631
  readonly createdAt: v.StringSchema<undefined>;
4472
4632
  readonly updatedAt: v.StringSchema<undefined>;
4473
4633
  }, undefined>, undefined>;
4634
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4635
+ 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: - _ .">]>;
4636
+ 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">]>;
4637
+ readonly confirmed: v.BooleanSchema<undefined>;
4638
+ readonly blocked: v.BooleanSchema<undefined>;
4639
+ readonly provider: v.LiteralSchema<"local", undefined>;
4640
+ readonly id: v.NumberSchema<undefined>;
4641
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4642
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4643
+ readonly createdAt: v.StringSchema<undefined>;
4644
+ readonly updatedAt: v.StringSchema<undefined>;
4645
+ }, undefined>, undefined>;
4474
4646
  }, undefined>;
4475
4647
  }, undefined>;
4476
4648
  type SCampaignProductDocumentWithRelations = v.InferOutput<typeof SCampaignProductDocumentWithRelations>;
@@ -4487,18 +4659,6 @@ declare const SSourceDocumentWithRelations: v.ObjectSchema<{
4487
4659
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4488
4660
  }, undefined>;
4489
4661
  readonly SSourceRelationsDocument: v.ObjectSchema<{
4490
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4491
- 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: - _ .">]>;
4492
- 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">]>;
4493
- readonly confirmed: v.BooleanSchema<undefined>;
4494
- readonly blocked: v.BooleanSchema<undefined>;
4495
- readonly provider: v.LiteralSchema<"local", undefined>;
4496
- readonly id: v.NumberSchema<undefined>;
4497
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4498
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4499
- readonly createdAt: v.StringSchema<undefined>;
4500
- readonly updatedAt: v.StringSchema<undefined>;
4501
- }, undefined>, undefined>;
4502
4662
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4503
4663
  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">]>;
4504
4664
  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: - _ .">]>;
@@ -4512,6 +4672,18 @@ declare const SSourceDocumentWithRelations: v.ObjectSchema<{
4512
4672
  readonly createdAt: v.StringSchema<undefined>;
4513
4673
  readonly updatedAt: v.StringSchema<undefined>;
4514
4674
  }, undefined>, undefined>;
4675
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4676
+ 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: - _ .">]>;
4677
+ 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">]>;
4678
+ readonly confirmed: v.BooleanSchema<undefined>;
4679
+ readonly blocked: v.BooleanSchema<undefined>;
4680
+ readonly provider: v.LiteralSchema<"local", undefined>;
4681
+ readonly id: v.NumberSchema<undefined>;
4682
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4683
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4684
+ readonly createdAt: v.StringSchema<undefined>;
4685
+ readonly updatedAt: v.StringSchema<undefined>;
4686
+ }, undefined>, undefined>;
4515
4687
  }, undefined>;
4516
4688
  }, undefined>;
4517
4689
  type SSourceDocumentWithRelations = v.InferOutput<typeof SSourceDocumentWithRelations>;
@@ -4528,18 +4700,6 @@ declare const SMediumDocumentWithRelations: v.ObjectSchema<{
4528
4700
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4529
4701
  }, undefined>;
4530
4702
  readonly SMediumRelationsDocument: v.ObjectSchema<{
4531
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4532
- 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: - _ .">]>;
4533
- 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">]>;
4534
- readonly confirmed: v.BooleanSchema<undefined>;
4535
- readonly blocked: v.BooleanSchema<undefined>;
4536
- readonly provider: v.LiteralSchema<"local", undefined>;
4537
- readonly id: v.NumberSchema<undefined>;
4538
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4539
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4540
- readonly createdAt: v.StringSchema<undefined>;
4541
- readonly updatedAt: v.StringSchema<undefined>;
4542
- }, undefined>, undefined>;
4543
4703
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4544
4704
  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">]>;
4545
4705
  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: - _ .">]>;
@@ -4553,6 +4713,18 @@ declare const SMediumDocumentWithRelations: v.ObjectSchema<{
4553
4713
  readonly createdAt: v.StringSchema<undefined>;
4554
4714
  readonly updatedAt: v.StringSchema<undefined>;
4555
4715
  }, undefined>, undefined>;
4716
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4717
+ 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: - _ .">]>;
4718
+ 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">]>;
4719
+ readonly confirmed: v.BooleanSchema<undefined>;
4720
+ readonly blocked: v.BooleanSchema<undefined>;
4721
+ readonly provider: v.LiteralSchema<"local", undefined>;
4722
+ readonly id: v.NumberSchema<undefined>;
4723
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4724
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4725
+ readonly createdAt: v.StringSchema<undefined>;
4726
+ readonly updatedAt: v.StringSchema<undefined>;
4727
+ }, undefined>, undefined>;
4556
4728
  }, undefined>;
4557
4729
  }, undefined>;
4558
4730
  type SMediumDocumentWithRelations = v.InferOutput<typeof SMediumDocumentWithRelations>;
@@ -4569,18 +4741,6 @@ declare const SContentDocumentWithRelations: v.ObjectSchema<{
4569
4741
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4570
4742
  }, undefined>;
4571
4743
  readonly SContentRelationsDocument: v.ObjectSchema<{
4572
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4573
- 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: - _ .">]>;
4574
- 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">]>;
4575
- readonly confirmed: v.BooleanSchema<undefined>;
4576
- readonly blocked: v.BooleanSchema<undefined>;
4577
- readonly provider: v.LiteralSchema<"local", undefined>;
4578
- readonly id: v.NumberSchema<undefined>;
4579
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4580
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4581
- readonly createdAt: v.StringSchema<undefined>;
4582
- readonly updatedAt: v.StringSchema<undefined>;
4583
- }, undefined>, undefined>;
4584
4744
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4585
4745
  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">]>;
4586
4746
  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: - _ .">]>;
@@ -4594,6 +4754,18 @@ declare const SContentDocumentWithRelations: v.ObjectSchema<{
4594
4754
  readonly createdAt: v.StringSchema<undefined>;
4595
4755
  readonly updatedAt: v.StringSchema<undefined>;
4596
4756
  }, undefined>, undefined>;
4757
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4758
+ 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: - _ .">]>;
4759
+ 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">]>;
4760
+ readonly confirmed: v.BooleanSchema<undefined>;
4761
+ readonly blocked: v.BooleanSchema<undefined>;
4762
+ readonly provider: v.LiteralSchema<"local", undefined>;
4763
+ readonly id: v.NumberSchema<undefined>;
4764
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4765
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4766
+ readonly createdAt: v.StringSchema<undefined>;
4767
+ readonly updatedAt: v.StringSchema<undefined>;
4768
+ }, undefined>, undefined>;
4597
4769
  }, undefined>;
4598
4770
  }, undefined>;
4599
4771
  type SContentDocumentWithRelations = v.InferOutput<typeof SContentDocumentWithRelations>;
@@ -4610,18 +4782,6 @@ declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
4610
4782
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4611
4783
  }, undefined>;
4612
4784
  readonly SCreativeFormatRelationsDocument: v.ObjectSchema<{
4613
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4614
- 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: - _ .">]>;
4615
- 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">]>;
4616
- readonly confirmed: v.BooleanSchema<undefined>;
4617
- readonly blocked: v.BooleanSchema<undefined>;
4618
- readonly provider: v.LiteralSchema<"local", undefined>;
4619
- readonly id: v.NumberSchema<undefined>;
4620
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4621
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4622
- readonly createdAt: v.StringSchema<undefined>;
4623
- readonly updatedAt: v.StringSchema<undefined>;
4624
- }, undefined>, undefined>;
4625
4785
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4626
4786
  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">]>;
4627
4787
  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: - _ .">]>;
@@ -4635,6 +4795,18 @@ declare const SCreativeFormatDocumentWithRelations: v.ObjectSchema<{
4635
4795
  readonly createdAt: v.StringSchema<undefined>;
4636
4796
  readonly updatedAt: v.StringSchema<undefined>;
4637
4797
  }, undefined>, undefined>;
4798
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4799
+ 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: - _ .">]>;
4800
+ 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">]>;
4801
+ readonly confirmed: v.BooleanSchema<undefined>;
4802
+ readonly blocked: v.BooleanSchema<undefined>;
4803
+ readonly provider: v.LiteralSchema<"local", undefined>;
4804
+ readonly id: v.NumberSchema<undefined>;
4805
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4806
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4807
+ readonly createdAt: v.StringSchema<undefined>;
4808
+ readonly updatedAt: v.StringSchema<undefined>;
4809
+ }, undefined>, undefined>;
4638
4810
  }, undefined>;
4639
4811
  }, undefined>;
4640
4812
  type SCreativeFormatDocumentWithRelations = v.InferOutput<typeof SCreativeFormatDocumentWithRelations>;
@@ -4651,18 +4823,6 @@ declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
4651
4823
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4652
4824
  }, undefined>;
4653
4825
  readonly SCreativeFormatVariantRelationsDocument: v.ObjectSchema<{
4654
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4655
- 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: - _ .">]>;
4656
- 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">]>;
4657
- readonly confirmed: v.BooleanSchema<undefined>;
4658
- readonly blocked: v.BooleanSchema<undefined>;
4659
- readonly provider: v.LiteralSchema<"local", undefined>;
4660
- readonly id: v.NumberSchema<undefined>;
4661
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4662
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4663
- readonly createdAt: v.StringSchema<undefined>;
4664
- readonly updatedAt: v.StringSchema<undefined>;
4665
- }, undefined>, undefined>;
4666
4826
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4667
4827
  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">]>;
4668
4828
  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: - _ .">]>;
@@ -4676,6 +4836,18 @@ declare const SCreativeFormatVariantDocumentWithRelations: v.ObjectSchema<{
4676
4836
  readonly createdAt: v.StringSchema<undefined>;
4677
4837
  readonly updatedAt: v.StringSchema<undefined>;
4678
4838
  }, undefined>, undefined>;
4839
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4840
+ 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: - _ .">]>;
4841
+ 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">]>;
4842
+ readonly confirmed: v.BooleanSchema<undefined>;
4843
+ readonly blocked: v.BooleanSchema<undefined>;
4844
+ readonly provider: v.LiteralSchema<"local", undefined>;
4845
+ readonly id: v.NumberSchema<undefined>;
4846
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4847
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4848
+ readonly createdAt: v.StringSchema<undefined>;
4849
+ readonly updatedAt: v.StringSchema<undefined>;
4850
+ }, undefined>, undefined>;
4679
4851
  }, undefined>;
4680
4852
  }, undefined>;
4681
4853
  type SCreativeFormatVariantDocumentWithRelations = v.InferOutput<typeof SCreativeFormatVariantDocumentWithRelations>;
@@ -4692,18 +4864,6 @@ declare const STermDocumentWithRelations: v.ObjectSchema<{
4692
4864
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
4693
4865
  }, undefined>;
4694
4866
  readonly STermRelationsDocument: v.ObjectSchema<{
4695
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4696
- 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: - _ .">]>;
4697
- 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">]>;
4698
- readonly confirmed: v.BooleanSchema<undefined>;
4699
- readonly blocked: v.BooleanSchema<undefined>;
4700
- readonly provider: v.LiteralSchema<"local", undefined>;
4701
- readonly id: v.NumberSchema<undefined>;
4702
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4703
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4704
- readonly createdAt: v.StringSchema<undefined>;
4705
- readonly updatedAt: v.StringSchema<undefined>;
4706
- }, undefined>, undefined>;
4707
4867
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4708
4868
  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">]>;
4709
4869
  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: - _ .">]>;
@@ -4717,23 +4877,23 @@ declare const STermDocumentWithRelations: v.ObjectSchema<{
4717
4877
  readonly createdAt: v.StringSchema<undefined>;
4718
4878
  readonly updatedAt: v.StringSchema<undefined>;
4719
4879
  }, undefined>, undefined>;
4880
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4881
+ 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: - _ .">]>;
4882
+ 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">]>;
4883
+ readonly confirmed: v.BooleanSchema<undefined>;
4884
+ readonly blocked: v.BooleanSchema<undefined>;
4885
+ readonly provider: v.LiteralSchema<"local", undefined>;
4886
+ readonly id: v.NumberSchema<undefined>;
4887
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4888
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4889
+ readonly createdAt: v.StringSchema<undefined>;
4890
+ readonly updatedAt: v.StringSchema<undefined>;
4891
+ }, undefined>, undefined>;
4720
4892
  }, undefined>;
4721
4893
  }, undefined>;
4722
4894
  type STermDocumentWithRelations = v.InferOutput<typeof STermDocumentWithRelations>;
4723
4895
 
4724
4896
  declare const SWebsiteDocumentWithRelations: v.ObjectSchema<{
4725
- readonly creator: v.OptionalSchema<v.ObjectSchema<{
4726
- 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: - _ .">]>;
4727
- 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">]>;
4728
- readonly confirmed: v.BooleanSchema<undefined>;
4729
- readonly blocked: v.BooleanSchema<undefined>;
4730
- readonly provider: v.LiteralSchema<"local", undefined>;
4731
- readonly id: v.NumberSchema<undefined>;
4732
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4733
- readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4734
- readonly createdAt: v.StringSchema<undefined>;
4735
- readonly updatedAt: v.StringSchema<undefined>;
4736
- }, undefined>, undefined>;
4737
4897
  readonly group: v.OptionalSchema<v.ObjectSchema<{
4738
4898
  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">]>;
4739
4899
  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: - _ .">]>;
@@ -4747,6 +4907,18 @@ declare const SWebsiteDocumentWithRelations: v.ObjectSchema<{
4747
4907
  readonly createdAt: v.StringSchema<undefined>;
4748
4908
  readonly updatedAt: v.StringSchema<undefined>;
4749
4909
  }, undefined>, undefined>;
4910
+ readonly creator: v.OptionalSchema<v.ObjectSchema<{
4911
+ 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: - _ .">]>;
4912
+ 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">]>;
4913
+ readonly confirmed: v.BooleanSchema<undefined>;
4914
+ readonly blocked: v.BooleanSchema<undefined>;
4915
+ readonly provider: v.LiteralSchema<"local", undefined>;
4916
+ readonly id: v.NumberSchema<undefined>;
4917
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
4918
+ readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4919
+ readonly createdAt: v.StringSchema<undefined>;
4920
+ readonly updatedAt: v.StringSchema<undefined>;
4921
+ }, undefined>, undefined>;
4750
4922
  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">]>;
4751
4923
  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>;
4752
4924
  readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
@@ -4759,6 +4931,613 @@ declare const SWebsiteDocumentWithRelations: v.ObjectSchema<{
4759
4931
  }, undefined>;
4760
4932
  type SWebsiteDocumentWithRelations = v.InferOutput<typeof SWebsiteDocumentWithRelations>;
4761
4933
 
4934
+ declare const default_sources: {
4935
+ readonly meta: {
4936
+ readonly label: "Meta (FB/IG)";
4937
+ readonly value: "meta";
4938
+ readonly description: "Content published to all Meta platforms: Facebook, Instagram";
4939
+ readonly is_active: true;
4940
+ };
4941
+ readonly facebook: {
4942
+ readonly label: "Facebook";
4943
+ readonly value: "meta_facebook";
4944
+ readonly description: "Content published exclusively on Facebook";
4945
+ readonly is_active: true;
4946
+ };
4947
+ readonly instagram: {
4948
+ readonly label: "Instagram";
4949
+ readonly value: "meta_instagram";
4950
+ readonly description: "Content published exclusively on Instagram";
4951
+ readonly is_active: true;
4952
+ };
4953
+ readonly tiktok: {
4954
+ readonly label: "TikTok";
4955
+ readonly value: "tiktok";
4956
+ readonly description: "Content published exclusively on TikTok";
4957
+ readonly is_active: true;
4958
+ };
4959
+ readonly twitter: {
4960
+ readonly label: "X/Twitter";
4961
+ readonly value: "twitter";
4962
+ readonly description: "Content for X.com formerly known as Twitter";
4963
+ readonly is_active: true;
4964
+ };
4965
+ readonly xcom: {
4966
+ readonly label: "X.com";
4967
+ readonly value: "x_twitter";
4968
+ readonly description: "Content published exclusively on X.com";
4969
+ readonly is_active: true;
4970
+ };
4971
+ readonly linkedin: {
4972
+ readonly label: "LinkedIn";
4973
+ readonly value: "linkedin";
4974
+ readonly description: "Content published exclusively on LinkedIn";
4975
+ readonly is_active: true;
4976
+ };
4977
+ readonly pinterest: {
4978
+ readonly label: "Pinterest";
4979
+ readonly value: "pinterest";
4980
+ readonly description: "Content published exclusively on Pinterest";
4981
+ readonly is_active: true;
4982
+ };
4983
+ readonly youtube: {
4984
+ readonly label: "YouTube";
4985
+ readonly value: "youtube";
4986
+ readonly description: "Content published exclusively on YouTube";
4987
+ readonly is_active: true;
4988
+ };
4989
+ readonly sms: {
4990
+ readonly label: "Text Message (SMS)";
4991
+ readonly value: "sms";
4992
+ readonly description: "Content published exclusively via Text Message (SMS)";
4993
+ readonly is_active: true;
4994
+ };
4995
+ readonly email: {
4996
+ readonly label: "Email";
4997
+ readonly value: "email";
4998
+ readonly description: "Content published exclusively via Email";
4999
+ readonly is_active: true;
5000
+ };
5001
+ readonly google: {
5002
+ readonly label: "Google Ads";
5003
+ readonly value: "google";
5004
+ readonly description: "Content published exclusively via Google Ads";
5005
+ readonly is_active: true;
5006
+ };
5007
+ readonly realtorcom: {
5008
+ readonly label: "Realtor.com";
5009
+ readonly value: "rdc";
5010
+ readonly description: "Content published exclusively on Realtor.com (RDC)";
5011
+ readonly is_active: true;
5012
+ };
5013
+ readonly zillow: {
5014
+ readonly label: "Zillow";
5015
+ readonly value: "zillow";
5016
+ readonly description: "Content published exclusively on Zillow";
5017
+ readonly is_active: true;
5018
+ };
5019
+ readonly bdx_nhs: {
5020
+ readonly label: "New Home Source (Zonda)";
5021
+ readonly value: "bdx_nhs";
5022
+ readonly description: "Content published exclusively on New Home Source";
5023
+ readonly is_active: true;
5024
+ };
5025
+ readonly yelp: {
5026
+ readonly label: "Yelp";
5027
+ readonly value: "yelp";
5028
+ readonly description: "Content published exclusively on Yelp";
5029
+ readonly is_active: true;
5030
+ };
5031
+ readonly qr_code: {
5032
+ readonly label: "QR Code";
5033
+ readonly value: "qr_code";
5034
+ readonly description: "Content published exclusively via a QR Code";
5035
+ readonly is_active: true;
5036
+ };
5037
+ readonly stackadapt: {
5038
+ readonly label: "StackAdapt";
5039
+ readonly value: "stackadapt";
5040
+ readonly description: "Content published exclusively via StackAdapt";
5041
+ readonly is_active: true;
5042
+ };
5043
+ readonly newswire: {
5044
+ readonly label: "Newswire";
5045
+ readonly value: "newswire";
5046
+ readonly description: "Content published exclusively via Newswire";
5047
+ readonly is_active: true;
5048
+ };
5049
+ readonly mobile_app: {
5050
+ readonly label: "Mobile App";
5051
+ readonly value: "mobile_app";
5052
+ readonly description: "Content published exclusively via a Mobile App";
5053
+ readonly is_active: true;
5054
+ };
5055
+ readonly referral: {
5056
+ readonly label: "Referral";
5057
+ readonly value: "referral";
5058
+ readonly description: "Content published exclusively via a Referral source";
5059
+ readonly is_active: true;
5060
+ };
5061
+ };
5062
+ type DefaultSourceKey = keyof typeof default_sources;
5063
+ type DefaultSourceValue = (typeof default_sources)[DefaultSourceKey];
5064
+ declare const default_mediums: {
5065
+ readonly social: {
5066
+ readonly label: "Organic Social";
5067
+ readonly value: "social";
5068
+ readonly description: "Organic social posts across all platforms";
5069
+ readonly is_active: true;
5070
+ };
5071
+ readonly paid_social: {
5072
+ readonly label: "Paid Social";
5073
+ readonly value: "paid_social";
5074
+ readonly description: "Any paid media on social platforms";
5075
+ readonly is_active: true;
5076
+ };
5077
+ readonly paid_search: {
5078
+ readonly label: "Paid Search";
5079
+ readonly value: "paid_search";
5080
+ readonly description: "Reserved for text-based ads on search platforms (google, bing, etc)";
5081
+ readonly is_active: true;
5082
+ };
5083
+ readonly paid_display: {
5084
+ readonly label: "Paid Display";
5085
+ readonly value: "paid_display";
5086
+ readonly description: "Any image-based ads through a paid media buying platform (excluding social)";
5087
+ readonly is_active: true;
5088
+ };
5089
+ readonly paid_video: {
5090
+ readonly label: "Paid Video";
5091
+ readonly value: "paid_video";
5092
+ readonly description: "Any video-based ads through a paid media buying platform (excluding social)";
5093
+ readonly is_active: true;
5094
+ };
5095
+ readonly paid_listing: {
5096
+ readonly label: "Paid Listing";
5097
+ readonly value: "paid_listing";
5098
+ readonly description: "Paid product listing on a ad/partner/affiliated website";
5099
+ readonly is_active: true;
5100
+ };
5101
+ readonly paid: {
5102
+ readonly label: "Paid";
5103
+ readonly value: "paid";
5104
+ readonly description: "Reserved for any other paid promotions that do not fit into the other categories";
5105
+ readonly is_active: true;
5106
+ };
5107
+ readonly blast: {
5108
+ readonly label: "Blast";
5109
+ readonly value: "blast";
5110
+ 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";
5111
+ readonly is_active: true;
5112
+ };
5113
+ readonly paid_blast: {
5114
+ readonly label: "Paid Blast";
5115
+ readonly value: "paid_blast";
5116
+ 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";
5117
+ readonly is_active: true;
5118
+ };
5119
+ readonly flow: {
5120
+ readonly label: "Flow";
5121
+ readonly value: "flow";
5122
+ 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";
5123
+ readonly is_active: true;
5124
+ };
5125
+ readonly signage: {
5126
+ readonly label: "Signage";
5127
+ readonly value: "signage";
5128
+ 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.";
5129
+ readonly is_active: true;
5130
+ };
5131
+ readonly content: {
5132
+ readonly label: "Content";
5133
+ readonly value: "content";
5134
+ readonly description: "Used for generic content mediums other than the mediums listed";
5135
+ readonly is_active: true;
5136
+ };
5137
+ readonly paid_ctv: {
5138
+ readonly label: "Connected TV";
5139
+ readonly value: "paid_ctv";
5140
+ readonly description: "Used for paid ads on TV, Streaming Providers or other Connected TV sources";
5141
+ readonly is_active: true;
5142
+ };
5143
+ readonly popup: {
5144
+ readonly label: "Popup";
5145
+ readonly value: "popup";
5146
+ readonly description: "Used only for popup content embedded on a website (owned or third party)";
5147
+ readonly is_active: true;
5148
+ };
5149
+ readonly press_release: {
5150
+ readonly label: "Press Release";
5151
+ readonly value: "press_release";
5152
+ readonly description: "Used for content related to a press release";
5153
+ readonly is_active: true;
5154
+ };
5155
+ };
5156
+ type DefaultMediumKey = keyof typeof default_mediums;
5157
+ type DefaultMediumValue = (typeof default_mediums)[DefaultMediumKey];
5158
+ declare const default_campaign_phases: {
5159
+ readonly brand: {
5160
+ readonly label: "Brand";
5161
+ readonly value: "brand";
5162
+ readonly description: "Company branded content";
5163
+ readonly is_active: true;
5164
+ };
5165
+ readonly p1: {
5166
+ readonly label: "Phase 1";
5167
+ readonly value: "p1";
5168
+ readonly description: "Interest list building";
5169
+ readonly is_active: true;
5170
+ };
5171
+ readonly p2: {
5172
+ readonly label: "Phase 2";
5173
+ readonly value: "p2";
5174
+ readonly description: "Pre-qual/pre-sale";
5175
+ readonly is_active: true;
5176
+ };
5177
+ readonly p3: {
5178
+ readonly label: "Phase 3";
5179
+ readonly value: "p3";
5180
+ readonly description: "Grand opening/now available";
5181
+ readonly is_active: true;
5182
+ };
5183
+ readonly p4: {
5184
+ readonly label: "Phase 4";
5185
+ readonly value: "p4";
5186
+ readonly description: "For sale/maintenance period";
5187
+ readonly is_active: true;
5188
+ };
5189
+ readonly p5: {
5190
+ readonly label: "Phase 5";
5191
+ readonly value: "p5";
5192
+ readonly description: "Final sale";
5193
+ readonly is_active: true;
5194
+ };
5195
+ };
5196
+ type DefaultCampaignPhaseKey = keyof typeof default_campaign_phases;
5197
+ type DefaultCampaignPhaseValue = (typeof default_campaign_phases)[DefaultCampaignPhaseKey];
5198
+ declare const default_contents: {
5199
+ readonly testimonial: {
5200
+ readonly label: "Testimonial";
5201
+ readonly value: "testimonial";
5202
+ readonly description: "Buyer telling story about their purchase experience";
5203
+ readonly is_active: true;
5204
+ };
5205
+ readonly agent: {
5206
+ readonly label: "Agent";
5207
+ readonly value: "agent";
5208
+ readonly description: "Salespeople on camera marketing their neighborhood";
5209
+ readonly is_active: true;
5210
+ };
5211
+ readonly education: {
5212
+ readonly label: "Education";
5213
+ readonly value: "education";
5214
+ readonly description: "Content that is to educate buyers on any variety of home buying process";
5215
+ readonly is_active: true;
5216
+ };
5217
+ readonly charity: {
5218
+ readonly label: "Charity";
5219
+ readonly value: "charity";
5220
+ readonly description: "Content related to any charitable efforts on behalf of builder";
5221
+ readonly is_active: true;
5222
+ };
5223
+ readonly recruitment: {
5224
+ readonly label: "Recruitment";
5225
+ readonly value: "recruitment";
5226
+ readonly description: "Content showcasing staff and culture to recruit future employees";
5227
+ readonly is_active: true;
5228
+ };
5229
+ readonly lifestyle: {
5230
+ readonly label: "Lifestyle";
5231
+ readonly value: "lifestyle";
5232
+ readonly description: "Content about the surrounding area and what it’s like to live in a place";
5233
+ readonly is_active: true;
5234
+ };
5235
+ readonly milestone: {
5236
+ readonly label: "Milestone";
5237
+ readonly value: "milestone";
5238
+ readonly description: "Benchmarks in the building process and life of a community";
5239
+ readonly is_active: true;
5240
+ };
5241
+ readonly trends: {
5242
+ readonly label: "Trends";
5243
+ readonly value: "trends";
5244
+ readonly description: "Content that is trending on social media";
5245
+ readonly is_active: true;
5246
+ };
5247
+ readonly brand: {
5248
+ readonly label: "Brand";
5249
+ readonly value: "brand";
5250
+ readonly description: "Content focused on client culture and mission and who they are";
5251
+ readonly is_active: true;
5252
+ };
5253
+ readonly events: {
5254
+ readonly label: "Events";
5255
+ readonly value: "events";
5256
+ readonly description: "Content about events like grand openings, phase releases, tours, parties, etc";
5257
+ readonly is_active: true;
5258
+ };
5259
+ readonly personalization: {
5260
+ readonly label: "Personalization";
5261
+ readonly value: "personalization";
5262
+ readonly description: "For personalized content";
5263
+ readonly is_active: true;
5264
+ };
5265
+ readonly tour_guide: {
5266
+ readonly label: "Tour Guide";
5267
+ readonly value: "tour_guide";
5268
+ readonly description: "Used for content that promotes touring a physical space";
5269
+ readonly is_active: true;
5270
+ };
5271
+ readonly product: {
5272
+ readonly label: "Product";
5273
+ readonly value: "product";
5274
+ readonly description: "Any content specifically about a product or sale item";
5275
+ readonly is_active: true;
5276
+ };
5277
+ readonly recipes: {
5278
+ readonly label: "Recipes";
5279
+ readonly value: "recipes";
5280
+ readonly description: "Content featuring recipes and cooking tips";
5281
+ readonly is_active: true;
5282
+ };
5283
+ readonly holiday: {
5284
+ readonly label: "Holiday";
5285
+ readonly value: "holiday";
5286
+ readonly description: "Content about national holidays";
5287
+ readonly is_active: true;
5288
+ };
5289
+ readonly culture: {
5290
+ readonly label: "Culture";
5291
+ readonly value: "culture";
5292
+ readonly description: "Content about our team, things we do, how we work together, our values";
5293
+ readonly is_active: true;
5294
+ };
5295
+ readonly our_work: {
5296
+ readonly label: "Our Work";
5297
+ readonly value: "our_work";
5298
+ readonly description: "Content about the work we do for our clients or ourselves, our thought process";
5299
+ readonly is_active: true;
5300
+ };
5301
+ readonly other: {
5302
+ readonly label: "Other";
5303
+ readonly value: "other";
5304
+ readonly description: "For other content not defined in by a specific content pillar";
5305
+ readonly is_active: true;
5306
+ };
5307
+ };
5308
+ type DefaultContentKey = keyof typeof default_contents;
5309
+ type DefaultContentValue = (typeof default_contents)[DefaultContentKey];
5310
+ declare const default_creative_formats: {
5311
+ readonly post: {
5312
+ readonly label: "Post";
5313
+ readonly value: "post";
5314
+ readonly description: "organic content post";
5315
+ readonly is_active: true;
5316
+ };
5317
+ readonly content: {
5318
+ readonly label: "Content";
5319
+ readonly value: "content";
5320
+ readonly description: "organic content or other content (not social post)";
5321
+ readonly is_active: true;
5322
+ };
5323
+ readonly reel: {
5324
+ readonly label: "Reel";
5325
+ readonly value: "reel";
5326
+ readonly description: "organic content for video reels";
5327
+ readonly is_active: true;
5328
+ };
5329
+ readonly reel_ad: {
5330
+ readonly label: "Reel Ad";
5331
+ readonly value: "reel_ad";
5332
+ readonly description: "paid media for video reel ads";
5333
+ readonly is_active: true;
5334
+ };
5335
+ readonly story_content: {
5336
+ readonly label: "Story";
5337
+ readonly value: "story_content";
5338
+ readonly description: "Ephemeral story content";
5339
+ readonly is_active: true;
5340
+ };
5341
+ readonly story_ad: {
5342
+ readonly label: "Story Ad";
5343
+ readonly value: "story_ad";
5344
+ readonly description: "Paid ephemeral story content";
5345
+ readonly is_active: true;
5346
+ };
5347
+ readonly listing: {
5348
+ readonly label: "Listing";
5349
+ readonly value: "listing";
5350
+ readonly description: "ad listing that blends into organic listings";
5351
+ readonly is_active: true;
5352
+ };
5353
+ readonly native: {
5354
+ readonly label: "Native Ad";
5355
+ readonly value: "native";
5356
+ readonly description: "Content that blends in with the native content on an affiliate website";
5357
+ readonly is_active: true;
5358
+ };
5359
+ readonly traffic: {
5360
+ readonly label: "Traffic";
5361
+ readonly value: "traffic_ad";
5362
+ readonly description: "For Ads designed to drive traffic to a specific destination";
5363
+ readonly is_active: true;
5364
+ };
5365
+ readonly darkpost: {
5366
+ readonly label: "Dark Post";
5367
+ readonly value: "darkpost";
5368
+ readonly description: "For Meta DarkPosts";
5369
+ readonly is_active: true;
5370
+ };
5371
+ readonly boost: {
5372
+ readonly label: "Boost";
5373
+ readonly value: "boost";
5374
+ readonly description: "For boosted content on social";
5375
+ readonly is_active: true;
5376
+ };
5377
+ readonly collection: {
5378
+ readonly label: "Collection Ad";
5379
+ readonly value: "collection";
5380
+ readonly description: "For Meta Collection Ads";
5381
+ readonly is_active: true;
5382
+ };
5383
+ readonly conversion: {
5384
+ readonly label: "Conversion Ad";
5385
+ readonly value: "conversion";
5386
+ readonly description: "For Meta Conversion Ads";
5387
+ readonly is_active: true;
5388
+ };
5389
+ readonly lead_ad: {
5390
+ readonly label: "Lead Ad";
5391
+ readonly value: "lead_ad";
5392
+ readonly description: "For Meta Lead Ads";
5393
+ readonly is_active: true;
5394
+ };
5395
+ readonly internal: {
5396
+ readonly label: "Internal";
5397
+ readonly value: "internal";
5398
+ readonly description: "Emails sent via an Internal CRM";
5399
+ readonly is_active: true;
5400
+ };
5401
+ readonly retargeting: {
5402
+ readonly label: "Retargeting";
5403
+ readonly value: "retargeting";
5404
+ readonly description: "Ad retargeted to a different audience than the original content";
5405
+ readonly is_active: true;
5406
+ };
5407
+ readonly profile: {
5408
+ readonly label: "Profile";
5409
+ readonly value: "profile";
5410
+ readonly description: "For links that are used on platform profile pages or SmartBio like profile referral sources";
5411
+ readonly is_active: true;
5412
+ };
5413
+ readonly sitelink: {
5414
+ readonly label: "Site Link";
5415
+ readonly value: "sitelink";
5416
+ readonly description: "For the additional links provided in a Google Search Ad.";
5417
+ readonly is_active: true;
5418
+ };
5419
+ readonly sponsored_ad: {
5420
+ readonly label: "Sponsored Ad";
5421
+ readonly value: "sponsored_ad";
5422
+ readonly description: "For LinkedIn Sponsored Ad posts.";
5423
+ readonly is_active: true;
5424
+ };
5425
+ };
5426
+ type DefaultCreativeFormatKey = keyof typeof default_creative_formats;
5427
+ type DefaultCreativeFormatValue = (typeof default_creative_formats)[DefaultCreativeFormatKey];
5428
+ declare const default_creative_format_variants: {
5429
+ readonly short_form: {
5430
+ readonly label: "Short Form Video";
5431
+ readonly value: "short_form";
5432
+ readonly description: "Short form video content";
5433
+ readonly is_active: true;
5434
+ };
5435
+ readonly long_form: {
5436
+ readonly label: "Long Form Video";
5437
+ readonly value: "long_form";
5438
+ readonly description: "Long form video content";
5439
+ readonly is_active: true;
5440
+ };
5441
+ readonly image: {
5442
+ readonly label: "Image";
5443
+ readonly value: "image";
5444
+ readonly description: "Content that rely on photography to convey a message";
5445
+ readonly is_active: true;
5446
+ };
5447
+ readonly gif: {
5448
+ readonly label: "GIF";
5449
+ readonly value: "gif";
5450
+ readonly description: "Content using an animated GIF";
5451
+ readonly is_active: true;
5452
+ };
5453
+ readonly text: {
5454
+ readonly label: "Text";
5455
+ readonly value: "text";
5456
+ readonly description: "Content that rely on typography/text to convey a message";
5457
+ readonly is_active: true;
5458
+ };
5459
+ readonly carousel: {
5460
+ readonly label: "Carousel";
5461
+ readonly value: "carousel";
5462
+ readonly description: "Content in a carousel or slideshow format";
5463
+ readonly is_active: true;
5464
+ };
5465
+ readonly people: {
5466
+ readonly label: "People";
5467
+ readonly value: "people";
5468
+ readonly description: "Content that uses humans/actors to convey a message";
5469
+ readonly is_active: true;
5470
+ };
5471
+ readonly faceless: {
5472
+ readonly label: "Faceless (No People)";
5473
+ readonly value: "faceless";
5474
+ readonly description: "Content with no people/human faces depicted";
5475
+ readonly is_active: true;
5476
+ };
5477
+ readonly popup: {
5478
+ readonly label: "Pop Up";
5479
+ readonly value: "popup";
5480
+ readonly description: "Website pop up content";
5481
+ readonly is_active: true;
5482
+ };
5483
+ readonly banner: {
5484
+ readonly label: "Banner";
5485
+ readonly value: "banner";
5486
+ readonly description: "Banner content on a website";
5487
+ readonly is_active: true;
5488
+ };
5489
+ readonly broker: {
5490
+ readonly label: "Broker";
5491
+ readonly value: "broker";
5492
+ readonly description: "Content created for brokers";
5493
+ readonly is_active: true;
5494
+ };
5495
+ readonly consumer: {
5496
+ readonly label: "Consumer";
5497
+ readonly value: "consumer";
5498
+ readonly description: "Content created for consumers";
5499
+ readonly is_active: true;
5500
+ };
5501
+ readonly redrop: {
5502
+ readonly label: "Redrop";
5503
+ readonly value: "redrop";
5504
+ readonly description: "Content that is re-dropped to the same audience";
5505
+ readonly is_active: true;
5506
+ };
5507
+ readonly variant_a: {
5508
+ readonly label: "Variant A";
5509
+ readonly value: "variant_a";
5510
+ readonly description: "Used for a/b testing and/or ad variant names.";
5511
+ readonly is_active: true;
5512
+ };
5513
+ readonly variant_b: {
5514
+ readonly label: "Variant B";
5515
+ readonly value: "variant_b";
5516
+ readonly description: "Used for a/b testing and/or ad variant names.";
5517
+ readonly is_active: true;
5518
+ };
5519
+ readonly variant_c: {
5520
+ readonly label: "Variant C";
5521
+ readonly value: "variant_c";
5522
+ readonly description: "Used for a/b testing and/or ad variant names.";
5523
+ readonly is_active: true;
5524
+ };
5525
+ readonly variant_d: {
5526
+ readonly label: "Variant D";
5527
+ readonly value: "variant_d";
5528
+ readonly description: "Used for a/b testing and/or ad variant names.";
5529
+ readonly is_active: true;
5530
+ };
5531
+ readonly client_creative: {
5532
+ readonly label: "Client Creative";
5533
+ readonly value: "client_creative";
5534
+ readonly description: "Creative content was provided by the client to use—not GC designed content.";
5535
+ readonly is_active: true;
5536
+ };
5537
+ };
5538
+ type DefaultCreativeFormatVariantKey = keyof typeof default_creative_format_variants;
5539
+ type DefaultCreativeFormatVariantValue = (typeof default_creative_format_variants)[DefaultCreativeFormatVariantKey];
5540
+
4762
5541
  declare function dateToday(): Date;
4763
5542
  declare function datePlusDays(today: Date, days?: number): Date;
4764
5543
 
@@ -4866,4 +5645,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
4866
5645
  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
5646
  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
5647
 
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 };
5648
+ 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, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, type 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, 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 };