@joeygrable94/utm-src-pub-validators 0.0.62 → 0.0.63

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
@@ -149,15 +149,6 @@ declare const SCreateGroupUserAssignMultipleUsers: v.ObjectSchema<{
149
149
  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">]>;
150
150
  }, undefined>;
151
151
  type SCreateGroupUserAssignMultipleUsers = v.InferOutput<typeof SCreateGroupUserAssignMultipleUsers>;
152
- declare const SCreateGroupUserDocumentRequest: v.ObjectSchema<{
153
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
154
- readonly data: v.ObjectSchema<{
155
- readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
156
- readonly user: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
157
- 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">]>;
158
- }, undefined>;
159
- }, undefined>;
160
- type SCreateGroupUserDocumentRequest = v.InferOutput<typeof SCreateGroupUserDocumentRequest>;
161
152
  declare const SReadGroupUserDocumentById: v.ObjectSchema<{
162
153
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
163
154
  }, undefined>;
@@ -591,26 +582,6 @@ declare const SCreateMultipleTrackingLinkDocuments: v.ObjectSchema<{
591
582
  }[], 1, "Please create at least one tracking link">]>;
592
583
  }, undefined>;
593
584
  type SCreateMultipleTrackingLinkDocuments = v.InferOutput<typeof SCreateMultipleTrackingLinkDocuments>;
594
- declare const SCreateTrackingLinkDocumentRequest: v.ObjectSchema<{
595
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
596
- readonly data: v.ObjectSchema<{
597
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
598
- 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">]>;
599
- readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
600
- 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">]>;
601
- 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">]>;
602
- 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">]>;
603
- 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">]>;
604
- 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: - _ .">]>;
605
- 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: - _ .">]>;
606
- 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: - _ .">]>;
607
- 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: - _ .">]>;
608
- 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: - _ .">]>;
609
- 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: - _ .">]>;
610
- 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: - _ .">]>;
611
- }, undefined>;
612
- }, undefined>;
613
- type SCreateTrackingLinkDocumentRequest = v.InferOutput<typeof SCreateTrackingLinkDocumentRequest>;
614
585
  declare const SReadTrackingLinkDocumentById: v.ObjectSchema<{
615
586
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
616
587
  }, undefined>;
@@ -862,6 +833,7 @@ declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
862
833
  }, undefined>;
863
834
  type SQueryListCampaignIdDocuments = v.InferOutput<typeof SQueryListCampaignIdDocuments>;
864
835
  declare const SCreateCampaignIdDocument: v.ObjectSchema<{
836
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
865
837
  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">]>;
866
838
  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">]>;
867
839
  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: - _ .">]>;
@@ -871,12 +843,14 @@ declare const SCreateCampaignIdDocument: v.ObjectSchema<{
871
843
  type SCreateCampaignIdDocument = v.InferOutput<typeof SCreateCampaignIdDocument>;
872
844
  declare const SCreateMultipleCampaignIdDocuments: v.ObjectSchema<{
873
845
  readonly campaign_ids: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
846
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
874
847
  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">]>;
875
848
  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">]>;
876
849
  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: - _ .">]>;
877
850
  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>;
878
851
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
879
852
  }, undefined>, undefined>, v.MinLengthAction<{
853
+ group: string;
880
854
  cost: number;
881
855
  label: string;
882
856
  value: string;
@@ -885,17 +859,6 @@ declare const SCreateMultipleCampaignIdDocuments: v.ObjectSchema<{
885
859
  }[], 1, "At least one campaign ID is required">]>;
886
860
  }, undefined>;
887
861
  type SCreateMultipleCampaignIdDocuments = v.InferOutput<typeof SCreateMultipleCampaignIdDocuments>;
888
- declare const SCreateCampaignIdDocumentRequest: v.ObjectSchema<{
889
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
890
- readonly data: v.ObjectSchema<{
891
- 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">]>;
892
- 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">]>;
893
- 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: - _ .">]>;
894
- 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>;
895
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
896
- }, undefined>;
897
- }, undefined>;
898
- type SCreateCampaignIdDocumentRequest = v.InferOutput<typeof SCreateCampaignIdDocumentRequest>;
899
862
  declare const SReadCampaignIdDocumentById: v.ObjectSchema<{
900
863
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
901
864
  }, undefined>;
@@ -967,6 +930,7 @@ declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
967
930
  }, undefined>;
968
931
  type SQueryListCampaignKeyDocuments = v.InferOutput<typeof SQueryListCampaignKeyDocuments>;
969
932
  declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
933
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
970
934
  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">]>;
971
935
  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: - _ .">]>;
972
936
  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>;
@@ -975,11 +939,13 @@ declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
975
939
  type SCreateCampaignKeyDocument = v.InferOutput<typeof SCreateCampaignKeyDocument>;
976
940
  declare const SCreateMultipleCampaignKeyDocuments: v.ObjectSchema<{
977
941
  readonly campaign_keys: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
942
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
978
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">]>;
979
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: - _ .">]>;
980
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>;
981
946
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
982
947
  }, undefined>, undefined>, v.MinLengthAction<{
948
+ group: string;
983
949
  label: string;
984
950
  value: string;
985
951
  description: string | null;
@@ -987,16 +953,6 @@ declare const SCreateMultipleCampaignKeyDocuments: v.ObjectSchema<{
987
953
  }[], 1, "At least one campaign key is required">]>;
988
954
  }, undefined>;
989
955
  type SCreateMultipleCampaignKeyDocuments = v.InferOutput<typeof SCreateMultipleCampaignKeyDocuments>;
990
- declare const SCreateCampaignKeyDocumentRequest: v.ObjectSchema<{
991
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
992
- readonly data: v.ObjectSchema<{
993
- 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">]>;
994
- 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: - _ .">]>;
995
- 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>;
996
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
997
- }, undefined>;
998
- }, undefined>;
999
- type SCreateCampaignKeyDocumentRequest = v.InferOutput<typeof SCreateCampaignKeyDocumentRequest>;
1000
956
  declare const SReadCampaignKeyDocumentById: v.ObjectSchema<{
1001
957
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1002
958
  }, undefined>;
@@ -1065,6 +1021,7 @@ declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
1065
1021
  }, undefined>;
1066
1022
  type SQueryListCampaignPhaseDocuments = v.InferOutput<typeof SQueryListCampaignPhaseDocuments>;
1067
1023
  declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
1024
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1068
1025
  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">]>;
1069
1026
  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: - _ .">]>;
1070
1027
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
@@ -1073,11 +1030,13 @@ declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
1073
1030
  type SCreateCampaignPhaseDocument = v.InferOutput<typeof SCreateCampaignPhaseDocument>;
1074
1031
  declare const SCreateMultipleCampaignPhaseDocuments: v.ObjectSchema<{
1075
1032
  readonly campaign_phases: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1033
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1076
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">]>;
1077
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: - _ .">]>;
1078
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>;
1079
1037
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1080
1038
  }, undefined>, undefined>, v.MinLengthAction<{
1039
+ group: string;
1081
1040
  label: string;
1082
1041
  value: string;
1083
1042
  description: string | null;
@@ -1085,16 +1044,6 @@ declare const SCreateMultipleCampaignPhaseDocuments: v.ObjectSchema<{
1085
1044
  }[], 1, "At least one campaign phase is required">]>;
1086
1045
  }, undefined>;
1087
1046
  type SCreateMultipleCampaignPhaseDocuments = v.InferOutput<typeof SCreateMultipleCampaignPhaseDocuments>;
