@joeygrable94/utm-src-pub-validators 0.0.52 → 0.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +671 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +788 -9
- package/dist/index.d.ts +788 -9
- package/dist/index.js +653 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -140,6 +140,12 @@ declare const SCreateGroupUserDocument: v.ObjectSchema<{
|
|
|
140
140
|
readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<GroupEntityScope[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<GroupEntityScope[], 1, "you must provide at least one scope">, v.MaxLengthAction<GroupEntityScope[], number, "you cannot provide more scopes than available">]>;
|
|
141
141
|
}, undefined>;
|
|
142
142
|
type SCreateGroupUserDocument = v.InferOutput<typeof SCreateGroupUserDocument>;
|
|
143
|
+
declare const SCreateGroupUserAssignMultipleUsers: v.ObjectSchema<{
|
|
144
|
+
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
145
|
+
readonly user: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, v.MinLengthAction<string[], 1, "Please assign at least one user to this group">]>;
|
|
146
|
+
readonly scopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<GroupEntityScope[], "invalid group scope provided">]>, "please provide an array of scopes">, v.MinLengthAction<GroupEntityScope[], 1, "you must provide at least one scope">, v.MaxLengthAction<GroupEntityScope[], number, "you cannot provide more scopes than available">]>;
|
|
147
|
+
}, undefined>;
|
|
148
|
+
type SCreateGroupUserAssignMultipleUsers = v.InferOutput<typeof SCreateGroupUserAssignMultipleUsers>;
|
|
143
149
|
declare const SCreateGroupUserDocumentRequest: v.ObjectSchema<{
|
|
144
150
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
145
151
|
readonly data: v.ObjectSchema<{
|
|
@@ -540,6 +546,38 @@ declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
|
540
546
|
readonly utm_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
541
547
|
}, undefined>;
|
|
542
548
|
type SCreateTrackingLinkDocument = v.InferOutput<typeof SCreateTrackingLinkDocument>;
|
|
549
|
+
declare const SCreateMultipleTrackingLinkDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
550
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
551
|
+
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
552
|
+
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
553
|
+
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
554
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url path">, v.TrimAction, v.MinLengthAction<string, 1, "the url path is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url path is too long, it must be 2038 characters or less">]>;
|
|
555
|
+
readonly query: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url query">, v.TrimAction, v.MinLengthAction<string, 1, "the url query is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url query is too long, it must be 2038 characters or less">]>;
|
|
556
|
+
readonly fragment: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url hash/fragment">, v.TrimAction, v.MinLengthAction<string, 1, "the url hash/fragment is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url hash/fragment is too long, it must be 2038 characters or less">]>;
|
|
557
|
+
readonly utm_source: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_source is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_source is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_source can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
558
|
+
readonly utm_medium: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_medium is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_medium is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_medium can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
559
|
+
readonly utm_campaign: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_campaign is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2024, "the utm_campaign is too long, it must be 2024 characters or less">, v.RegexAction<string, "utm_campaign can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
560
|
+
readonly utm_creative_format: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_creative_format is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2017, "the utm_creative_format is too long, it must be 2017 characters or less">, v.RegexAction<string, "utm_creative_format can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
561
|
+
readonly utm_content: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_content is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2025, "the utm_content is too long, it must be 2025 characters or less">, v.RegexAction<string, "utm_content can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
562
|
+
readonly utm_term: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_term is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2028, "the utm_term is too long, it must be 2028 characters or less">, v.RegexAction<string, "utm_term can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
563
|
+
readonly utm_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
564
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
565
|
+
is_active: boolean;
|
|
566
|
+
destination: string;
|
|
567
|
+
protocol: "http" | "https";
|
|
568
|
+
domain: string;
|
|
569
|
+
path: string;
|
|
570
|
+
query: string;
|
|
571
|
+
fragment: string;
|
|
572
|
+
utm_source: string;
|
|
573
|
+
utm_medium: string;
|
|
574
|
+
utm_campaign: string;
|
|
575
|
+
utm_creative_format: string;
|
|
576
|
+
utm_content: string;
|
|
577
|
+
utm_term: string;
|
|
578
|
+
utm_id: string;
|
|
579
|
+
}[], 1, "Please create at least one tracking link">]>;
|
|
580
|
+
type SCreateMultipleTrackingLinkDocuments = v.InferOutput<typeof SCreateMultipleTrackingLinkDocuments>;
|
|
543
581
|
declare const SCreateTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
544
582
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
545
583
|
readonly data: v.ObjectSchema<{
|
|
@@ -804,6 +842,20 @@ declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
|
804
842
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
805
843
|
}, undefined>;
|
|
806
844
|
type SCreateCampaignIdDocument = v.InferOutput<typeof SCreateCampaignIdDocument>;
|
|
845
|
+
declare const SCreateMultipleCampaignIdDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
846
|
+
readonly cost: v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>;
|
|
847
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
848
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
849
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
850
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
851
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
852
|
+
cost: number;
|
|
853
|
+
label: string;
|
|
854
|
+
value: string;
|
|
855
|
+
description: string | null;
|
|
856
|
+
is_active: boolean;
|
|
857
|
+
}[], 1, "At least one campaign ID is required">]>;
|
|
858
|
+
type SCreateMultipleCampaignIdDocuments = v.InferOutput<typeof SCreateMultipleCampaignIdDocuments>;
|
|
807
859
|
declare const SCreateCampaignIdDocumentRequest: v.ObjectSchema<{
|
|
808
860
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
809
861
|
readonly data: v.ObjectSchema<{
|
|
@@ -887,6 +939,18 @@ declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
|
887
939
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
888
940
|
}, undefined>;
|
|
889
941
|
type SCreateCampaignKeyDocument = v.InferOutput<typeof SCreateCampaignKeyDocument>;
|
|
942
|
+
declare const SCreateMultipleCampaignKeyDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
943
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
944
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
945
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
946
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
947
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
948
|
+
label: string;
|
|
949
|
+
value: string;
|
|
950
|
+
description: string | null;
|
|
951
|
+
is_active: boolean;
|
|
952
|
+
}[], 1, "At least one campaign key is required">]>;
|
|
953
|
+
type SCreateMultipleCampaignKeyDocuments = v.InferOutput<typeof SCreateMultipleCampaignKeyDocuments>;
|
|
890
954
|
declare const SCreateCampaignKeyDocumentRequest: v.ObjectSchema<{
|
|
891
955
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
892
956
|
readonly data: v.ObjectSchema<{
|
|
@@ -966,6 +1030,18 @@ declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
|
966
1030
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
967
1031
|
}, undefined>;
|
|
968
1032
|
type SCreateCampaignPhaseDocument = v.InferOutput<typeof SCreateCampaignPhaseDocument>;
|
|
1033
|
+
declare const SCreateMultipleCampaignPhaseDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1034
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1035
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1036
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1037
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1038
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1039
|
+
label: string;
|
|
1040
|
+
value: string;
|
|
1041
|
+
description: string | null;
|
|
1042
|
+
is_active: boolean;
|
|
1043
|
+
}[], 1, "At least one campaign phase is required">]>;
|
|
1044
|
+
type SCreateMultipleCampaignPhaseDocuments = v.InferOutput<typeof SCreateMultipleCampaignPhaseDocuments>;
|
|
969
1045
|
declare const SCreateCampaignPhaseDocumentRequest: v.ObjectSchema<{
|
|
970
1046
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
971
1047
|
readonly data: v.ObjectSchema<{
|
|
@@ -1045,6 +1121,18 @@ declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
|
1045
1121
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1046
1122
|
}, undefined>;
|
|
1047
1123
|
type SCreateCampaignProductDocument = v.InferOutput<typeof SCreateCampaignProductDocument>;
|
|
1124
|
+
declare const SCreateMultipleCampaignProductDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1125
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1126
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1127
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1128
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1129
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1130
|
+
label: string;
|
|
1131
|
+
value: string;
|
|
1132
|
+
description: string | null;
|
|
1133
|
+
is_active: boolean;
|
|
1134
|
+
}[], 1, "At least one campaign product is required">]>;
|
|
1135
|
+
type SCreateMultipleCampaignProductDocuments = v.InferOutput<typeof SCreateMultipleCampaignProductDocuments>;
|
|
1048
1136
|
declare const SCreateCampaignProductDocumentRequest: v.ObjectSchema<{
|
|
1049
1137
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1050
1138
|
readonly data: v.ObjectSchema<{
|
|
@@ -1124,6 +1212,18 @@ declare const SCreateContentDocument: v.ObjectSchema<{
|
|
|
1124
1212
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1125
1213
|
}, undefined>;
|
|
1126
1214
|
type SCreateContentDocument = v.InferOutput<typeof SCreateContentDocument>;
|
|
1215
|
+
declare const SCreateMultipleContentDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1216
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1217
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1218
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1219
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1220
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1221
|
+
label: string;
|
|
1222
|
+
value: string;
|
|
1223
|
+
description: string | null;
|
|
1224
|
+
is_active: boolean;
|
|
1225
|
+
}[], 1, "At least one term is required">]>;
|
|
1226
|
+
type SCreateMultipleContentDocuments = v.InferOutput<typeof SCreateMultipleContentDocuments>;
|
|
1127
1227
|
declare const SCreateContentDocumentRequest: v.ObjectSchema<{
|
|
1128
1228
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1129
1229
|
readonly data: v.ObjectSchema<{
|
|
@@ -1203,6 +1303,18 @@ declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
|
1203
1303
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1204
1304
|
}, undefined>;
|
|
1205
1305
|
type SCreateCreativeFormatVariantDocument = v.InferOutput<typeof SCreateCreativeFormatVariantDocument>;
|
|
1306
|
+
declare const SCreateMultipleCreativeFormatVariantDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1307
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1308
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1309
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1310
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1311
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1312
|
+
label: string;
|
|
1313
|
+
value: string;
|
|
1314
|
+
description: string | null;
|
|
1315
|
+
is_active: boolean;
|
|
1316
|
+
}[], 1, "At least one term is required">]>;
|
|
1317
|
+
type SCreateMultipleCreativeFormatVariantDocuments = v.InferOutput<typeof SCreateMultipleCreativeFormatVariantDocuments>;
|
|
1206
1318
|
declare const SCreateCreativeFormatVariantDocumentRequest: v.ObjectSchema<{
|
|
1207
1319
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1208
1320
|
readonly data: v.ObjectSchema<{
|
|
@@ -1282,6 +1394,18 @@ declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
|
1282
1394
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1283
1395
|
}, undefined>;
|
|
1284
1396
|
type SCreateCreativeFormatDocument = v.InferOutput<typeof SCreateCreativeFormatDocument>;
|
|
1397
|
+
declare const SCreateMultipleCreativeFormatDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1398
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1399
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1400
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1401
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1402
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1403
|
+
label: string;
|
|
1404
|
+
value: string;
|
|
1405
|
+
description: string | null;
|
|
1406
|
+
is_active: boolean;
|
|
1407
|
+
}[], 1, "At least one creative format is required">]>;
|
|
1408
|
+
type SCreateMultipleCreativeFormatDocuments = v.InferOutput<typeof SCreateMultipleCreativeFormatDocuments>;
|
|
1285
1409
|
declare const SCreateCreativeFormatDocumentRequest: v.ObjectSchema<{
|
|
1286
1410
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1287
1411
|
readonly data: v.ObjectSchema<{
|
|
@@ -1361,6 +1485,18 @@ declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
|
1361
1485
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1362
1486
|
}, undefined>;
|
|
1363
1487
|
type SCreateMediumDocument = v.InferOutput<typeof SCreateMediumDocument>;
|
|
1488
|
+
declare const SCreateMultipleMediumDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1489
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1490
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1491
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1492
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1493
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1494
|
+
label: string;
|
|
1495
|
+
value: string;
|
|
1496
|
+
description: string | null;
|
|
1497
|
+
is_active: boolean;
|
|
1498
|
+
}[], 1, "At least one medium is required">]>;
|
|
1499
|
+
type SCreateMultipleMediumDocuments = v.InferOutput<typeof SCreateMultipleMediumDocuments>;
|
|
1364
1500
|
declare const SCreateMediumDocumentRequest: v.ObjectSchema<{
|
|
1365
1501
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1366
1502
|
readonly data: v.ObjectSchema<{
|
|
@@ -1440,6 +1576,18 @@ declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
|
1440
1576
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1441
1577
|
}, undefined>;
|
|
1442
1578
|
type SCreateSourceDocument = v.InferOutput<typeof SCreateSourceDocument>;
|
|
1579
|
+
declare const SCreateMultipleSourceDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1580
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1581
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1582
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1583
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1584
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1585
|
+
label: string;
|
|
1586
|
+
value: string;
|
|
1587
|
+
description: string | null;
|
|
1588
|
+
is_active: boolean;
|
|
1589
|
+
}[], 1, "At least one source is required">]>;
|
|
1590
|
+
type SCreateMultipleSourceDocuments = v.InferOutput<typeof SCreateMultipleSourceDocuments>;
|
|
1443
1591
|
declare const SCreateSourceDocumentRequest: v.ObjectSchema<{
|
|
1444
1592
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1445
1593
|
readonly data: v.ObjectSchema<{
|
|
@@ -1519,6 +1667,18 @@ declare const SCreateTermDocument: v.ObjectSchema<{
|
|
|
1519
1667
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1520
1668
|
}, undefined>;
|
|
1521
1669
|
type SCreateTermDocument = v.InferOutput<typeof SCreateTermDocument>;
|
|
1670
|
+
declare const SCreateMultipleTermDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1671
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1672
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1673
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1674
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1675
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1676
|
+
label: string;
|
|
1677
|
+
value: string;
|
|
1678
|
+
description: string | null;
|
|
1679
|
+
is_active: boolean;
|
|
1680
|
+
}[], 1, "At least one term is required">]>;
|
|
1681
|
+
type SCreateMultipleTermDocuments = v.InferOutput<typeof SCreateMultipleTermDocuments>;
|
|
1522
1682
|
declare const SCreateTermDocumentRequest: v.ObjectSchema<{
|
|
1523
1683
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1524
1684
|
readonly data: v.ObjectSchema<{
|
|
@@ -1598,6 +1758,18 @@ declare const SCreateWebsiteDocument: v.ObjectSchema<{
|
|
|
1598
1758
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1599
1759
|
}, undefined>;
|
|
1600
1760
|
type SCreateWebsiteDocument = v.InferOutput<typeof SCreateWebsiteDocument>;
|
|
1761
|
+
declare const SCreateMultipleWebsiteDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1762
|
+
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
1763
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1764
|
+
readonly is_secure: v.BooleanSchema<"isSecure must be a boolean">;
|
|
1765
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1766
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1767
|
+
domain: string;
|
|
1768
|
+
description: string | null | undefined;
|
|
1769
|
+
is_secure: boolean;
|
|
1770
|
+
is_active: boolean;
|
|
1771
|
+
}[], 1, "At least one website is required">]>;
|
|
1772
|
+
type SCreateMultipleWebsiteDocuments = v.InferOutput<typeof SCreateMultipleWebsiteDocuments>;
|
|
1601
1773
|
declare const SCreateWebsiteDocumentRequest: v.ObjectSchema<{
|
|
1602
1774
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1603
1775
|
readonly data: v.ObjectSchema<{
|
|
@@ -1658,6 +1830,14 @@ declare const SDeleteWebsiteDocument: v.ObjectSchema<{
|
|
|
1658
1830
|
}, undefined>;
|
|
1659
1831
|
type SDeleteWebsiteDocument = v.InferOutput<typeof SDeleteWebsiteDocument>;
|
|
1660
1832
|
|
|
1833
|
+
type SBaseDocument = {
|
|
1834
|
+
id: number;
|
|
1835
|
+
documentId: string;
|
|
1836
|
+
publishedAt?: string | null;
|
|
1837
|
+
createdAt: string;
|
|
1838
|
+
updatedAt: string;
|
|
1839
|
+
};
|
|
1840
|
+
|
|
1661
1841
|
declare const SReadUserDocumentToken: v.ObjectSchema<{
|
|
1662
1842
|
readonly token: v.StringSchema<undefined>;
|
|
1663
1843
|
}, undefined>;
|
|
@@ -2188,14 +2368,6 @@ type SRoleDocumentOut = v.InferOutput<typeof SRoleDocument>;
|
|
|
2188
2368
|
type SRoleRelationsDocumentIn = v.InferInput<typeof SRoleRelationsDocument>;
|
|
2189
2369
|
type SRoleRelationsDocumentOut = v.InferOutput<typeof SRoleRelationsDocument>;
|
|
2190
2370
|
|
|
2191
|
-
type SBaseDocument = {
|
|
2192
|
-
id: number;
|
|
2193
|
-
documentId: string;
|
|
2194
|
-
publishedAt?: string | null;
|
|
2195
|
-
createdAt: string;
|
|
2196
|
-
updatedAt: string;
|
|
2197
|
-
};
|
|
2198
|
-
|
|
2199
2371
|
type MediaFormat = {
|
|
2200
2372
|
ext: string;
|
|
2201
2373
|
url: string;
|
|
@@ -4759,6 +4931,613 @@ declare const SWebsiteDocumentWithRelations: v.ObjectSchema<{
|
|
|
4759
4931
|
}, undefined>;
|
|
4760
4932
|
type SWebsiteDocumentWithRelations = v.InferOutput<typeof SWebsiteDocumentWithRelations>;
|
|
4761
4933
|
|
|
4934
|
+
declare const default_sources: {
|
|
4935
|
+
readonly meta: {
|
|
4936
|
+
readonly label: "Meta (FB/IG)";
|
|
4937
|
+
readonly value: "meta";
|
|
4938
|
+
readonly description: "Content published to all Meta platforms: Facebook, Instagram";
|
|
4939
|
+
readonly is_active: true;
|
|
4940
|
+
};
|
|
4941
|
+
readonly facebook: {
|
|
4942
|
+
readonly label: "Facebook";
|
|
4943
|
+
readonly value: "meta_facebook";
|
|
4944
|
+
readonly description: "Content published exclusively on Facebook";
|
|
4945
|
+
readonly is_active: true;
|
|
4946
|
+
};
|
|
4947
|
+
readonly instagram: {
|
|
4948
|
+
readonly label: "Instagram";
|
|
4949
|
+
readonly value: "meta_instagram";
|
|
4950
|
+
readonly description: "Content published exclusively on Instagram";
|
|
4951
|
+
readonly is_active: true;
|
|
4952
|
+
};
|
|
4953
|
+
readonly tiktok: {
|
|
4954
|
+
readonly label: "TikTok";
|
|
4955
|
+
readonly value: "tiktok";
|
|
4956
|
+
readonly description: "Content published exclusively on TikTok";
|
|
4957
|
+
readonly is_active: true;
|
|
4958
|
+
};
|
|
4959
|
+
readonly twitter: {
|
|
4960
|
+
readonly label: "X/Twitter";
|
|
4961
|
+
readonly value: "twitter";
|
|
4962
|
+
readonly description: "Content for X.com formerly known as Twitter";
|
|
4963
|
+
readonly is_active: true;
|
|
4964
|
+
};
|
|
4965
|
+
readonly xcom: {
|
|
4966
|
+
readonly label: "X.com";
|
|
4967
|
+
readonly value: "x_twitter";
|
|
4968
|
+
readonly description: "Content published exclusively on X.com";
|
|
4969
|
+
readonly is_active: true;
|
|
4970
|
+
};
|
|
4971
|
+
readonly linkedin: {
|
|
4972
|
+
readonly label: "LinkedIn";
|
|
4973
|
+
readonly value: "linkedin";
|
|
4974
|
+
readonly description: "Content published exclusively on LinkedIn";
|
|
4975
|
+
readonly is_active: true;
|
|
4976
|
+
};
|
|
4977
|
+
readonly pinterest: {
|
|
4978
|
+
readonly label: "Pinterest";
|
|
4979
|
+
readonly value: "pinterest";
|
|
4980
|
+
readonly description: "Content published exclusively on Pinterest";
|
|
4981
|
+
readonly is_active: true;
|
|
4982
|
+
};
|
|
4983
|
+
readonly youtube: {
|
|
4984
|
+
readonly label: "YouTube";
|
|
4985
|
+
readonly value: "youtube";
|
|
4986
|
+
readonly description: "Content published exclusively on YouTube";
|
|
4987
|
+
readonly is_active: true;
|
|
4988
|
+
};
|
|
4989
|
+
readonly sms: {
|
|
4990
|
+
readonly label: "Text Message (SMS)";
|
|
4991
|
+
readonly value: "sms";
|
|
4992
|
+
readonly description: "Content published exclusively via Text Message (SMS)";
|
|
4993
|
+
readonly is_active: true;
|
|
4994
|
+
};
|
|
4995
|
+
readonly email: {
|
|
4996
|
+
readonly label: "Email";
|
|
4997
|
+
readonly value: "email";
|
|
4998
|
+
readonly description: "Content published exclusively via Email";
|
|
4999
|
+
readonly is_active: true;
|
|
5000
|
+
};
|
|
5001
|
+
readonly google: {
|
|
5002
|
+
readonly label: "Google Ads";
|
|
5003
|
+
readonly value: "google";
|
|
5004
|
+
readonly description: "Content published exclusively via Google Ads";
|
|
5005
|
+
readonly is_active: true;
|
|
5006
|
+
};
|
|
5007
|
+
readonly realtorcom: {
|
|
5008
|
+
readonly label: "Realtor.com";
|
|
5009
|
+
readonly value: "rdc";
|
|
5010
|
+
readonly description: "Content published exclusively on Realtor.com (RDC)";
|
|
5011
|
+
readonly is_active: true;
|
|
5012
|
+
};
|
|
5013
|
+
readonly zillow: {
|
|
5014
|
+
readonly label: "Zillow";
|
|
5015
|
+
readonly value: "zillow";
|
|
5016
|
+
readonly description: "Content published exclusively on Zillow";
|
|
5017
|
+
readonly is_active: true;
|
|
5018
|
+
};
|
|
5019
|
+
readonly bdx_nhs: {
|
|
5020
|
+
readonly label: "New Home Source (Zonda)";
|
|
5021
|
+
readonly value: "bdx_nhs";
|
|
5022
|
+
readonly description: "Content published exclusively on New Home Source";
|
|
5023
|
+
readonly is_active: true;
|
|
5024
|
+
};
|
|
5025
|
+
readonly yelp: {
|
|
5026
|
+
readonly label: "Yelp";
|
|
5027
|
+
readonly value: "yelp";
|
|
5028
|
+
readonly description: "Content published exclusively on Yelp";
|
|
5029
|
+
readonly is_active: true;
|
|
5030
|
+
};
|
|
5031
|
+
readonly qr_code: {
|
|
5032
|
+
readonly label: "QR Code";
|
|
5033
|
+
readonly value: "qr_code";
|
|
5034
|
+
readonly description: "Content published exclusively via a QR Code";
|
|
5035
|
+
readonly is_active: true;
|
|
5036
|
+
};
|
|
5037
|
+
readonly stackadapt: {
|
|
5038
|
+
readonly label: "StackAdapt";
|
|
5039
|
+
readonly value: "stackadapt";
|
|
5040
|
+
readonly description: "Content published exclusively via StackAdapt";
|
|
5041
|
+
readonly is_active: true;
|
|
5042
|
+
};
|
|
5043
|
+
readonly newswire: {
|
|
5044
|
+
readonly label: "Newswire";
|
|
5045
|
+
readonly value: "newswire";
|
|
5046
|
+
readonly description: "Content published exclusively via Newswire";
|
|
5047
|
+
readonly is_active: true;
|
|
5048
|
+
};
|
|
5049
|
+
readonly mobile_app: {
|
|
5050
|
+
readonly label: "Mobile App";
|
|
5051
|
+
readonly value: "mobile_app";
|
|
5052
|
+
readonly description: "Content published exclusively via a Mobile App";
|
|
5053
|
+
readonly is_active: true;
|
|
5054
|
+
};
|
|
5055
|
+
readonly referral: {
|
|
5056
|
+
readonly label: "Referral";
|
|
5057
|
+
readonly value: "referral";
|
|
5058
|
+
readonly description: "Content published exclusively via a Referral source";
|
|
5059
|
+
readonly is_active: true;
|
|
5060
|
+
};
|
|
5061
|
+
};
|
|
5062
|
+
type DefaultSourceKey = keyof typeof default_sources;
|
|
5063
|
+
type DefaultSourceValue = (typeof default_sources)[DefaultSourceKey];
|
|
5064
|
+
declare const default_mediums: {
|
|
5065
|
+
readonly social: {
|
|
5066
|
+
readonly label: "Organic Social";
|
|
5067
|
+
readonly value: "social";
|
|
5068
|
+
readonly description: "Organic social posts across all platforms";
|
|
5069
|
+
readonly is_active: true;
|
|
5070
|
+
};
|
|
5071
|
+
readonly paid_social: {
|
|
5072
|
+
readonly label: "Paid Social";
|
|
5073
|
+
readonly value: "paid_social";
|
|
5074
|
+
readonly description: "Any paid media on social platforms";
|
|
5075
|
+
readonly is_active: true;
|
|
5076
|
+
};
|
|
5077
|
+
readonly paid_search: {
|
|
5078
|
+
readonly label: "Paid Search";
|
|
5079
|
+
readonly value: "paid_search";
|
|
5080
|
+
readonly description: "Reserved for text-based ads on search platforms (google, bing, etc)";
|
|
5081
|
+
readonly is_active: true;
|
|
5082
|
+
};
|
|
5083
|
+
readonly paid_display: {
|
|
5084
|
+
readonly label: "Paid Display";
|
|
5085
|
+
readonly value: "paid_display";
|
|
5086
|
+
readonly description: "Any image-based ads through a paid media buying platform (excluding social)";
|
|
5087
|
+
readonly is_active: true;
|
|
5088
|
+
};
|
|
5089
|
+
readonly paid_video: {
|
|
5090
|
+
readonly label: "Paid Video";
|
|
5091
|
+
readonly value: "paid_video";
|
|
5092
|
+
readonly description: "Any video-based ads through a paid media buying platform (excluding social)";
|
|
5093
|
+
readonly is_active: true;
|
|
5094
|
+
};
|
|
5095
|
+
readonly paid_listing: {
|
|
5096
|
+
readonly label: "Paid Listing";
|
|
5097
|
+
readonly value: "paid_listing";
|
|
5098
|
+
readonly description: "Paid product listing on a ad/partner/affiliated website";
|
|
5099
|
+
readonly is_active: true;
|
|
5100
|
+
};
|
|
5101
|
+
readonly paid: {
|
|
5102
|
+
readonly label: "Paid";
|
|
5103
|
+
readonly value: "paid";
|
|
5104
|
+
readonly description: "Reserved for any other paid promotions that do not fit into the other categories";
|
|
5105
|
+
readonly is_active: true;
|
|
5106
|
+
};
|
|
5107
|
+
readonly blast: {
|
|
5108
|
+
readonly label: "Blast";
|
|
5109
|
+
readonly value: "blast";
|
|
5110
|
+
readonly description: "Used when sending a piece of content through an OWNED media source (such as email or text) to an entire group of people all at once";
|
|
5111
|
+
readonly is_active: true;
|
|
5112
|
+
};
|
|
5113
|
+
readonly paid_blast: {
|
|
5114
|
+
readonly label: "Paid Blast";
|
|
5115
|
+
readonly value: "paid_blast";
|
|
5116
|
+
readonly description: "Used when sending a piece of content through a PAID media source (such as paid email lists or third-party text referral) to an entire group of people all at once";
|
|
5117
|
+
readonly is_active: true;
|
|
5118
|
+
};
|
|
5119
|
+
readonly flow: {
|
|
5120
|
+
readonly label: "Flow";
|
|
5121
|
+
readonly value: "flow";
|
|
5122
|
+
readonly description: "Used when sending a piece of content through an OWNED media source (such as email or text) to a single user as a part of a multi-touch drip campaign";
|
|
5123
|
+
readonly is_active: true;
|
|
5124
|
+
};
|
|
5125
|
+
readonly signage: {
|
|
5126
|
+
readonly label: "Signage";
|
|
5127
|
+
readonly value: "signage";
|
|
5128
|
+
readonly description: "Used when a user scans a QR code off of a sign, can add others here if we use QR codes on other content.";
|
|
5129
|
+
readonly is_active: true;
|
|
5130
|
+
};
|
|
5131
|
+
readonly content: {
|
|
5132
|
+
readonly label: "Content";
|
|
5133
|
+
readonly value: "content";
|
|
5134
|
+
readonly description: "Used for generic content mediums other than the mediums listed";
|
|
5135
|
+
readonly is_active: true;
|
|
5136
|
+
};
|
|
5137
|
+
readonly paid_ctv: {
|
|
5138
|
+
readonly label: "Connected TV";
|
|
5139
|
+
readonly value: "paid_ctv";
|
|
5140
|
+
readonly description: "Used for paid ads on TV, Streaming Providers or other Connected TV sources";
|
|
5141
|
+
readonly is_active: true;
|
|
5142
|
+
};
|
|
5143
|
+
readonly popup: {
|
|
5144
|
+
readonly label: "Popup";
|
|
5145
|
+
readonly value: "popup";
|
|
5146
|
+
readonly description: "Used only for popup content embedded on a website (owned or third party)";
|
|
5147
|
+
readonly is_active: true;
|
|
5148
|
+
};
|
|
5149
|
+
readonly press_release: {
|
|
5150
|
+
readonly label: "Press Release";
|
|
5151
|
+
readonly value: "press_release";
|
|
5152
|
+
readonly description: "Used for content related to a press release";
|
|
5153
|
+
readonly is_active: true;
|
|
5154
|
+
};
|
|
5155
|
+
};
|
|
5156
|
+
type DefaultMediumKey = keyof typeof default_mediums;
|
|
5157
|
+
type DefaultMediumValue = (typeof default_mediums)[DefaultMediumKey];
|
|
5158
|
+
declare const default_campaign_phases: {
|
|
5159
|
+
readonly brand: {
|
|
5160
|
+
readonly label: "Brand";
|
|
5161
|
+
readonly value: "brand";
|
|
5162
|
+
readonly description: "Company branded content";
|
|
5163
|
+
readonly is_active: true;
|
|
5164
|
+
};
|
|
5165
|
+
readonly p1: {
|
|
5166
|
+
readonly label: "Phase 1";
|
|
5167
|
+
readonly value: "p1";
|
|
5168
|
+
readonly description: "Interest list building";
|
|
5169
|
+
readonly is_active: true;
|
|
5170
|
+
};
|
|
5171
|
+
readonly p2: {
|
|
5172
|
+
readonly label: "Phase 2";
|
|
5173
|
+
readonly value: "p2";
|
|
5174
|
+
readonly description: "Pre-qual/pre-sale";
|
|
5175
|
+
readonly is_active: true;
|
|
5176
|
+
};
|
|
5177
|
+
readonly p3: {
|
|
5178
|
+
readonly label: "Phase 3";
|
|
5179
|
+
readonly value: "p3";
|
|
5180
|
+
readonly description: "Grand opening/now available";
|
|
5181
|
+
readonly is_active: true;
|
|
5182
|
+
};
|
|
5183
|
+
readonly p4: {
|
|
5184
|
+
readonly label: "Phase 4";
|
|
5185
|
+
readonly value: "p4";
|
|
5186
|
+
readonly description: "For sale/maintenance period";
|
|
5187
|
+
readonly is_active: true;
|
|
5188
|
+
};
|
|
5189
|
+
readonly p5: {
|
|
5190
|
+
readonly label: "Phase 5";
|
|
5191
|
+
readonly value: "p5";
|
|
5192
|
+
readonly description: "Final sale";
|
|
5193
|
+
readonly is_active: true;
|
|
5194
|
+
};
|
|
5195
|
+
};
|
|
5196
|
+
type DefaultCampaignPhaseKey = keyof typeof default_campaign_phases;
|
|
5197
|
+
type DefaultCampaignPhaseValue = (typeof default_campaign_phases)[DefaultCampaignPhaseKey];
|
|
5198
|
+
declare const default_contents: {
|
|
5199
|
+
readonly testimonial: {
|
|
5200
|
+
readonly label: "Testimonial";
|
|
5201
|
+
readonly value: "testimonial";
|
|
5202
|
+
readonly description: "Buyer telling story about their purchase experience";
|
|
5203
|
+
readonly is_active: true;
|
|
5204
|
+
};
|
|
5205
|
+
readonly agent: {
|
|
5206
|
+
readonly label: "Agent";
|
|
5207
|
+
readonly value: "agent";
|
|
5208
|
+
readonly description: "Salespeople on camera marketing their neighborhood";
|
|
5209
|
+
readonly is_active: true;
|
|
5210
|
+
};
|
|
5211
|
+
readonly education: {
|
|
5212
|
+
readonly label: "Education";
|
|
5213
|
+
readonly value: "education";
|
|
5214
|
+
readonly description: "Content that is to educate buyers on any variety of home buying process";
|
|
5215
|
+
readonly is_active: true;
|
|
5216
|
+
};
|
|
5217
|
+
readonly charity: {
|
|
5218
|
+
readonly label: "Charity";
|
|
5219
|
+
readonly value: "charity";
|
|
5220
|
+
readonly description: "Content related to any charitable efforts on behalf of builder";
|
|
5221
|
+
readonly is_active: true;
|
|
5222
|
+
};
|
|
5223
|
+
readonly recruitment: {
|
|
5224
|
+
readonly label: "Recruitment";
|
|
5225
|
+
readonly value: "recruitment";
|
|
5226
|
+
readonly description: "Content showcasing staff and culture to recruit future employees";
|
|
5227
|
+
readonly is_active: true;
|
|
5228
|
+
};
|
|
5229
|
+
readonly lifestyle: {
|
|
5230
|
+
readonly label: "Lifestyle";
|
|
5231
|
+
readonly value: "lifestyle";
|
|
5232
|
+
readonly description: "Content about the surrounding area and what it’s like to live in a place";
|
|
5233
|
+
readonly is_active: true;
|
|
5234
|
+
};
|
|
5235
|
+
readonly milestone: {
|
|
5236
|
+
readonly label: "Milestone";
|
|
5237
|
+
readonly value: "milestone";
|
|
5238
|
+
readonly description: "Benchmarks in the building process and life of a community";
|
|
5239
|
+
readonly is_active: true;
|
|
5240
|
+
};
|
|
5241
|
+
readonly trends: {
|
|
5242
|
+
readonly label: "Trends";
|
|
5243
|
+
readonly value: "trends";
|
|
5244
|
+
readonly description: "Content that is trending on social media";
|
|
5245
|
+
readonly is_active: true;
|
|
5246
|
+
};
|
|
5247
|
+
readonly brand: {
|
|
5248
|
+
readonly label: "Brand";
|
|
5249
|
+
readonly value: "brand";
|
|
5250
|
+
readonly description: "Content focused on client culture and mission and who they are";
|
|
5251
|
+
readonly is_active: true;
|
|
5252
|
+
};
|
|
5253
|
+
readonly events: {
|
|
5254
|
+
readonly label: "Events";
|
|
5255
|
+
readonly value: "events";
|
|
5256
|
+
readonly description: "Content about events like grand openings, phase releases, tours, parties, etc";
|
|
5257
|
+
readonly is_active: true;
|
|
5258
|
+
};
|
|
5259
|
+
readonly personalization: {
|
|
5260
|
+
readonly label: "Personalization";
|
|
5261
|
+
readonly value: "personalization";
|
|
5262
|
+
readonly description: "For personalized content";
|
|
5263
|
+
readonly is_active: true;
|
|
5264
|
+
};
|
|
5265
|
+
readonly tour_guide: {
|
|
5266
|
+
readonly label: "Tour Guide";
|
|
5267
|
+
readonly value: "tour_guide";
|
|
5268
|
+
readonly description: "Used for content that promotes touring a physical space";
|
|
5269
|
+
readonly is_active: true;
|
|
5270
|
+
};
|
|
5271
|
+
readonly product: {
|
|
5272
|
+
readonly label: "Product";
|
|
5273
|
+
readonly value: "product";
|
|
5274
|
+
readonly description: "Any content specifically about a product or sale item";
|
|
5275
|
+
readonly is_active: true;
|
|
5276
|
+
};
|
|
5277
|
+
readonly recipes: {
|
|
5278
|
+
readonly label: "Recipes";
|
|
5279
|
+
readonly value: "recipes";
|
|
5280
|
+
readonly description: "Content featuring recipes and cooking tips";
|
|
5281
|
+
readonly is_active: true;
|
|
5282
|
+
};
|
|
5283
|
+
readonly holiday: {
|
|
5284
|
+
readonly label: "Holiday";
|
|
5285
|
+
readonly value: "holiday";
|
|
5286
|
+
readonly description: "Content about national holidays";
|
|
5287
|
+
readonly is_active: true;
|
|
5288
|
+
};
|
|
5289
|
+
readonly culture: {
|
|
5290
|
+
readonly label: "Culture";
|
|
5291
|
+
readonly value: "culture";
|
|
5292
|
+
readonly description: "Content about our team, things we do, how we work together, our values";
|
|
5293
|
+
readonly is_active: true;
|
|
5294
|
+
};
|
|
5295
|
+
readonly our_work: {
|
|
5296
|
+
readonly label: "Our Work";
|
|
5297
|
+
readonly value: "our_work";
|
|
5298
|
+
readonly description: "Content about the work we do for our clients or ourselves, our thought process";
|
|
5299
|
+
readonly is_active: true;
|
|
5300
|
+
};
|
|
5301
|
+
readonly other: {
|
|
5302
|
+
readonly label: "Other";
|
|
5303
|
+
readonly value: "other";
|
|
5304
|
+
readonly description: "For other content not defined in by a specific content pillar";
|
|
5305
|
+
readonly is_active: true;
|
|
5306
|
+
};
|
|
5307
|
+
};
|
|
5308
|
+
type DefaultContentKey = keyof typeof default_contents;
|
|
5309
|
+
type DefaultContentValue = (typeof default_contents)[DefaultContentKey];
|
|
5310
|
+
declare const default_creative_formats: {
|
|
5311
|
+
readonly post: {
|
|
5312
|
+
readonly label: "Post";
|
|
5313
|
+
readonly value: "post";
|
|
5314
|
+
readonly description: "organic content post";
|
|
5315
|
+
readonly is_active: true;
|
|
5316
|
+
};
|
|
5317
|
+
readonly content: {
|
|
5318
|
+
readonly label: "Content";
|
|
5319
|
+
readonly value: "content";
|
|
5320
|
+
readonly description: "organic content or other content (not social post)";
|
|
5321
|
+
readonly is_active: true;
|
|
5322
|
+
};
|
|
5323
|
+
readonly reel: {
|
|
5324
|
+
readonly label: "Reel";
|
|
5325
|
+
readonly value: "reel";
|
|
5326
|
+
readonly description: "organic content for video reels";
|
|
5327
|
+
readonly is_active: true;
|
|
5328
|
+
};
|
|
5329
|
+
readonly reel_ad: {
|
|
5330
|
+
readonly label: "Reel Ad";
|
|
5331
|
+
readonly value: "reel_ad";
|
|
5332
|
+
readonly description: "paid media for video reel ads";
|
|
5333
|
+
readonly is_active: true;
|
|
5334
|
+
};
|
|
5335
|
+
readonly story_content: {
|
|
5336
|
+
readonly label: "Story";
|
|
5337
|
+
readonly value: "story_content";
|
|
5338
|
+
readonly description: "Ephemeral story content";
|
|
5339
|
+
readonly is_active: true;
|
|
5340
|
+
};
|
|
5341
|
+
readonly story_ad: {
|
|
5342
|
+
readonly label: "Story Ad";
|
|
5343
|
+
readonly value: "story_ad";
|
|
5344
|
+
readonly description: "Paid ephemeral story content";
|
|
5345
|
+
readonly is_active: true;
|
|
5346
|
+
};
|
|
5347
|
+
readonly listing: {
|
|
5348
|
+
readonly label: "Listing";
|
|
5349
|
+
readonly value: "listing";
|
|
5350
|
+
readonly description: "ad listing that blends into organic listings";
|
|
5351
|
+
readonly is_active: true;
|
|
5352
|
+
};
|
|
5353
|
+
readonly native: {
|
|
5354
|
+
readonly label: "Native Ad";
|
|
5355
|
+
readonly value: "native";
|
|
5356
|
+
readonly description: "Content that blends in with the native content on an affiliate website";
|
|
5357
|
+
readonly is_active: true;
|
|
5358
|
+
};
|
|
5359
|
+
readonly traffic: {
|
|
5360
|
+
readonly label: "Traffic";
|
|
5361
|
+
readonly value: "traffic_ad";
|
|
5362
|
+
readonly description: "For Ads designed to drive traffic to a specific destination";
|
|
5363
|
+
readonly is_active: true;
|
|
5364
|
+
};
|
|
5365
|
+
readonly darkpost: {
|
|
5366
|
+
readonly label: "Dark Post";
|
|
5367
|
+
readonly value: "darkpost";
|
|
5368
|
+
readonly description: "For Meta DarkPosts";
|
|
5369
|
+
readonly is_active: true;
|
|
5370
|
+
};
|
|
5371
|
+
readonly boost: {
|
|
5372
|
+
readonly label: "Boost";
|
|
5373
|
+
readonly value: "boost";
|
|
5374
|
+
readonly description: "For boosted content on social";
|
|
5375
|
+
readonly is_active: true;
|
|
5376
|
+
};
|
|
5377
|
+
readonly collection: {
|
|
5378
|
+
readonly label: "Collection Ad";
|
|
5379
|
+
readonly value: "collection";
|
|
5380
|
+
readonly description: "For Meta Collection Ads";
|
|
5381
|
+
readonly is_active: true;
|
|
5382
|
+
};
|
|
5383
|
+
readonly conversion: {
|
|
5384
|
+
readonly label: "Conversion Ad";
|
|
5385
|
+
readonly value: "conversion";
|
|
5386
|
+
readonly description: "For Meta Conversion Ads";
|
|
5387
|
+
readonly is_active: true;
|
|
5388
|
+
};
|
|
5389
|
+
readonly lead_ad: {
|
|
5390
|
+
readonly label: "Lead Ad";
|
|
5391
|
+
readonly value: "lead_ad";
|
|
5392
|
+
readonly description: "For Meta Lead Ads";
|
|
5393
|
+
readonly is_active: true;
|
|
5394
|
+
};
|
|
5395
|
+
readonly internal: {
|
|
5396
|
+
readonly label: "Internal";
|
|
5397
|
+
readonly value: "internal";
|
|
5398
|
+
readonly description: "Emails sent via an Internal CRM";
|
|
5399
|
+
readonly is_active: true;
|
|
5400
|
+
};
|
|
5401
|
+
readonly retargeting: {
|
|
5402
|
+
readonly label: "Retargeting";
|
|
5403
|
+
readonly value: "retargeting";
|
|
5404
|
+
readonly description: "Ad retargeted to a different audience than the original content";
|
|
5405
|
+
readonly is_active: true;
|
|
5406
|
+
};
|
|
5407
|
+
readonly profile: {
|
|
5408
|
+
readonly label: "Profile";
|
|
5409
|
+
readonly value: "profile";
|
|
5410
|
+
readonly description: "For links that are used on platform profile pages or SmartBio like profile referral sources";
|
|
5411
|
+
readonly is_active: true;
|
|
5412
|
+
};
|
|
5413
|
+
readonly sitelink: {
|
|
5414
|
+
readonly label: "Site Link";
|
|
5415
|
+
readonly value: "sitelink";
|
|
5416
|
+
readonly description: "For the additional links provided in a Google Search Ad.";
|
|
5417
|
+
readonly is_active: true;
|
|
5418
|
+
};
|
|
5419
|
+
readonly sponsored_ad: {
|
|
5420
|
+
readonly label: "Sponsored Ad";
|
|
5421
|
+
readonly value: "sponsored_ad";
|
|
5422
|
+
readonly description: "For LinkedIn Sponsored Ad posts.";
|
|
5423
|
+
readonly is_active: true;
|
|
5424
|
+
};
|
|
5425
|
+
};
|
|
5426
|
+
type DefaultCreativeFormatKey = keyof typeof default_creative_formats;
|
|
5427
|
+
type DefaultCreativeFormatValue = (typeof default_creative_formats)[DefaultCreativeFormatKey];
|
|
5428
|
+
declare const default_creative_format_variants: {
|
|
5429
|
+
readonly short_form: {
|
|
5430
|
+
readonly label: "Short Form Video";
|
|
5431
|
+
readonly value: "short_form";
|
|
5432
|
+
readonly description: "Short form video content";
|
|
5433
|
+
readonly is_active: true;
|
|
5434
|
+
};
|
|
5435
|
+
readonly long_form: {
|
|
5436
|
+
readonly label: "Long Form Video";
|
|
5437
|
+
readonly value: "long_form";
|
|
5438
|
+
readonly description: "Long form video content";
|
|
5439
|
+
readonly is_active: true;
|
|
5440
|
+
};
|
|
5441
|
+
readonly image: {
|
|
5442
|
+
readonly label: "Image";
|
|
5443
|
+
readonly value: "image";
|
|
5444
|
+
readonly description: "Content that rely on photography to convey a message";
|
|
5445
|
+
readonly is_active: true;
|
|
5446
|
+
};
|
|
5447
|
+
readonly gif: {
|
|
5448
|
+
readonly label: "GIF";
|
|
5449
|
+
readonly value: "gif";
|
|
5450
|
+
readonly description: "Content using an animated GIF";
|
|
5451
|
+
readonly is_active: true;
|
|
5452
|
+
};
|
|
5453
|
+
readonly text: {
|
|
5454
|
+
readonly label: "Text";
|
|
5455
|
+
readonly value: "text";
|
|
5456
|
+
readonly description: "Content that rely on typography/text to convey a message";
|
|
5457
|
+
readonly is_active: true;
|
|
5458
|
+
};
|
|
5459
|
+
readonly carousel: {
|
|
5460
|
+
readonly label: "Carousel";
|
|
5461
|
+
readonly value: "carousel";
|
|
5462
|
+
readonly description: "Content in a carousel or slideshow format";
|
|
5463
|
+
readonly is_active: true;
|
|
5464
|
+
};
|
|
5465
|
+
readonly people: {
|
|
5466
|
+
readonly label: "People";
|
|
5467
|
+
readonly value: "people";
|
|
5468
|
+
readonly description: "Content that uses humans/actors to convey a message";
|
|
5469
|
+
readonly is_active: true;
|
|
5470
|
+
};
|
|
5471
|
+
readonly faceless: {
|
|
5472
|
+
readonly label: "Faceless (No People)";
|
|
5473
|
+
readonly value: "faceless";
|
|
5474
|
+
readonly description: "Content with no people/human faces depicted";
|
|
5475
|
+
readonly is_active: true;
|
|
5476
|
+
};
|
|
5477
|
+
readonly popup: {
|
|
5478
|
+
readonly label: "Pop Up";
|
|
5479
|
+
readonly value: "popup";
|
|
5480
|
+
readonly description: "Website pop up content";
|
|
5481
|
+
readonly is_active: true;
|
|
5482
|
+
};
|
|
5483
|
+
readonly banner: {
|
|
5484
|
+
readonly label: "Banner";
|
|
5485
|
+
readonly value: "banner";
|
|
5486
|
+
readonly description: "Banner content on a website";
|
|
5487
|
+
readonly is_active: true;
|
|
5488
|
+
};
|
|
5489
|
+
readonly broker: {
|
|
5490
|
+
readonly label: "Broker";
|
|
5491
|
+
readonly value: "broker";
|
|
5492
|
+
readonly description: "Content created for brokers";
|
|
5493
|
+
readonly is_active: true;
|
|
5494
|
+
};
|
|
5495
|
+
readonly consumer: {
|
|
5496
|
+
readonly label: "Consumer";
|
|
5497
|
+
readonly value: "consumer";
|
|
5498
|
+
readonly description: "Content created for consumers";
|
|
5499
|
+
readonly is_active: true;
|
|
5500
|
+
};
|
|
5501
|
+
readonly redrop: {
|
|
5502
|
+
readonly label: "Redrop";
|
|
5503
|
+
readonly value: "redrop";
|
|
5504
|
+
readonly description: "Content that is re-dropped to the same audience";
|
|
5505
|
+
readonly is_active: true;
|
|
5506
|
+
};
|
|
5507
|
+
readonly variant_a: {
|
|
5508
|
+
readonly label: "Variant A";
|
|
5509
|
+
readonly value: "variant_a";
|
|
5510
|
+
readonly description: "Used for a/b testing and/or ad variant names.";
|
|
5511
|
+
readonly is_active: true;
|
|
5512
|
+
};
|
|
5513
|
+
readonly variant_b: {
|
|
5514
|
+
readonly label: "Variant B";
|
|
5515
|
+
readonly value: "variant_b";
|
|
5516
|
+
readonly description: "Used for a/b testing and/or ad variant names.";
|
|
5517
|
+
readonly is_active: true;
|
|
5518
|
+
};
|
|
5519
|
+
readonly variant_c: {
|
|
5520
|
+
readonly label: "Variant C";
|
|
5521
|
+
readonly value: "variant_c";
|
|
5522
|
+
readonly description: "Used for a/b testing and/or ad variant names.";
|
|
5523
|
+
readonly is_active: true;
|
|
5524
|
+
};
|
|
5525
|
+
readonly variant_d: {
|
|
5526
|
+
readonly label: "Variant D";
|
|
5527
|
+
readonly value: "variant_d";
|
|
5528
|
+
readonly description: "Used for a/b testing and/or ad variant names.";
|
|
5529
|
+
readonly is_active: true;
|
|
5530
|
+
};
|
|
5531
|
+
readonly client_creative: {
|
|
5532
|
+
readonly label: "Client Creative";
|
|
5533
|
+
readonly value: "client_creative";
|
|
5534
|
+
readonly description: "Creative content was provided by the client to use—not GC designed content.";
|
|
5535
|
+
readonly is_active: true;
|
|
5536
|
+
};
|
|
5537
|
+
};
|
|
5538
|
+
type DefaultCreativeFormatVariantKey = keyof typeof default_creative_format_variants;
|
|
5539
|
+
type DefaultCreativeFormatVariantValue = (typeof default_creative_format_variants)[DefaultCreativeFormatVariantKey];
|
|
5540
|
+
|
|
4762
5541
|
declare function dateToday(): Date;
|
|
4763
5542
|
declare function datePlusDays(today: Date, days?: number): Date;
|
|
4764
5543
|
|
|
@@ -4866,4 +5645,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
|
|
|
4866
5645
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
4867
5646
|
declare const IsValidOrUndefinedUrlUtmId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
4868
5647
|
|
|
4869
|
-
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
5648
|
+
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, type SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, default_campaign_phases, default_contents, default_creative_format_variants, default_creative_formats, default_mediums, default_sources, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|