1088
- declare const SCreateCampaignPhaseDocumentRequest: v.ObjectSchema<{
1089
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1090
- readonly data: v.ObjectSchema<{
1091
- 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">]>;
1092
- 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: - _ .">]>;
1093
- 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>;
1094
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1095
- }, undefined>;
1096
- }, undefined>;
1097
- type SCreateCampaignPhaseDocumentRequest = v.InferOutput<typeof SCreateCampaignPhaseDocumentRequest>;
1098
1047
  declare const SReadCampaignPhaseDocumentById: v.ObjectSchema<{
1099
1048
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1100
1049
  }, undefined>;
@@ -1163,6 +1112,7 @@ declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
1163
1112
  }, undefined>;
1164
1113
  type SQueryListCampaignProductDocuments = v.InferOutput<typeof SQueryListCampaignProductDocuments>;
1165
1114
  declare const SCreateCampaignProductDocument: v.ObjectSchema<{
1115
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1166
1116
  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">]>;
1167
1117
  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: - _ .">]>;
1168
1118
  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>;
@@ -1171,11 +1121,13 @@ declare const SCreateCampaignProductDocument: v.ObjectSchema<{
1171
1121
  type SCreateCampaignProductDocument = v.InferOutput<typeof SCreateCampaignProductDocument>;
1172
1122
  declare const SCreateMultipleCampaignProductDocuments: v.ObjectSchema<{
1173
1123
  readonly campaign_products: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1124
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1174
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">]>;
1175
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: - _ .">]>;
1176
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>;
1177
1128
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1178
1129
  }, undefined>, undefined>, v.MinLengthAction<{
1130
+ group: string;
1179
1131
  label: string;
1180
1132
  value: string;
1181
1133
  description: string | null;
@@ -1183,16 +1135,6 @@ declare const SCreateMultipleCampaignProductDocuments: v.ObjectSchema<{
1183
1135
  }[], 1, "At least one campaign product is required">]>;
1184
1136
  }, undefined>;
1185
1137
  type SCreateMultipleCampaignProductDocuments = v.InferOutput<typeof SCreateMultipleCampaignProductDocuments>;
1186
- declare const SCreateCampaignProductDocumentRequest: v.ObjectSchema<{
1187
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1188
- readonly data: v.ObjectSchema<{
1189
- 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">]>;
1190
- 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: - _ .">]>;
1191
- 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>;
1192
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1193
- }, undefined>;
1194
- }, undefined>;
1195
- type SCreateCampaignProductDocumentRequest = v.InferOutput<typeof SCreateCampaignProductDocumentRequest>;
1196
1138
  declare const SReadCampaignProductDocumentById: v.ObjectSchema<{
1197
1139
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1198
1140
  }, undefined>;
@@ -1261,6 +1203,7 @@ declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
1261
1203
  }, undefined>;
1262
1204
  type SQueryListCampaignTargetDocuments = v.InferOutput<typeof SQueryListCampaignTargetDocuments>;
1263
1205
  declare const SCreateCampaignTargetDocument: v.ObjectSchema<{
1206
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1264
1207
  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">]>;
1265
1208
  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: - _ .">]>;
1266
1209
  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>;
@@ -1269,11 +1212,13 @@ declare const SCreateCampaignTargetDocument: v.ObjectSchema<{
1269
1212
  type SCreateCampaignTargetDocument = v.InferOutput<typeof SCreateCampaignTargetDocument>;
1270
1213
  declare const SCreateMultipleCampaignTargetDocuments: v.ObjectSchema<{
1271
1214
  readonly campaign_targets: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1215
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1272
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">]>;
1273
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: - _ .">]>;
1274
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>;
1275
1219
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1276
1220
  }, undefined>, undefined>, v.MinLengthAction<{
1221
+ group: string;
1277
1222
  label: string;
1278
1223
  value: string;
1279
1224
  description: string | null;
@@ -1281,16 +1226,6 @@ declare const SCreateMultipleCampaignTargetDocuments: v.ObjectSchema<{
1281
1226
  }[], 1, "At least one campaign target is required">]>;
1282
1227
  }, undefined>;
1283
1228
  type SCreateMultipleCampaignTargetDocuments = v.InferOutput<typeof SCreateMultipleCampaignTargetDocuments>;
1284
- declare const SCreateCampaignTargetDocumentRequest: v.ObjectSchema<{
1285
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1286
- readonly data: v.ObjectSchema<{
1287
- 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">]>;
1288
- 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: - _ .">]>;
1289
- 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>;
1290
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1291
- }, undefined>;
1292
- }, undefined>;
1293
- type SCreateCampaignTargetDocumentRequest = v.InferOutput<typeof SCreateCampaignTargetDocumentRequest>;
1294
1229
  declare const SReadCampaignTargetDocumentById: v.ObjectSchema<{
1295
1230
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1296
1231
  }, undefined>;
@@ -1359,6 +1294,7 @@ declare const SQueryListContentDocuments: v.ObjectSchema<{
1359
1294
  }, undefined>;
1360
1295
  type SQueryListContentDocuments = v.InferOutput<typeof SQueryListContentDocuments>;
1361
1296
  declare const SCreateContentDocument: v.ObjectSchema<{
1297
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1362
1298
  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">]>;
1363
1299
  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: - _ .">]>;
1364
1300
  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>;
@@ -1367,11 +1303,13 @@ declare const SCreateContentDocument: v.ObjectSchema<{
1367
1303
  type SCreateContentDocument = v.InferOutput<typeof SCreateContentDocument>;
1368
1304
  declare const SCreateMultipleContentDocuments: v.ObjectSchema<{
1369
1305
  readonly contents: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1306
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1370
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">]>;
1371
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: - _ .">]>;
1372
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>;
1373
1310
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1374
1311
  }, undefined>, undefined>, v.MinLengthAction<{
1312
+ group: string;
1375
1313
  label: string;
1376
1314
  value: string;
1377
1315
  description: string | null;
@@ -1379,16 +1317,6 @@ declare const SCreateMultipleContentDocuments: v.ObjectSchema<{
1379
1317
  }[], 1, "At least one term is required">]>;
1380
1318
  }, undefined>;
1381
1319
  type SCreateMultipleContentDocuments = v.InferOutput<typeof SCreateMultipleContentDocuments>;
1382
- declare const SCreateContentDocumentRequest: v.ObjectSchema<{
1383
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1384
- readonly data: v.ObjectSchema<{
1385
- 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">]>;
1386
- 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: - _ .">]>;
1387
- 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>;
1388
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1389
- }, undefined>;
1390
- }, undefined>;
1391
- type SCreateContentDocumentRequest = v.InferOutput<typeof SCreateContentDocumentRequest>;
1392
1320
  declare const SReadContentDocumentById: v.ObjectSchema<{
1393
1321
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1394
1322
  }, undefined>;
@@ -1457,6 +1385,7 @@ declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
1457
1385
  }, undefined>;
1458
1386
  type SQueryListCreativeFormatVariantDocuments = v.InferOutput<typeof SQueryListCreativeFormatVariantDocuments>;
1459
1387
  declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
1388
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1460
1389
  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">]>;
1461
1390
  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: - _ .">]>;
1462
1391
  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>;
@@ -1465,11 +1394,13 @@ declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
1465
1394
  type SCreateCreativeFormatVariantDocument = v.InferOutput<typeof SCreateCreativeFormatVariantDocument>;
1466
1395
  declare const SCreateMultipleCreativeFormatVariantDocuments: v.ObjectSchema<{
1467
1396
  readonly creative_format_variants: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1397
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1468
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">]>;
1469
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: - _ .">]>;
1470
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>;
1471
1401
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1472
1402
  }, undefined>, undefined>, v.MinLengthAction<{
1403
+ group: string;
1473
1404
  label: string;
1474
1405
  value: string;
1475
1406
  description: string | null;
@@ -1477,16 +1408,6 @@ declare const SCreateMultipleCreativeFormatVariantDocuments: v.ObjectSchema<{
1477
1408
  }[], 1, "At least one term is required">]>;
1478
1409
  }, undefined>;
1479
1410
  type SCreateMultipleCreativeFormatVariantDocuments = v.InferOutput<typeof SCreateMultipleCreativeFormatVariantDocuments>;
1480
- declare const SCreateCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
1481
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1482
- readonly data: v.ObjectSchema<{
1483
- 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">]>;
1484
- 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: - _ .">]>;
1485
- 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>;
1486
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1487
- }, undefined>;
1488
- }, undefined>;
1489
- type SCreateCreativeFormatVariantDocumentRequest = v.InferOutput<typeof SCreateCreativeFormatVariantDocumentRequest>;
1490
1411
  declare const SReadCreativeFormatVariantDocumentById: v.ObjectSchema<{
1491
1412
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1492
1413
  }, undefined>;
@@ -1555,6 +1476,7 @@ declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
1555
1476
  }, undefined>;
1556
1477
  type SQueryListCreativeFormatDocuments = v.InferOutput<typeof SQueryListCreativeFormatDocuments>;
1557
1478
  declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
1479
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1558
1480
  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">]>;
1559
1481
  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: - _ .">]>;
1560
1482
  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>;
@@ -1563,11 +1485,13 @@ declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
1563
1485
  type SCreateCreativeFormatDocument = v.InferOutput<typeof SCreateCreativeFormatDocument>;
1564
1486
  declare const SCreateMultipleCreativeFormatDocuments: v.ObjectSchema<{
1565
1487
  readonly creative_formats: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1488
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1566
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">]>;
1567
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: - _ .">]>;
1568
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>;
1569
1492
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1570
1493
  }, undefined>, undefined>, v.MinLengthAction<{
1494
+ group: string;
1571
1495
  label: string;
1572
1496
  value: string;
1573
1497
  description: string | null;
@@ -1575,16 +1499,6 @@ declare const SCreateMultipleCreativeFormatDocuments: v.ObjectSchema<{
1575
1499
  }[], 1, "At least one creative format is required">]>;
1576
1500
  }, undefined>;
1577
1501
  type SCreateMultipleCreativeFormatDocuments = v.InferOutput<typeof SCreateMultipleCreativeFormatDocuments>;
1578
- declare const SCreateCreativeFormatDocumentRequest: v.ObjectSchema<{
1579
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1580
- readonly data: v.ObjectSchema<{
1581
- 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">]>;
1582
- 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: - _ .">]>;
1583
- 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>;
1584
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1585
- }, undefined>;
1586
- }, undefined>;
1587
- type SCreateCreativeFormatDocumentRequest = v.InferOutput<typeof SCreateCreativeFormatDocumentRequest>;
1588
1502
  declare const SReadCreativeFormatDocumentById: v.ObjectSchema<{
1589
1503
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1590
1504
  }, undefined>;
@@ -1653,6 +1567,7 @@ declare const SQueryListMediumDocuments: v.ObjectSchema<{
1653
1567
  }, undefined>;
1654
1568
  type SQueryListMediumDocuments = v.InferOutput<typeof SQueryListMediumDocuments>;
1655
1569
  declare const SCreateMediumDocument: v.ObjectSchema<{
1570
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1656
1571
  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">]>;
1657
1572
  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: - _ .">]>;
1658
1573
  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>;
@@ -1661,11 +1576,13 @@ declare const SCreateMediumDocument: v.ObjectSchema<{
1661
1576
  type SCreateMediumDocument = v.InferOutput<typeof SCreateMediumDocument>;
1662
1577
  declare const SCreateMultipleMediumDocuments: v.ObjectSchema<{
1663
1578
  readonly mediums: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1579
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1664
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">]>;
1665
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: - _ .">]>;
1666
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>;
1667
1583
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1668
1584
  }, undefined>, undefined>, v.MinLengthAction<{
1585
+ group: string;
1669
1586
  label: string;
1670
1587
  value: string;
1671
1588
  description: string | null;
@@ -1673,16 +1590,6 @@ declare const SCreateMultipleMediumDocuments: v.ObjectSchema<{
1673
1590
  }[], 1, "At least one medium is required">]>;
1674
1591
  }, undefined>;
1675
1592
  type SCreateMultipleMediumDocuments = v.InferOutput<typeof SCreateMultipleMediumDocuments>;
1676
- declare const SCreateMediumDocumentRequest: v.ObjectSchema<{
1677
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1678
- readonly data: v.ObjectSchema<{
1679
- 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">]>;
1680
- 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: - _ .">]>;
1681
- 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>;
1682
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1683
- }, undefined>;
1684
- }, undefined>;
1685
- type SCreateMediumDocumentRequest = v.InferOutput<typeof SCreateMediumDocumentRequest>;
1686
1593
  declare const SReadMediumDocumentById: v.ObjectSchema<{
1687
1594
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1688
1595
  }, undefined>;
@@ -1751,6 +1658,7 @@ declare const SQueryListSourceDocuments: v.ObjectSchema<{
1751
1658
  }, undefined>;
1752
1659
  type SQueryListSourceDocuments = v.InferOutput<typeof SQueryListSourceDocuments>;
1753
1660
  declare const SCreateSourceDocument: v.ObjectSchema<{
1661
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1754
1662
  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">]>;
1755
1663
  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: - _ .">]>;
1756
1664
  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>;
@@ -1759,11 +1667,13 @@ declare const SCreateSourceDocument: v.ObjectSchema<{
1759
1667
  type SCreateSourceDocument = v.InferOutput<typeof SCreateSourceDocument>;
1760
1668
  declare const SCreateMultipleSourceDocuments: v.ObjectSchema<{
1761
1669
  readonly sources: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1670
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1762
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">]>;
1763
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: - _ .">]>;
1764
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>;
1765
1674
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1766
1675
  }, undefined>, undefined>, v.MinLengthAction<{
1676
+ group: string;
1767
1677
  label: string;
1768
1678
  value: string;
1769
1679
  description: string | null;
@@ -1771,16 +1681,6 @@ declare const SCreateMultipleSourceDocuments: v.ObjectSchema<{
1771
1681
  }[], 1, "At least one source is required">]>;
1772
1682
  }, undefined>;
1773
1683
  type SCreateMultipleSourceDocuments = v.InferOutput<typeof SCreateMultipleSourceDocuments>;
1774
- declare const SCreateSourceDocumentRequest: v.ObjectSchema<{
1775
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1776
- readonly data: v.ObjectSchema<{
1777
- 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">]>;
1778
- 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: - _ .">]>;
1779
- 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>;
1780
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1781
- }, undefined>;
1782
- }, undefined>;
1783
- type SCreateSourceDocumentRequest = v.InferOutput<typeof SCreateSourceDocumentRequest>;
1784
1684
  declare const SReadSourceDocumentById: v.ObjectSchema<{
1785
1685
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1786
1686
  }, undefined>;
@@ -1849,6 +1749,7 @@ declare const SQueryListTermDocuments: v.ObjectSchema<{
1849
1749
  }, undefined>;
1850
1750
  type SQueryListTermDocuments = v.InferOutput<typeof SQueryListTermDocuments>;
1851
1751
  declare const SCreateTermDocument: v.ObjectSchema<{
1752
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1852
1753
  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">]>;
1853
1754
  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: - _ .">]>;
1854
1755
  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>;
@@ -1857,11 +1758,13 @@ declare const SCreateTermDocument: v.ObjectSchema<{
1857
1758
  type SCreateTermDocument = v.InferOutput<typeof SCreateTermDocument>;
1858
1759
  declare const SCreateMultipleTermDocuments: v.ObjectSchema<{
1859
1760
  readonly terms: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1761
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1860
1762
  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">]>;
1861
1763
  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: - _ .">]>;
1862
1764
  readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
1863
1765
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1864
1766
  }, undefined>, undefined>, v.MinLengthAction<{
1767
+ group: string;
1865
1768
  label: string;
1866
1769
  value: string;
1867
1770
  description: string | null;
@@ -1869,16 +1772,6 @@ declare const SCreateMultipleTermDocuments: v.ObjectSchema<{
1869
1772
  }[], 1, "At least one term is required">]>;
1870
1773
  }, undefined>;
1871
1774
  type SCreateMultipleTermDocuments = v.InferOutput<typeof SCreateMultipleTermDocuments>;
1872
- declare const SCreateTermDocumentRequest: v.ObjectSchema<{
1873
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1874
- readonly data: v.ObjectSchema<{
1875
- 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">]>;
1876
- 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: - _ .">]>;
1877
- 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>;
1878
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1879
- }, undefined>;
1880
- }, undefined>;
1881
- type SCreateTermDocumentRequest = v.InferOutput<typeof SCreateTermDocumentRequest>;
1882
1775
  declare const SReadTermDocumentById: v.ObjectSchema<{
1883
1776
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1884
1777
  }, undefined>;
@@ -1947,6 +1840,7 @@ declare const SQueryListWebsiteDocuments: v.ObjectSchema<{
1947
1840
  }, undefined>;
1948
1841
  type SQueryListWebsiteDocuments = v.InferOutput<typeof SQueryListWebsiteDocuments>;
1949
1842
  declare const SCreateWebsiteDocument: v.ObjectSchema<{
1843
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1950
1844
  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">]>;
1951
1845
  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>;
1952
1846
  readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
@@ -1955,11 +1849,13 @@ declare const SCreateWebsiteDocument: v.ObjectSchema<{
1955
1849
  type SCreateWebsiteDocument = v.InferOutput<typeof SCreateWebsiteDocument>;
1956
1850
  declare const SCreateMultipleWebsiteDocuments: v.ObjectSchema<{
1957
1851
  readonly websites: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
1852
+ readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1958
1853
  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">]>;
1959
1854
  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>;
1960
1855
  readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
1961
1856
  readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1962
1857
  }, undefined>, undefined>, v.MinLengthAction<{
1858
+ group: string;
1963
1859
  domain: string;
1964
1860
  description: string | null | undefined;
1965
1861
  is_secure: boolean;
@@ -1967,16 +1863,6 @@ declare const SCreateMultipleWebsiteDocuments: v.ObjectSchema<{
1967
1863
  }[], 1, "At least one website is required">]>;
1968
1864
  }, undefined>;
1969
1865
  type SCreateMultipleWebsiteDocuments = v.InferOutput<typeof SCreateMultipleWebsiteDocuments>;
1970
- declare const SCreateWebsiteDocumentRequest: v.ObjectSchema<{
1971
- readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
1972
- readonly data: v.ObjectSchema<{
1973
- 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">]>;
1974
- 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>;
1975
- readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
1976
- readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
1977
- }, undefined>;
1978
- }, undefined>;
1979
- type SCreateWebsiteDocumentRequest = v.InferOutput<typeof SCreateWebsiteDocumentRequest>;
1980
1866
  declare const SReadWebsiteDocumentById: v.ObjectSchema<{
1981
1867
  readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
1982
1868
  }, undefined>;
@@ -5187,311 +5073,88 @@ declare const SWebsiteDocumentWithRelations: v.ObjectSchema<{
5187
5073
  }, undefined>;
5188
5074
  type SWebsiteDocumentWithRelations = v.InferOutput<typeof SWebsiteDocumentWithRelations>;
5189
5075
 
5190
- declare const default_sources: {
5191
- readonly meta: {
5192
- readonly label: "Meta (FB/IG)";
5193
- readonly value: "meta";
5194
- readonly description: "Content published to all Meta platforms: Facebook, Instagram";
5076
+ declare const DEFAULT_CAMPAIGN_PHASES: {
5077
+ readonly brand: {
5078
+ readonly label: "Brand";
5079
+ readonly value: "brand";
5080
+ readonly description: "Company branded content";
5195
5081
  readonly is_active: true;
5196
5082
  };
5197
- readonly facebook: {
5198
- readonly label: "Facebook";
5199
- readonly value: "meta_facebook";
5200
- readonly description: "Content published exclusively on Facebook";
5083
+ readonly p1: {
5084
+ readonly label: "Phase 1";
5085
+ readonly value: "p1";
5086
+ readonly description: "Interest list building";
5201
5087
  readonly is_active: true;
5202
5088
  };
5203
- readonly instagram: {
5204
- readonly label: "Instagram";
5205
- readonly value: "meta_instagram";
5206
- readonly description: "Content published exclusively on Instagram";
5089
+ readonly p2: {
5090
+ readonly label: "Phase 2";
5091
+ readonly value: "p2";
5092
+ readonly description: "Pre-qual/pre-sale";
5207
5093
  readonly is_active: true;
5208
5094
  };
5209
- readonly tiktok: {
5210
- readonly label: "TikTok";
5211
- readonly value: "tiktok";
5212
- readonly description: "Content published exclusively on TikTok";
5095
+ readonly p3: {
5096
+ readonly label: "Phase 3";
5097
+ readonly value: "p3";
5098
+ readonly description: "Grand opening/now available";
5213
5099
  readonly is_active: true;
5214
5100
  };
5215
- readonly twitter: {
5216
- readonly label: "X/Twitter";
5217
- readonly value: "twitter";
5218
- readonly description: "Content for X.com formerly known as Twitter";
5101
+ readonly p4: {
5102
+ readonly label: "Phase 4";
5103
+ readonly value: "p4";
5104
+ readonly description: "For sale/maintenance period";
5219
5105
  readonly is_active: true;
5220
5106
  };
5221
- readonly xcom: {
5222
- readonly label: "X.com";
5223
- readonly value: "x_twitter";
5224
- readonly description: "Content published exclusively on X.com";
5107
+ readonly p5: {
5108
+ readonly label: "Phase 5";
5109
+ readonly value: "p5";
5110
+ readonly description: "Final sale";
5225
5111
  readonly is_active: true;
5226
5112
  };
5227
- readonly linkedin: {
5228
- readonly label: "LinkedIn";
5229
- readonly value: "linkedin";
5230
- readonly description: "Content published exclusively on LinkedIn";
5113
+ };
5114
+ type DefaultCampaignPhaseKey = keyof typeof DEFAULT_CAMPAIGN_PHASES;
5115
+ type DefaultCampaignPhaseValue = (typeof DEFAULT_CAMPAIGN_PHASES)[DefaultCampaignPhaseKey];
5116
+
5117
+ declare const DEFAULT_CONTENTS: {
5118
+ readonly testimonial: {
5119
+ readonly label: "Testimonial";
5120
+ readonly value: "testimonial";
5121
+ readonly description: "Buyer telling story about their purchase experience";
5231
5122
  readonly is_active: true;
5232
5123
  };
5233
- readonly pinterest: {
5234
- readonly label: "Pinterest";
5235
- readonly value: "pinterest";
5236
- readonly description: "Content published exclusively on Pinterest";
5124
+ readonly agent: {
5125
+ readonly label: "Agent";
5126
+ readonly value: "agent";
5127
+ readonly description: "Salespeople on camera marketing their neighborhood";
5237
5128
  readonly is_active: true;
5238
5129
  };
5239
- readonly youtube: {
5240
- readonly label: "YouTube";
5241
- readonly value: "youtube";
5242
- readonly description: "Content published exclusively on YouTube";
5130
+ readonly education: {
5131
+ readonly label: "Education";
5132
+ readonly value: "education";
5133
+ readonly description: "Content that is to educate buyers on any variety of home buying process";
5243
5134
  readonly is_active: true;
5244
5135
  };
5245
- readonly sms: {
5246
- readonly label: "Text Message (SMS)";
5247
- readonly value: "sms";
5248
- readonly description: "Content published exclusively via Text Message (SMS)";
5136
+ readonly charity: {
5137
+ readonly label: "Charity";
5138
+ readonly value: "charity";
5139
+ readonly description: "Content related to any charitable efforts on behalf of builder";
5249
5140
  readonly is_active: true;
5250
5141
  };
5251
- readonly email: {
5252
- readonly label: "Email";
5253
- readonly value: "email";
5254
- readonly description: "Content published exclusively via Email";
5142
+ readonly recruitment: {
5143
+ readonly label: "Recruitment";
5144
+ readonly value: "recruitment";
5145
+ readonly description: "Content showcasing staff and culture to recruit future employees";
5255
5146
  readonly is_active: true;
5256
5147
  };
5257
- readonly google: {
5258
- readonly label: "Google Ads";
5259
- readonly value: "google";
5260
- readonly description: "Content published exclusively via Google Ads";
5148
+ readonly lifestyle: {
5149
+ readonly label: "Lifestyle";
5150
+ readonly value: "lifestyle";
5151
+ readonly description: "Content about the surrounding area and what it’s like to live in a place";
5261
5152
  readonly is_active: true;
5262
5153
  };
5263
- readonly realtorcom: {
5264
- readonly label: "Realtor.com";
5265
- readonly value: "rdc";
5266
- readonly description: "Content published exclusively on Realtor.com (RDC)";
5267
- readonly is_active: true;
5268
- };
5269
- readonly zillow: {
5270
- readonly label: "Zillow";
5271
- readonly value: "zillow";
5272
- readonly description: "Content published exclusively on Zillow";
5273
- readonly is_active: true;
5274
- };
5275
- readonly bdx_nhs: {
5276
- readonly label: "New Home Source (Zonda)";
5277
- readonly value: "bdx_nhs";
5278
- readonly description: "Content published exclusively on New Home Source";
5279
- readonly is_active: true;
5280
- };
5281
- readonly yelp: {
5282
- readonly label: "Yelp";
5283
- readonly value: "yelp";
5284
- readonly description: "Content published exclusively on Yelp";
5285
- readonly is_active: true;
5286
- };
5287
- readonly qr_code: {
5288
- readonly label: "QR Code";
5289
- readonly value: "qr_code";
5290
- readonly description: "Content published exclusively via a QR Code";
5291
- readonly is_active: true;
5292
- };
5293
- readonly stackadapt: {
5294
- readonly label: "StackAdapt";
5295
- readonly value: "stackadapt";
5296
- readonly description: "Content published exclusively via StackAdapt";
5297
- readonly is_active: true;
5298
- };
5299
- readonly newswire: {
5300
- readonly label: "Newswire";
5301
- readonly value: "newswire";
5302
- readonly description: "Content published exclusively via Newswire";
5303
- readonly is_active: true;
5304
- };
5305
- readonly mobile_app: {
5306
- readonly label: "Mobile App";
5307
- readonly value: "mobile_app";
5308
- readonly description: "Content published exclusively via a Mobile App";
5309
- readonly is_active: true;
5310
- };
5311
- readonly referral: {
5312
- readonly label: "Referral";
5313
- readonly value: "referral";
5314
- readonly description: "Content published exclusively via a Referral source";
5315
- readonly is_active: true;
5316
- };
5317
- };
5318
- type DefaultSourceKey = keyof typeof default_sources;
5319
- type DefaultSourceValue = (typeof default_sources)[DefaultSourceKey];
5320
- declare const default_mediums: {
5321
- readonly social: {
5322
- readonly label: "Organic Social";
5323
- readonly value: "social";
5324
- readonly description: "Organic social posts across all platforms";
5325
- readonly is_active: true;
5326
- };
5327
- readonly paid_social: {
5328
- readonly label: "Paid Social";
5329
- readonly value: "paid_social";
5330
- readonly description: "Any paid media on social platforms";
5331
- readonly is_active: true;
5332
- };
5333
- readonly paid_search: {
5334
- readonly label: "Paid Search";
5335
- readonly value: "paid_search";
5336
- readonly description: "Reserved for text-based ads on search platforms (google, bing, etc)";
5337
- readonly is_active: true;
5338
- };
5339
- readonly paid_display: {
5340
- readonly label: "Paid Display";
5341
- readonly value: "paid_display";
5342
- readonly description: "Any image-based ads through a paid media buying platform (excluding social)";
5343
- readonly is_active: true;
5344
- };
5345
- readonly paid_video: {
5346
- readonly label: "Paid Video";
5347
- readonly value: "paid_video";
5348
- readonly description: "Any video-based ads through a paid media buying platform (excluding social)";
5349
- readonly is_active: true;
5350
- };
5351
- readonly paid_listing: {
5352
- readonly label: "Paid Listing";
5353
- readonly value: "paid_listing";
5354
- readonly description: "Paid product listing on a ad/partner/affiliated website";
5355
- readonly is_active: true;
5356
- };
5357
- readonly paid: {
5358
- readonly label: "Paid";
5359
- readonly value: "paid";
5360
- readonly description: "Reserved for any other paid promotions that do not fit into the other categories";
5361
- readonly is_active: true;
5362
- };
5363
- readonly blast: {
5364
- readonly label: "Blast";
5365
- readonly value: "blast";
5366
- 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";
5367
- readonly is_active: true;
5368
- };
5369
- readonly paid_blast: {
5370
- readonly label: "Paid Blast";
5371
- readonly value: "paid_blast";
5372
- 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";
5373
- readonly is_active: true;
5374
- };
5375
- readonly flow: {
5376
- readonly label: "Flow";
5377
- readonly value: "flow";
5378
- 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";
5379
- readonly is_active: true;
5380
- };
5381
- readonly signage: {
5382
- readonly label: "Signage";
5383
- readonly value: "signage";
5384
- 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.";
5385
- readonly is_active: true;
5386
- };
5387
- readonly content: {
5388
- readonly label: "Content";
5389
- readonly value: "content";
5390
- readonly description: "Used for generic content mediums other than the mediums listed";
5391
- readonly is_active: true;
5392
- };
5393
- readonly paid_ctv: {
5394
- readonly label: "Connected TV";
5395
- readonly value: "paid_ctv";
5396
- readonly description: "Used for paid ads on TV, Streaming Providers or other Connected TV sources";
5397
- readonly is_active: true;
5398
- };
5399
- readonly popup: {
5400
- readonly label: "Popup";
5401
- readonly value: "popup";
5402
- readonly description: "Used only for popup content embedded on a website (owned or third party)";
5403
- readonly is_active: true;
5404
- };
5405
- readonly press_release: {
5406
- readonly label: "Press Release";
5407
- readonly value: "press_release";
5408
- readonly description: "Used for content related to a press release";
5409
- readonly is_active: true;
5410
- };
5411
- };
5412
- type DefaultMediumKey = keyof typeof default_mediums;
5413
- type DefaultMediumValue = (typeof default_mediums)[DefaultMediumKey];
5414
- declare const default_campaign_phases: {
5415
- readonly brand: {
5416
- readonly label: "Brand";
5417
- readonly value: "brand";
5418
- readonly description: "Company branded content";
5419
- readonly is_active: true;
5420
- };
5421
- readonly p1: {
5422
- readonly label: "Phase 1";
5423
- readonly value: "p1";
5424
- readonly description: "Interest list building";
5425
- readonly is_active: true;
5426
- };
5427
- readonly p2: {
5428
- readonly label: "Phase 2";
5429
- readonly value: "p2";
5430
- readonly description: "Pre-qual/pre-sale";
5431
- readonly is_active: true;
5432
- };
5433
- readonly p3: {
5434
- readonly label: "Phase 3";
5435
- readonly value: "p3";
5436
- readonly description: "Grand opening/now available";
5437
- readonly is_active: true;
5438
- };
5439
- readonly p4: {
5440
- readonly label: "Phase 4";
5441
- readonly value: "p4";
5442
- readonly description: "For sale/maintenance period";
5443
- readonly is_active: true;
5444
- };
5445
- readonly p5: {
5446
- readonly label: "Phase 5";
5447
- readonly value: "p5";
5448
- readonly description: "Final sale";
5449
- readonly is_active: true;
5450
- };
5451
- };
5452
- type DefaultCampaignPhaseKey = keyof typeof default_campaign_phases;
5453
- type DefaultCampaignPhaseValue = (typeof default_campaign_phases)[DefaultCampaignPhaseKey];
5454
- declare const default_contents: {
5455
- readonly testimonial: {
5456
- readonly label: "Testimonial";
5457
- readonly value: "testimonial";
5458
- readonly description: "Buyer telling story about their purchase experience";
5459
- readonly is_active: true;
5460
- };
5461
- readonly agent: {
5462
- readonly label: "Agent";
5463
- readonly value: "agent";
5464
- readonly description: "Salespeople on camera marketing their neighborhood";
5465
- readonly is_active: true;
5466
- };
5467
- readonly education: {
5468
- readonly label: "Education";
5469
- readonly value: "education";
5470
- readonly description: "Content that is to educate buyers on any variety of home buying process";
5471
- readonly is_active: true;
5472
- };
5473
- readonly charity: {
5474
- readonly label: "Charity";
5475
- readonly value: "charity";
5476
- readonly description: "Content related to any charitable efforts on behalf of builder";
5477
- readonly is_active: true;
5478
- };
5479
- readonly recruitment: {
5480
- readonly label: "Recruitment";
5481
- readonly value: "recruitment";
5482
- readonly description: "Content showcasing staff and culture to recruit future employees";
5483
- readonly is_active: true;
5484
- };
5485
- readonly lifestyle: {
5486
- readonly label: "Lifestyle";
5487
- readonly value: "lifestyle";
5488
- readonly description: "Content about the surrounding area and what it’s like to live in a place";
5489
- readonly is_active: true;
5490
- };
5491
- readonly milestone: {
5492
- readonly label: "Milestone";
5493
- readonly value: "milestone";
5494
- readonly description: "Benchmarks in the building process and life of a community";
5154
+ readonly milestone: {
5155
+ readonly label: "Milestone";
5156
+ readonly value: "milestone";
5157
+ readonly description: "Benchmarks in the building process and life of a community";
5495
5158
  readonly is_active: true;
5496
5159
  };
5497
5160
  readonly trends: {
@@ -5561,9 +5224,123 @@ declare const default_contents: {
5561
5224
  readonly is_active: true;
5562
5225
  };
5563
5226
  };
5564
- type DefaultContentKey = keyof typeof default_contents;
5565
- type DefaultContentValue = (typeof default_contents)[DefaultContentKey];
5566
- declare const default_creative_formats: {
5227
+ type DefaultContentKey = keyof typeof DEFAULT_CONTENTS;
5228
+ type DefaultContentValue = (typeof DEFAULT_CONTENTS)[DefaultContentKey];
5229
+
5230
+ declare const DEFAULT_CREATIVE_FORMAT_VARIANTS: {
5231
+ readonly short_form: {
5232
+ readonly label: "Short Form Video";
5233
+ readonly value: "short_form";
5234
+ readonly description: "Short form video content";
5235
+ readonly is_active: true;
5236
+ };
5237
+ readonly long_form: {
5238
+ readonly label: "Long Form Video";
5239
+ readonly value: "long_form";
5240
+ readonly description: "Long form video content";
5241
+ readonly is_active: true;
5242
+ };
5243
+ readonly image: {
5244
+ readonly label: "Image";
5245
+ readonly value: "image";
5246
+ readonly description: "Content that rely on photography to convey a message";
5247
+ readonly is_active: true;
5248
+ };
5249
+ readonly gif: {
5250
+ readonly label: "GIF";
5251
+ readonly value: "gif";
5252
+ readonly description: "Content using an animated GIF";
5253
+ readonly is_active: true;
5254
+ };
5255
+ readonly text: {
5256
+ readonly label: "Text";
5257
+ readonly value: "text";
5258
+ readonly description: "Content that rely on typography/text to convey a message";
5259
+ readonly is_active: true;
5260
+ };
5261
+ readonly carousel: {
5262
+ readonly label: "Carousel";
5263
+ readonly value: "carousel";
5264
+ readonly description: "Content in a carousel or slideshow format";
5265
+ readonly is_active: true;
5266
+ };
5267
+ readonly people: {
5268
+ readonly label: "People";
5269
+ readonly value: "people";
5270
+ readonly description: "Content that uses humans/actors to convey a message";
5271
+ readonly is_active: true;
5272
+ };
5273
+ readonly faceless: {
5274
+ readonly label: "Faceless (No People)";
5275
+ readonly value: "faceless";
5276
+ readonly description: "Content with no people/human faces depicted";
5277
+ readonly is_active: true;
5278
+ };
5279
+ readonly popup: {
5280
+ readonly label: "Pop Up";
5281
+ readonly value: "popup";
5282
+ readonly description: "Website pop up content";
5283
+ readonly is_active: true;
5284
+ };
5285
+ readonly banner: {
5286
+ readonly label: "Banner";
5287
+ readonly value: "banner";
5288
+ readonly description: "Banner content on a website";
5289
+ readonly is_active: true;
5290
+ };
5291
+ readonly broker: {
5292
+ readonly label: "Broker";
5293
+ readonly value: "broker";
5294
+ readonly description: "Content created for brokers";
5295
+ readonly is_active: true;
5296
+ };
5297
+ readonly consumer: {
5298
+ readonly label: "Consumer";
5299
+ readonly value: "consumer";
5300
+ readonly description: "Content created for consumers";
5301
+ readonly is_active: true;
5302
+ };
5303
+ readonly redrop: {
5304
+ readonly label: "Redrop";
5305
+ readonly value: "redrop";
5306
+ readonly description: "Content that is re-dropped to the same audience";
5307
+ readonly is_active: true;
5308
+ };
5309
+ readonly variant_a: {
5310
+ readonly label: "Variant A";
5311
+ readonly value: "variant_a";
5312
+ readonly description: "Used for a/b testing and/or ad variant names.";
5313
+ readonly is_active: true;
5314
+ };
5315
+ readonly variant_b: {
5316
+ readonly label: "Variant B";
5317
+ readonly value: "variant_b";
5318
+ readonly description: "Used for a/b testing and/or ad variant names.";
5319
+ readonly is_active: true;
5320
+ };
5321
+ readonly variant_c: {
5322
+ readonly label: "Variant C";
5323
+ readonly value: "variant_c";
5324
+ readonly description: "Used for a/b testing and/or ad variant names.";
5325
+ readonly is_active: true;
5326
+ };
5327
+ readonly variant_d: {
5328
+ readonly label: "Variant D";
5329
+ readonly value: "variant_d";
5330
+ readonly description: "Used for a/b testing and/or ad variant names.";
5331
+ readonly is_active: true;
5332
+ };
5333
+ readonly client_creative: {
5334
+ readonly label: "Client Creative";
5335
+ readonly value: "client_creative";
5336
+ readonly description: "Creative content was provided by the client to use—not GC designed content.";
5337
+ readonly is_active: true;
5338
+ };
5339
+ };
5340
+ type DefaultCreativeFormatVariantKey = keyof typeof DEFAULT_CREATIVE_FORMAT_VARIANTS;
5341
+ type DefaultCreativeFormatVariantValue = (typeof DEFAULT_CREATIVE_FORMAT_VARIANTS)[DefaultCreativeFormatVariantKey];
5342
+
5343
+ declare const DEFAULT_CREATIVE_FORMATS: {
5567
5344
  readonly post: {
5568
5345
  readonly label: "Post";
5569
5346
  readonly value: "post";
@@ -5679,120 +5456,234 @@ declare const default_creative_formats: {
5679
5456
  readonly is_active: true;
5680
5457
  };
5681
5458
  };
5682
- type DefaultCreativeFormatKey = keyof typeof default_creative_formats;
5683
- type DefaultCreativeFormatValue = (typeof default_creative_formats)[DefaultCreativeFormatKey];
5684
- declare const default_creative_format_variants: {
5685
- readonly short_form: {
5686
- readonly label: "Short Form Video";
5687
- readonly value: "short_form";
5688
- readonly description: "Short form video content";
5459
+ type DefaultCreativeFormatKey = keyof typeof DEFAULT_CREATIVE_FORMATS;
5460
+ type DefaultCreativeFormatValue = (typeof DEFAULT_CREATIVE_FORMATS)[DefaultCreativeFormatKey];
5461
+
5462
+ declare const DEFAULT_MEDIUMS: {
5463
+ readonly social: {
5464
+ readonly label: "Organic Social";
5465
+ readonly value: "social";
5466
+ readonly description: "Organic social posts across all platforms";
5689
5467
  readonly is_active: true;
5690
5468
  };
5691
- readonly long_form: {
5692
- readonly label: "Long Form Video";
5693
- readonly value: "long_form";
5694
- readonly description: "Long form video content";
5469
+ readonly paid_social: {
5470
+ readonly label: "Paid Social";
5471
+ readonly value: "paid_social";
5472
+ readonly description: "Any paid media on social platforms";
5695
5473
  readonly is_active: true;
5696
5474
  };
5697
- readonly image: {
5698
- readonly label: "Image";
5699
- readonly value: "image";
5700
- readonly description: "Content that rely on photography to convey a message";
5475
+ readonly paid_search: {
5476
+ readonly label: "Paid Search";
5477
+ readonly value: "paid_search";
5478
+ readonly description: "Reserved for text-based ads on search platforms (google, bing, etc)";
5701
5479
  readonly is_active: true;
5702
5480
  };
5703
- readonly gif: {
5704
- readonly label: "GIF";
5705
- readonly value: "gif";
5706
- readonly description: "Content using an animated GIF";
5481
+ readonly paid_display: {
5482
+ readonly label: "Paid Display";
5483
+ readonly value: "paid_display";
5484
+ readonly description: "Any image-based ads through a paid media buying platform (excluding social)";
5707
5485
  readonly is_active: true;
5708
5486
  };
5709
- readonly text: {
5710
- readonly label: "Text";
5711
- readonly value: "text";
5712
- readonly description: "Content that rely on typography/text to convey a message";
5487
+ readonly paid_video: {
5488
+ readonly label: "Paid Video";
5489
+ readonly value: "paid_video";
5490
+ readonly description: "Any video-based ads through a paid media buying platform (excluding social)";
5713
5491
  readonly is_active: true;
5714
5492
  };
5715
- readonly carousel: {
5716
- readonly label: "Carousel";
5717
- readonly value: "carousel";
5718
- readonly description: "Content in a carousel or slideshow format";
5493
+ readonly paid_listing: {
5494
+ readonly label: "Paid Listing";
5495
+ readonly value: "paid_listing";
5496
+ readonly description: "Paid product listing on a ad/partner/affiliated website";
5719
5497
  readonly is_active: true;
5720
5498
  };
5721
- readonly people: {
5722
- readonly label: "People";
5723
- readonly value: "people";
5724
- readonly description: "Content that uses humans/actors to convey a message";
5499
+ readonly paid: {
5500
+ readonly label: "Paid";
5501
+ readonly value: "paid";
5502
+ readonly description: "Reserved for any other paid promotions that do not fit into the other categories";
5725
5503
  readonly is_active: true;
5726
5504
  };
5727
- readonly faceless: {
5728
- readonly label: "Faceless (No People)";
5729
- readonly value: "faceless";
5730
- readonly description: "Content with no people/human faces depicted";
5505
+ readonly blast: {
5506
+ readonly label: "Blast";
5507
+ readonly value: "blast";
5508
+ 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";
5509
+ readonly is_active: true;
5510
+ };
5511
+ readonly paid_blast: {
5512
+ readonly label: "Paid Blast";
5513
+ readonly value: "paid_blast";
5514
+ 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";
5515
+ readonly is_active: true;
5516
+ };
5517
+ readonly flow: {
5518
+ readonly label: "Flow";
5519
+ readonly value: "flow";
5520
+ 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";
5521
+ readonly is_active: true;
5522
+ };
5523
+ readonly signage: {
5524
+ readonly label: "Signage";
5525
+ readonly value: "signage";
5526
+ 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.";
5527
+ readonly is_active: true;
5528
+ };
5529
+ readonly content: {
5530
+ readonly label: "Content";
5531
+ readonly value: "content";
5532
+ readonly description: "Used for generic content mediums other than the mediums listed";
5533
+ readonly is_active: true;
5534
+ };
5535
+ readonly paid_ctv: {
5536
+ readonly label: "Connected TV";
5537
+ readonly value: "paid_ctv";
5538
+ readonly description: "Used for paid ads on TV, Streaming Providers or other Connected TV sources";
5731
5539
  readonly is_active: true;
5732
5540
  };
5733
5541
  readonly popup: {
5734
- readonly label: "Pop Up";
5542
+ readonly label: "Popup";
5735
5543
  readonly value: "popup";
5736
- readonly description: "Website pop up content";
5544
+ readonly description: "Used only for popup content embedded on a website (owned or third party)";
5737
5545
  readonly is_active: true;
5738
5546
  };
5739
- readonly banner: {
5740
- readonly label: "Banner";
5741
- readonly value: "banner";
5742
- readonly description: "Banner content on a website";
5547
+ readonly press_release: {
5548
+ readonly label: "Press Release";
5549
+ readonly value: "press_release";
5550
+ readonly description: "Used for content related to a press release";
5743
5551
  readonly is_active: true;
5744
5552
  };
5745
- readonly broker: {
5746
- readonly label: "Broker";
5747
- readonly value: "broker";
5748
- readonly description: "Content created for brokers";
5553
+ };
5554
+ type DefaultMediumKey = keyof typeof DEFAULT_MEDIUMS;
5555
+ type DefaultMediumValue = (typeof DEFAULT_MEDIUMS)[DefaultMediumKey];
5556
+
5557
+ declare const DEFAULT_SOURCES: {
5558
+ readonly meta: {
5559
+ readonly label: "Meta (FB/IG)";
5560
+ readonly value: "meta";
5561
+ readonly description: "Content published to all Meta platforms: Facebook, Instagram";
5749
5562
  readonly is_active: true;
5750
5563
  };
5751
- readonly consumer: {
5752
- readonly label: "Consumer";
5753
- readonly value: "consumer";
5754
- readonly description: "Content created for consumers";
5564
+ readonly facebook: {
5565
+ readonly label: "Facebook";
5566
+ readonly value: "meta_facebook";
5567
+ readonly description: "Content published exclusively on Facebook";
5755
5568
  readonly is_active: true;
5756
5569
  };
5757
- readonly redrop: {
5758
- readonly label: "Redrop";
5759
- readonly value: "redrop";
5760
- readonly description: "Content that is re-dropped to the same audience";
5570
+ readonly instagram: {
5571
+ readonly label: "Instagram";
5572
+ readonly value: "meta_instagram";
5573
+ readonly description: "Content published exclusively on Instagram";
5761
5574
  readonly is_active: true;
5762
5575
  };
5763
- readonly variant_a: {
5764
- readonly label: "Variant A";
5765
- readonly value: "variant_a";
5766
- readonly description: "Used for a/b testing and/or ad variant names.";
5576
+ readonly tiktok: {
5577
+ readonly label: "TikTok";
5578
+ readonly value: "tiktok";
5579
+ readonly description: "Content published exclusively on TikTok";
5767
5580
  readonly is_active: true;
5768
5581
  };
5769
- readonly variant_b: {
5770
- readonly label: "Variant B";
5771
- readonly value: "variant_b";
5772
- readonly description: "Used for a/b testing and/or ad variant names.";
5582
+ readonly twitter: {
5583
+ readonly label: "X/Twitter";
5584
+ readonly value: "twitter";
5585
+ readonly description: "Content for X.com formerly known as Twitter";
5773
5586
  readonly is_active: true;
5774
5587
  };
5775
- readonly variant_c: {
5776
- readonly label: "Variant C";
5777
- readonly value: "variant_c";
5778
- readonly description: "Used for a/b testing and/or ad variant names.";
5588
+ readonly xcom: {
5589
+ readonly label: "X.com";
5590
+ readonly value: "x_twitter";
5591
+ readonly description: "Content published exclusively on X.com";
5779
5592
  readonly is_active: true;
5780
5593
  };
5781
- readonly variant_d: {
5782
- readonly label: "Variant D";
5783
- readonly value: "variant_d";
5784
- readonly description: "Used for a/b testing and/or ad variant names.";
5594
+ readonly linkedin: {
5595
+ readonly label: "LinkedIn";
5596
+ readonly value: "linkedin";
5597
+ readonly description: "Content published exclusively on LinkedIn";
5785
5598
  readonly is_active: true;
5786
5599
  };
5787
- readonly client_creative: {
5788
- readonly label: "Client Creative";
5789
- readonly value: "client_creative";
5790
- readonly description: "Creative content was provided by the client to use—not GC designed content.";
5600
+ readonly pinterest: {
5601
+ readonly label: "Pinterest";
5602
+ readonly value: "pinterest";
5603
+ readonly description: "Content published exclusively on Pinterest";
5604
+ readonly is_active: true;
5605
+ };
5606
+ readonly youtube: {
5607
+ readonly label: "YouTube";
5608
+ readonly value: "youtube";
5609
+ readonly description: "Content published exclusively on YouTube";
5610
+ readonly is_active: true;
5611
+ };
5612
+ readonly sms: {
5613
+ readonly label: "Text Message (SMS)";
5614
+ readonly value: "sms";
5615
+ readonly description: "Content published exclusively via Text Message (SMS)";
5616
+ readonly is_active: true;
5617
+ };
5618
+ readonly email: {
5619
+ readonly label: "Email";
5620
+ readonly value: "email";
5621
+ readonly description: "Content published exclusively via Email";
5622
+ readonly is_active: true;
5623
+ };
5624
+ readonly google: {
5625
+ readonly label: "Google Ads";
5626
+ readonly value: "google";
5627
+ readonly description: "Content published exclusively via Google Ads";
5628
+ readonly is_active: true;
5629
+ };
5630
+ readonly realtorcom: {
5631
+ readonly label: "Realtor.com";
5632
+ readonly value: "rdc";
5633
+ readonly description: "Content published exclusively on Realtor.com (RDC)";
5634
+ readonly is_active: true;
5635
+ };
5636
+ readonly zillow: {
5637
+ readonly label: "Zillow";
5638
+ readonly value: "zillow";
5639
+ readonly description: "Content published exclusively on Zillow";
5640
+ readonly is_active: true;
5641
+ };
5642
+ readonly bdx_nhs: {
5643
+ readonly label: "New Home Source (Zonda)";
5644
+ readonly value: "bdx_nhs";
5645
+ readonly description: "Content published exclusively on New Home Source";
5646
+ readonly is_active: true;
5647
+ };
5648
+ readonly yelp: {
5649
+ readonly label: "Yelp";
5650
+ readonly value: "yelp";
5651
+ readonly description: "Content published exclusively on Yelp";
5652
+ readonly is_active: true;
5653
+ };
5654
+ readonly qr_code: {
5655
+ readonly label: "QR Code";
5656
+ readonly value: "qr_code";
5657
+ readonly description: "Content published exclusively via a QR Code";
5658
+ readonly is_active: true;
5659
+ };
5660
+ readonly stackadapt: {
5661
+ readonly label: "StackAdapt";
5662
+ readonly value: "stackadapt";
5663
+ readonly description: "Content published exclusively via StackAdapt";
5664
+ readonly is_active: true;
5665
+ };
5666
+ readonly newswire: {
5667
+ readonly label: "Newswire";
5668
+ readonly value: "newswire";
5669
+ readonly description: "Content published exclusively via Newswire";
5670
+ readonly is_active: true;
5671
+ };
5672
+ readonly mobile_app: {
5673
+ readonly label: "Mobile App";
5674
+ readonly value: "mobile_app";
5675
+ readonly description: "Content published exclusively via a Mobile App";
5676
+ readonly is_active: true;
5677
+ };
5678
+ readonly referral: {
5679
+ readonly label: "Referral";
5680
+ readonly value: "referral";
5681
+ readonly description: "Content published exclusively via a Referral source";
5791
5682
  readonly is_active: true;
5792
5683
  };
5793
5684
  };
5794
- type DefaultCreativeFormatVariantKey = keyof typeof default_creative_format_variants;
5795
- type DefaultCreativeFormatVariantValue = (typeof default_creative_format_variants)[DefaultCreativeFormatVariantKey];
5685
+ type DefaultSourceKey = keyof typeof DEFAULT_SOURCES;
5686
+ type DefaultSourceValue = (typeof DEFAULT_SOURCES)[DefaultSourceKey];
5796
5687
 
5797
5688
  declare function dateToday(): Date;
5798
5689
  declare function datePlusDays(today: Date, days?: number): Date;
@@ -5905,4 +5796,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
5905
5796
  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: - _ .">]>;
5906
5797
  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>;
5907
5798
 
5908
- 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, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateCampaignTargetDocument, SCreateCampaignTargetDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, 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, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiErrorDetail, type StrapiErrorKey, 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 };
5799
+ export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiErrorDetail, type StrapiErrorKey, 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 };