@adcp/client 2.7.2 → 3.0.0
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/bin/adcp.js +80 -6
- package/dist/lib/advanced.d.ts +41 -0
- package/dist/lib/advanced.d.ts.map +1 -0
- package/dist/lib/advanced.js +49 -0
- package/dist/lib/advanced.js.map +1 -0
- package/dist/lib/auth/index.d.ts +4 -0
- package/dist/lib/auth/index.d.ts.map +1 -1
- package/dist/lib/auth/index.js +6 -7
- package/dist/lib/auth/index.js.map +1 -1
- package/dist/lib/core/ADCPMultiAgentClient.d.ts +54 -7
- package/dist/lib/core/ADCPMultiAgentClient.d.ts.map +1 -1
- package/dist/lib/core/ADCPMultiAgentClient.js +78 -1
- package/dist/lib/core/ADCPMultiAgentClient.js.map +1 -1
- package/dist/lib/core/AgentClient.d.ts +11 -2
- package/dist/lib/core/AgentClient.d.ts.map +1 -1
- package/dist/lib/core/AgentClient.js +13 -2
- package/dist/lib/core/AgentClient.js.map +1 -1
- package/dist/lib/core/CreativeAgentClient.d.ts +5 -5
- package/dist/lib/core/CreativeAgentClient.d.ts.map +1 -1
- package/dist/lib/core/CreativeAgentClient.js +3 -3
- package/dist/lib/core/CreativeAgentClient.js.map +1 -1
- package/dist/lib/core/{ADCPClient.d.ts → SingleAgentClient.d.ts} +13 -12
- package/dist/lib/core/SingleAgentClient.d.ts.map +1 -0
- package/dist/lib/core/{ADCPClient.js → SingleAgentClient.js} +15 -14
- package/dist/lib/core/SingleAgentClient.js.map +1 -0
- package/dist/lib/discovery/property-crawler.js +2 -2
- package/dist/lib/discovery/property-crawler.js.map +1 -1
- package/dist/lib/index.d.ts +8 -32
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/index.js +14 -64
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/testing/index.d.ts +2 -0
- package/dist/lib/testing/index.d.ts.map +1 -0
- package/dist/lib/testing/index.js +22 -0
- package/dist/lib/testing/index.js.map +1 -0
- package/dist/lib/testing/test-helpers.d.ts +217 -0
- package/dist/lib/testing/test-helpers.d.ts.map +1 -0
- package/dist/lib/testing/test-helpers.js +258 -0
- package/dist/lib/testing/test-helpers.js.map +1 -0
- package/dist/lib/types/core.generated.d.ts +100 -58
- package/dist/lib/types/core.generated.d.ts.map +1 -1
- package/dist/lib/types/core.generated.js +1 -1
- package/dist/lib/types/schemas.generated.d.ts +1176 -588
- package/dist/lib/types/schemas.generated.d.ts.map +1 -1
- package/dist/lib/types/schemas.generated.js +291 -196
- package/dist/lib/types/schemas.generated.js.map +1 -1
- package/dist/lib/types/tools.generated.d.ts +487 -208
- package/dist/lib/types/tools.generated.d.ts.map +1 -1
- package/dist/lib/types/tools.generated.js +1 -1
- package/dist/lib/types/tools.generated.js.map +1 -1
- package/dist/lib/utils/preview-utils.d.ts +5 -5
- package/dist/lib/utils/preview-utils.d.ts.map +1 -1
- package/dist/lib/utils/preview-utils.js +2 -2
- package/dist/lib/utils/preview-utils.js.map +1 -1
- package/dist/lib/version.d.ts +3 -3
- package/dist/lib/version.js +3 -3
- package/package.json +11 -1
- package/dist/lib/core/ADCPClient.d.ts.map +0 -1
- package/dist/lib/core/ADCPClient.js.map +0 -1
|
@@ -14,24 +14,36 @@ export declare const FormatIDSchema: z.ZodObject<{
|
|
|
14
14
|
export declare const FrequencyCapSchema: z.ZodObject<{
|
|
15
15
|
suppress_minutes: z.ZodNumber;
|
|
16
16
|
}, z.core.$strip>;
|
|
17
|
-
export declare const
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
export declare const VASTAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
18
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
19
|
+
url: z.ZodString;
|
|
20
20
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
21
21
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
22
22
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
23
23
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
24
|
-
}, z.core.$strip
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
26
|
+
content: z.ZodString;
|
|
27
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
28
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
29
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
30
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
31
|
+
}, z.core.$strip>]>;
|
|
32
|
+
export declare const DAASTAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
33
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
34
|
+
url: z.ZodString;
|
|
29
35
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
30
36
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
31
37
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
32
38
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
33
|
-
}, z.core.$strip
|
|
34
|
-
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
41
|
+
content: z.ZodString;
|
|
42
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
43
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
44
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
45
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
}, z.core.$strip>]>;
|
|
35
47
|
export declare const BrandManifest1Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
36
48
|
export declare const BrandManifest2Schema: z.ZodObject<{
|
|
37
49
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -131,22 +143,6 @@ export declare const JavaScriptAssetSchema: z.ZodObject<{
|
|
|
131
143
|
content: z.ZodString;
|
|
132
144
|
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
133
145
|
}, z.core.$strip>;
|
|
134
|
-
export declare const VASTAssetSchema: z.ZodIntersection<z.ZodObject<{
|
|
135
|
-
url: z.ZodOptional<z.ZodString>;
|
|
136
|
-
content: z.ZodOptional<z.ZodString>;
|
|
137
|
-
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
138
|
-
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
139
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
140
|
-
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
141
|
-
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>;
|
|
142
|
-
export declare const DAASTAssetSchema: z.ZodIntersection<z.ZodObject<{
|
|
143
|
-
url: z.ZodOptional<z.ZodString>;
|
|
144
|
-
content: z.ZodOptional<z.ZodString>;
|
|
145
|
-
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
146
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
147
|
-
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
148
|
-
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
149
|
-
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>;
|
|
150
146
|
export declare const URLAssetSchema: z.ZodObject<{
|
|
151
147
|
url: z.ZodString;
|
|
152
148
|
url_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"clickthrough">, z.ZodLiteral<"tracker_pixel">, z.ZodLiteral<"tracker_script">]>>;
|
|
@@ -891,23 +887,31 @@ export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
|
891
887
|
exclude_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
892
888
|
}, z.core.$strip>>;
|
|
893
889
|
}, z.core.$strip>;
|
|
894
|
-
export declare const CreateMediaBuyResponseSchema: z.ZodObject<{
|
|
895
|
-
media_buy_id: z.
|
|
890
|
+
export declare const CreateMediaBuyResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
891
|
+
media_buy_id: z.ZodString;
|
|
896
892
|
buyer_ref: z.ZodString;
|
|
897
893
|
creative_deadline: z.ZodOptional<z.ZodString>;
|
|
898
|
-
packages: z.
|
|
894
|
+
packages: z.ZodArray<z.ZodObject<{
|
|
899
895
|
package_id: z.ZodString;
|
|
900
896
|
buyer_ref: z.ZodString;
|
|
901
|
-
}, z.core.$strip
|
|
902
|
-
|
|
897
|
+
}, z.core.$strip>>;
|
|
898
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
899
|
+
errors: z.ZodTuple<[z.ZodObject<{
|
|
903
900
|
code: z.ZodString;
|
|
904
901
|
message: z.ZodString;
|
|
905
902
|
field: z.ZodOptional<z.ZodString>;
|
|
906
903
|
suggestion: z.ZodOptional<z.ZodString>;
|
|
907
904
|
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
908
905
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
909
|
-
}, z.core.$strip
|
|
910
|
-
|
|
906
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
907
|
+
code: z.ZodString;
|
|
908
|
+
message: z.ZodString;
|
|
909
|
+
field: z.ZodOptional<z.ZodString>;
|
|
910
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
911
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
912
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
913
|
+
}, z.core.$strip>>;
|
|
914
|
+
}, z.core.$strip>]>;
|
|
911
915
|
export declare const CreativeAssetSchema: z.ZodObject<{
|
|
912
916
|
creative_id: z.ZodString;
|
|
913
917
|
name: z.ZodString;
|
|
@@ -945,21 +949,35 @@ export declare const CreativeAssetSchema: z.ZodObject<{
|
|
|
945
949
|
}, z.core.$strip>, z.ZodObject<{
|
|
946
950
|
content: z.ZodString;
|
|
947
951
|
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
948
|
-
}, z.core.$strip>, z.
|
|
949
|
-
|
|
950
|
-
|
|
952
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
953
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
954
|
+
url: z.ZodString;
|
|
951
955
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
952
956
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
953
957
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
954
958
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
955
|
-
}, z.core.$strip>, z.
|
|
956
|
-
|
|
957
|
-
content: z.
|
|
959
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
960
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
961
|
+
content: z.ZodString;
|
|
962
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
963
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
964
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
965
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
966
|
+
}, z.core.$strip>]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
967
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
968
|
+
url: z.ZodString;
|
|
969
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
970
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
971
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
972
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
973
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
974
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
975
|
+
content: z.ZodString;
|
|
958
976
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
959
977
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
960
978
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
961
979
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
962
|
-
}, z.core.$strip
|
|
980
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
963
981
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
964
982
|
url: z.ZodOptional<z.ZodString>;
|
|
965
983
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1050,7 +1068,7 @@ export declare const CreativeAssetSchema: z.ZodObject<{
|
|
|
1050
1068
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1051
1069
|
approved: z.ZodOptional<z.ZodBoolean>;
|
|
1052
1070
|
}, z.core.$strip>;
|
|
1053
|
-
export declare const SyncCreativesResponseSchema: z.ZodObject<{
|
|
1071
|
+
export declare const SyncCreativesResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1054
1072
|
dry_run: z.ZodOptional<z.ZodBoolean>;
|
|
1055
1073
|
creatives: z.ZodArray<z.ZodObject<{
|
|
1056
1074
|
creative_id: z.ZodString;
|
|
@@ -1064,206 +1082,461 @@ export declare const SyncCreativesResponseSchema: z.ZodObject<{
|
|
|
1064
1082
|
assigned_to: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1065
1083
|
assignment_errors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1066
1084
|
}, z.core.$strip>>;
|
|
1067
|
-
}, z.core.$strip
|
|
1068
|
-
|
|
1069
|
-
export declare const CreativeStatus1Schema: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
1070
|
-
export declare const SubAsset1Schema: z.ZodObject<{
|
|
1071
|
-
asset_type: z.ZodOptional<z.ZodString>;
|
|
1072
|
-
asset_id: z.ZodOptional<z.ZodString>;
|
|
1073
|
-
content_uri: z.ZodOptional<z.ZodString>;
|
|
1074
|
-
content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1075
|
-
}, z.core.$strip>;
|
|
1076
|
-
export declare const SubAsset2Schema: z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
1077
|
-
export declare const SubAssetSchema: z.ZodIntersection<z.ZodObject<{
|
|
1078
|
-
asset_type: z.ZodOptional<z.ZodString>;
|
|
1079
|
-
asset_id: z.ZodOptional<z.ZodString>;
|
|
1080
|
-
content_uri: z.ZodOptional<z.ZodString>;
|
|
1081
|
-
content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1082
|
-
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>;
|
|
1083
|
-
export declare const UpdateMediaBuyRequest1Schema: z.ZodObject<{
|
|
1084
|
-
media_buy_id: z.ZodOptional<z.ZodString>;
|
|
1085
|
-
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
1086
|
-
active: z.ZodOptional<z.ZodBoolean>;
|
|
1087
|
-
start_time: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>>;
|
|
1088
|
-
end_time: z.ZodOptional<z.ZodString>;
|
|
1089
|
-
packages: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
|
|
1090
|
-
push_notification_config: z.ZodOptional<z.ZodObject<{
|
|
1091
|
-
url: z.ZodString;
|
|
1092
|
-
token: z.ZodOptional<z.ZodString>;
|
|
1093
|
-
authentication: z.ZodObject<{
|
|
1094
|
-
schemes: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"Bearer">, z.ZodLiteral<"HMAC-SHA256">]>], null>;
|
|
1095
|
-
credentials: z.ZodString;
|
|
1096
|
-
}, z.core.$strip>;
|
|
1097
|
-
}, z.core.$strip>>;
|
|
1098
|
-
}, z.core.$strip>;
|
|
1099
|
-
export declare const UpdateMediaBuyRequest2Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1100
|
-
export declare const UpdateMediaBuyResponseSchema: z.ZodObject<{
|
|
1101
|
-
media_buy_id: z.ZodString;
|
|
1102
|
-
buyer_ref: z.ZodString;
|
|
1103
|
-
implementation_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1104
|
-
affected_packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1105
|
-
package_id: z.ZodString;
|
|
1106
|
-
buyer_ref: z.ZodString;
|
|
1107
|
-
}, z.core.$strip>>>;
|
|
1108
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1085
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1086
|
+
errors: z.ZodTuple<[z.ZodObject<{
|
|
1109
1087
|
code: z.ZodString;
|
|
1110
1088
|
message: z.ZodString;
|
|
1111
1089
|
field: z.ZodOptional<z.ZodString>;
|
|
1112
1090
|
suggestion: z.ZodOptional<z.ZodString>;
|
|
1113
1091
|
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1114
1092
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1115
|
-
}, z.core.$strip
|
|
1116
|
-
}, z.core.$strip>;
|
|
1117
|
-
export declare const GetMediaBuyDeliveryRequestSchema: z.ZodObject<{
|
|
1118
|
-
media_buy_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1119
|
-
buyer_refs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1120
|
-
status_filter: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"pending">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">, z.ZodLiteral<"failed">, z.ZodLiteral<"all">]>, z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"pending">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">, z.ZodLiteral<"failed">]>>]>>;
|
|
1121
|
-
start_date: z.ZodOptional<z.ZodString>;
|
|
1122
|
-
end_date: z.ZodOptional<z.ZodString>;
|
|
1123
|
-
}, z.core.$strip>;
|
|
1124
|
-
export declare const PricingModelSchema: z.ZodUnion<readonly [z.ZodLiteral<"cpm">, z.ZodLiteral<"vcpm">, z.ZodLiteral<"cpc">, z.ZodLiteral<"cpcv">, z.ZodLiteral<"cpv">, z.ZodLiteral<"cpp">, z.ZodLiteral<"flat_rate">]>;
|
|
1125
|
-
export declare const DeliveryMetricsSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1126
|
-
impressions: z.ZodOptional<z.ZodNumber>;
|
|
1127
|
-
spend: z.ZodOptional<z.ZodNumber>;
|
|
1128
|
-
clicks: z.ZodOptional<z.ZodNumber>;
|
|
1129
|
-
ctr: z.ZodOptional<z.ZodNumber>;
|
|
1130
|
-
views: z.ZodOptional<z.ZodNumber>;
|
|
1131
|
-
completed_views: z.ZodOptional<z.ZodNumber>;
|
|
1132
|
-
completion_rate: z.ZodOptional<z.ZodNumber>;
|
|
1133
|
-
conversions: z.ZodOptional<z.ZodNumber>;
|
|
1134
|
-
leads: z.ZodOptional<z.ZodNumber>;
|
|
1135
|
-
grps: z.ZodOptional<z.ZodNumber>;
|
|
1136
|
-
reach: z.ZodOptional<z.ZodNumber>;
|
|
1137
|
-
frequency: z.ZodOptional<z.ZodNumber>;
|
|
1138
|
-
quartile_data: z.ZodOptional<z.ZodObject<{
|
|
1139
|
-
q1_views: z.ZodOptional<z.ZodNumber>;
|
|
1140
|
-
q2_views: z.ZodOptional<z.ZodNumber>;
|
|
1141
|
-
q3_views: z.ZodOptional<z.ZodNumber>;
|
|
1142
|
-
q4_views: z.ZodOptional<z.ZodNumber>;
|
|
1143
|
-
}, z.core.$strip>>;
|
|
1144
|
-
dooh_metrics: z.ZodOptional<z.ZodObject<{
|
|
1145
|
-
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1146
|
-
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1147
|
-
screen_time_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1148
|
-
sov_achieved: z.ZodOptional<z.ZodNumber>;
|
|
1149
|
-
calculation_notes: z.ZodOptional<z.ZodString>;
|
|
1150
|
-
venue_breakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1151
|
-
venue_id: z.ZodString;
|
|
1152
|
-
venue_name: z.ZodOptional<z.ZodString>;
|
|
1153
|
-
venue_type: z.ZodOptional<z.ZodString>;
|
|
1154
|
-
impressions: z.ZodNumber;
|
|
1155
|
-
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1156
|
-
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1157
|
-
}, z.core.$strip>>>;
|
|
1158
|
-
}, z.core.$strip>>;
|
|
1159
|
-
}, z.core.$strip>>;
|
|
1160
|
-
export declare const ListAuthorizedPropertiesRequestSchema: z.ZodObject<{
|
|
1161
|
-
publisher_domains: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
1162
|
-
}, z.core.$strip>;
|
|
1163
|
-
export declare const AdvertisingChannelsSchema: z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"native">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ctv">, z.ZodLiteral<"podcast">, z.ZodLiteral<"retail">, z.ZodLiteral<"social">]>;
|
|
1164
|
-
export declare const ProvidePerformanceFeedbackRequestSchema: z.ZodObject<{
|
|
1165
|
-
media_buy_id: z.ZodString;
|
|
1166
|
-
measurement_period: z.ZodObject<{
|
|
1167
|
-
start: z.ZodString;
|
|
1168
|
-
end: z.ZodString;
|
|
1169
|
-
}, z.core.$strip>;
|
|
1170
|
-
performance_index: z.ZodNumber;
|
|
1171
|
-
package_id: z.ZodOptional<z.ZodString>;
|
|
1172
|
-
creative_id: z.ZodOptional<z.ZodString>;
|
|
1173
|
-
metric_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"overall_performance">, z.ZodLiteral<"conversion_rate">, z.ZodLiteral<"brand_lift">, z.ZodLiteral<"click_through_rate">, z.ZodLiteral<"completion_rate">, z.ZodLiteral<"viewability">, z.ZodLiteral<"brand_safety">, z.ZodLiteral<"cost_efficiency">]>>;
|
|
1174
|
-
feedback_source: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"buyer_attribution">, z.ZodLiteral<"third_party_measurement">, z.ZodLiteral<"platform_analytics">, z.ZodLiteral<"verification_partner">]>>;
|
|
1175
|
-
}, z.core.$strip>;
|
|
1176
|
-
export declare const ProvidePerformanceFeedbackResponseSchema: z.ZodObject<{
|
|
1177
|
-
success: z.ZodBoolean;
|
|
1178
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1093
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1179
1094
|
code: z.ZodString;
|
|
1180
1095
|
message: z.ZodString;
|
|
1181
1096
|
field: z.ZodOptional<z.ZodString>;
|
|
1182
1097
|
suggestion: z.ZodOptional<z.ZodString>;
|
|
1183
1098
|
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1184
1099
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1185
|
-
}, z.core.$strip
|
|
1186
|
-
}, z.core.$strip>;
|
|
1187
|
-
export declare const
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1100
|
+
}, z.core.$strip>>;
|
|
1101
|
+
}, z.core.$strip>]>;
|
|
1102
|
+
export declare const CreativeStatusSchema: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
1103
|
+
export declare const CreativeStatus1Schema: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
1104
|
+
export declare const SubAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1105
|
+
asset_kind: z.ZodLiteral<"media">;
|
|
1106
|
+
asset_type: z.ZodString;
|
|
1107
|
+
asset_id: z.ZodString;
|
|
1108
|
+
content_uri: z.ZodString;
|
|
1109
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1110
|
+
asset_kind: z.ZodLiteral<"text">;
|
|
1111
|
+
asset_type: z.ZodString;
|
|
1112
|
+
asset_id: z.ZodString;
|
|
1113
|
+
content: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
|
|
1114
|
+
}, z.core.$strip>]>;
|
|
1115
|
+
export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
1116
|
+
query_summary: z.ZodObject<{
|
|
1117
|
+
total_matching: z.ZodNumber;
|
|
1118
|
+
returned: z.ZodNumber;
|
|
1119
|
+
filters_applied: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1120
|
+
sort_applied: z.ZodOptional<z.ZodObject<{
|
|
1121
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1122
|
+
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asc">, z.ZodLiteral<"desc">]>>;
|
|
1123
|
+
}, z.core.$strip>>;
|
|
1198
1124
|
}, z.core.$strip>;
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1125
|
+
pagination: z.ZodObject<{
|
|
1126
|
+
limit: z.ZodNumber;
|
|
1127
|
+
offset: z.ZodNumber;
|
|
1128
|
+
has_more: z.ZodBoolean;
|
|
1129
|
+
total_pages: z.ZodOptional<z.ZodNumber>;
|
|
1130
|
+
current_page: z.ZodOptional<z.ZodNumber>;
|
|
1204
1131
|
}, z.core.$strip>;
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
alt_text: z.ZodOptional<z.ZodString>;
|
|
1212
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1213
|
-
url: z.ZodString;
|
|
1214
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
1215
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
1216
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1217
|
-
format: z.ZodOptional<z.ZodString>;
|
|
1218
|
-
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1219
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1220
|
-
url: z.ZodString;
|
|
1221
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1222
|
-
format: z.ZodOptional<z.ZodString>;
|
|
1223
|
-
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1224
|
-
}, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
|
|
1225
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1226
|
-
content: z.ZodOptional<z.ZodString>;
|
|
1227
|
-
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
1228
|
-
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1229
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1230
|
-
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
1231
|
-
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>, z.ZodObject<{
|
|
1232
|
-
content: z.ZodString;
|
|
1233
|
-
language: z.ZodOptional<z.ZodString>;
|
|
1234
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1235
|
-
url: z.ZodString;
|
|
1236
|
-
url_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"clickthrough">, z.ZodLiteral<"tracker_pixel">, z.ZodLiteral<"tracker_script">]>>;
|
|
1237
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1238
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1239
|
-
content: z.ZodString;
|
|
1240
|
-
version: z.ZodOptional<z.ZodString>;
|
|
1241
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1242
|
-
content: z.ZodString;
|
|
1243
|
-
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
1244
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1245
|
-
url: z.ZodString;
|
|
1246
|
-
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"GET">, z.ZodLiteral<"POST">]>>;
|
|
1247
|
-
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
1248
|
-
supported_macros: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1249
|
-
required_macros: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1250
|
-
response_type: z.ZodUnion<readonly [z.ZodLiteral<"html">, z.ZodLiteral<"json">, z.ZodLiteral<"xml">, z.ZodLiteral<"javascript">]>;
|
|
1251
|
-
security: z.ZodObject<{
|
|
1252
|
-
method: z.ZodUnion<readonly [z.ZodLiteral<"hmac_sha256">, z.ZodLiteral<"api_key">, z.ZodLiteral<"none">]>;
|
|
1253
|
-
hmac_header: z.ZodOptional<z.ZodString>;
|
|
1254
|
-
api_key_header: z.ZodOptional<z.ZodString>;
|
|
1132
|
+
creatives: z.ZodArray<z.ZodObject<{
|
|
1133
|
+
creative_id: z.ZodString;
|
|
1134
|
+
name: z.ZodString;
|
|
1135
|
+
format_id: z.ZodObject<{
|
|
1136
|
+
agent_url: z.ZodString;
|
|
1137
|
+
id: z.ZodString;
|
|
1255
1138
|
}, z.core.$strip>;
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1139
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
1140
|
+
created_date: z.ZodString;
|
|
1141
|
+
updated_date: z.ZodString;
|
|
1142
|
+
media_url: z.ZodOptional<z.ZodString>;
|
|
1143
|
+
assets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1144
|
+
url: z.ZodString;
|
|
1145
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1146
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1147
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1148
|
+
alt_text: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1150
|
+
url: z.ZodString;
|
|
1151
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1152
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1153
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1154
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1156
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1157
|
+
url: z.ZodString;
|
|
1158
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1159
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1160
|
+
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1161
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1162
|
+
content: z.ZodString;
|
|
1163
|
+
language: z.ZodOptional<z.ZodString>;
|
|
1164
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1165
|
+
content: z.ZodString;
|
|
1166
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1167
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1168
|
+
content: z.ZodString;
|
|
1169
|
+
media: z.ZodOptional<z.ZodString>;
|
|
1170
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1171
|
+
content: z.ZodString;
|
|
1172
|
+
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
1173
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1174
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
1175
|
+
url: z.ZodString;
|
|
1176
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
1177
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1178
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1179
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
1180
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1181
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
1182
|
+
content: z.ZodString;
|
|
1183
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
1184
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1185
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1186
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
1187
|
+
}, z.core.$strip>]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1188
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
1189
|
+
url: z.ZodString;
|
|
1190
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
1191
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1192
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
1193
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1194
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1195
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
1196
|
+
content: z.ZodString;
|
|
1197
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
1198
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1199
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
1200
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1201
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
1202
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1203
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1204
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1205
|
+
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1206
|
+
url: z.ZodString;
|
|
1207
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1208
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1209
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1210
|
+
}, z.core.$strip>>>;
|
|
1211
|
+
colors: z.ZodOptional<z.ZodObject<{
|
|
1212
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
1215
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1216
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1217
|
+
}, z.core.$strip>>;
|
|
1218
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1219
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
1220
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
1221
|
+
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1222
|
+
}, z.core.$strip>>;
|
|
1223
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
1224
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1225
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1226
|
+
asset_id: z.ZodString;
|
|
1227
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
1228
|
+
url: z.ZodString;
|
|
1229
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1230
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1231
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1232
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1233
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1234
|
+
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1235
|
+
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1236
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1237
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1238
|
+
}, z.core.$strip>>>;
|
|
1239
|
+
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
1240
|
+
feed_url: z.ZodString;
|
|
1241
|
+
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
1242
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1243
|
+
last_updated: z.ZodOptional<z.ZodString>;
|
|
1244
|
+
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
1245
|
+
}, z.core.$strip>>;
|
|
1246
|
+
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1247
|
+
text: z.ZodString;
|
|
1248
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1249
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1250
|
+
}, z.core.$strip>>>;
|
|
1251
|
+
industry: z.ZodOptional<z.ZodString>;
|
|
1252
|
+
target_audience: z.ZodOptional<z.ZodString>;
|
|
1253
|
+
contact: z.ZodOptional<z.ZodObject<{
|
|
1254
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1255
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1256
|
+
}, z.core.$strip>>;
|
|
1257
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1258
|
+
created_date: z.ZodOptional<z.ZodString>;
|
|
1259
|
+
updated_date: z.ZodOptional<z.ZodString>;
|
|
1260
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1261
|
+
}, z.core.$strip>>;
|
|
1262
|
+
}, z.core.$strip>>, z.ZodString]>;
|
|
1263
|
+
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1264
|
+
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1265
|
+
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1266
|
+
manifest_category: z.ZodOptional<z.ZodString>;
|
|
1267
|
+
manifest_query: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
}, z.core.$strip>>;
|
|
1269
|
+
offerings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1270
|
+
name: z.ZodString;
|
|
1271
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1272
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1273
|
+
}, z.core.$strip>>>;
|
|
1274
|
+
asset_selectors: z.ZodOptional<z.ZodObject<{
|
|
1275
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1276
|
+
asset_types: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"text">, z.ZodLiteral<"url">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"webhook">]>>>;
|
|
1277
|
+
exclude_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1278
|
+
}, z.core.$strip>>;
|
|
1279
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1280
|
+
url: z.ZodString;
|
|
1281
|
+
url_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"clickthrough">, z.ZodLiteral<"tracker_pixel">, z.ZodLiteral<"tracker_script">]>>;
|
|
1282
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1283
|
+
}, z.core.$strip>]>>>;
|
|
1284
|
+
click_url: z.ZodOptional<z.ZodString>;
|
|
1285
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
1286
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1287
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1288
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1289
|
+
assignments: z.ZodOptional<z.ZodObject<{
|
|
1290
|
+
assignment_count: z.ZodNumber;
|
|
1291
|
+
assigned_packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1292
|
+
package_id: z.ZodString;
|
|
1293
|
+
package_name: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
assigned_date: z.ZodString;
|
|
1295
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"ended">]>;
|
|
1296
|
+
}, z.core.$strip>>>;
|
|
1297
|
+
}, z.core.$strip>>;
|
|
1298
|
+
performance: z.ZodOptional<z.ZodObject<{
|
|
1299
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
1300
|
+
clicks: z.ZodOptional<z.ZodNumber>;
|
|
1301
|
+
ctr: z.ZodOptional<z.ZodNumber>;
|
|
1302
|
+
conversion_rate: z.ZodOptional<z.ZodNumber>;
|
|
1303
|
+
performance_score: z.ZodOptional<z.ZodNumber>;
|
|
1304
|
+
last_updated: z.ZodString;
|
|
1305
|
+
}, z.core.$strip>>;
|
|
1306
|
+
sub_assets: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1307
|
+
asset_kind: z.ZodLiteral<"media">;
|
|
1308
|
+
asset_type: z.ZodString;
|
|
1309
|
+
asset_id: z.ZodString;
|
|
1310
|
+
content_uri: z.ZodString;
|
|
1311
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1312
|
+
asset_kind: z.ZodLiteral<"text">;
|
|
1313
|
+
asset_type: z.ZodString;
|
|
1314
|
+
asset_id: z.ZodString;
|
|
1315
|
+
content: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
|
|
1316
|
+
}, z.core.$strip>]>>>;
|
|
1317
|
+
}, z.core.$strip>>;
|
|
1318
|
+
format_summary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1319
|
+
status_summary: z.ZodOptional<z.ZodObject<{
|
|
1320
|
+
approved: z.ZodOptional<z.ZodNumber>;
|
|
1321
|
+
pending_review: z.ZodOptional<z.ZodNumber>;
|
|
1322
|
+
rejected: z.ZodOptional<z.ZodNumber>;
|
|
1323
|
+
archived: z.ZodOptional<z.ZodNumber>;
|
|
1324
|
+
}, z.core.$strip>>;
|
|
1325
|
+
}, z.core.$strip>;
|
|
1326
|
+
export declare const UpdateMediaBuyRequest1Schema: z.ZodObject<{
|
|
1327
|
+
media_buy_id: z.ZodOptional<z.ZodString>;
|
|
1328
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
1329
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
1330
|
+
start_time: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>>;
|
|
1331
|
+
end_time: z.ZodOptional<z.ZodString>;
|
|
1332
|
+
packages: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
|
|
1333
|
+
push_notification_config: z.ZodOptional<z.ZodObject<{
|
|
1334
|
+
url: z.ZodString;
|
|
1335
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1336
|
+
authentication: z.ZodObject<{
|
|
1337
|
+
schemes: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"Bearer">, z.ZodLiteral<"HMAC-SHA256">]>], null>;
|
|
1338
|
+
credentials: z.ZodString;
|
|
1339
|
+
}, z.core.$strip>;
|
|
1340
|
+
}, z.core.$strip>>;
|
|
1341
|
+
}, z.core.$strip>;
|
|
1342
|
+
export declare const UpdateMediaBuyRequest2Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1343
|
+
export declare const UpdateMediaBuyResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1344
|
+
media_buy_id: z.ZodString;
|
|
1345
|
+
buyer_ref: z.ZodString;
|
|
1346
|
+
implementation_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1347
|
+
affected_packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1348
|
+
package_id: z.ZodString;
|
|
1349
|
+
buyer_ref: z.ZodString;
|
|
1350
|
+
}, z.core.$strip>>>;
|
|
1351
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1352
|
+
errors: z.ZodTuple<[z.ZodObject<{
|
|
1353
|
+
code: z.ZodString;
|
|
1354
|
+
message: z.ZodString;
|
|
1355
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1356
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1357
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1358
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1359
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1360
|
+
code: z.ZodString;
|
|
1361
|
+
message: z.ZodString;
|
|
1362
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1363
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1364
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1365
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1366
|
+
}, z.core.$strip>>;
|
|
1367
|
+
}, z.core.$strip>]>;
|
|
1368
|
+
export declare const GetMediaBuyDeliveryRequestSchema: z.ZodObject<{
|
|
1369
|
+
media_buy_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1370
|
+
buyer_refs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1371
|
+
status_filter: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"pending">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">, z.ZodLiteral<"failed">, z.ZodLiteral<"all">]>, z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"pending">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">, z.ZodLiteral<"failed">]>>]>>;
|
|
1372
|
+
start_date: z.ZodOptional<z.ZodString>;
|
|
1373
|
+
end_date: z.ZodOptional<z.ZodString>;
|
|
1374
|
+
}, z.core.$strip>;
|
|
1375
|
+
export declare const PricingModelSchema: z.ZodUnion<readonly [z.ZodLiteral<"cpm">, z.ZodLiteral<"vcpm">, z.ZodLiteral<"cpc">, z.ZodLiteral<"cpcv">, z.ZodLiteral<"cpv">, z.ZodLiteral<"cpp">, z.ZodLiteral<"flat_rate">]>;
|
|
1376
|
+
export declare const DeliveryMetricsSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1377
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
1378
|
+
spend: z.ZodOptional<z.ZodNumber>;
|
|
1379
|
+
clicks: z.ZodOptional<z.ZodNumber>;
|
|
1380
|
+
ctr: z.ZodOptional<z.ZodNumber>;
|
|
1381
|
+
views: z.ZodOptional<z.ZodNumber>;
|
|
1382
|
+
completed_views: z.ZodOptional<z.ZodNumber>;
|
|
1383
|
+
completion_rate: z.ZodOptional<z.ZodNumber>;
|
|
1384
|
+
conversions: z.ZodOptional<z.ZodNumber>;
|
|
1385
|
+
leads: z.ZodOptional<z.ZodNumber>;
|
|
1386
|
+
grps: z.ZodOptional<z.ZodNumber>;
|
|
1387
|
+
reach: z.ZodOptional<z.ZodNumber>;
|
|
1388
|
+
frequency: z.ZodOptional<z.ZodNumber>;
|
|
1389
|
+
quartile_data: z.ZodOptional<z.ZodObject<{
|
|
1390
|
+
q1_views: z.ZodOptional<z.ZodNumber>;
|
|
1391
|
+
q2_views: z.ZodOptional<z.ZodNumber>;
|
|
1392
|
+
q3_views: z.ZodOptional<z.ZodNumber>;
|
|
1393
|
+
q4_views: z.ZodOptional<z.ZodNumber>;
|
|
1394
|
+
}, z.core.$strip>>;
|
|
1395
|
+
dooh_metrics: z.ZodOptional<z.ZodObject<{
|
|
1396
|
+
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1397
|
+
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1398
|
+
screen_time_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1399
|
+
sov_achieved: z.ZodOptional<z.ZodNumber>;
|
|
1400
|
+
calculation_notes: z.ZodOptional<z.ZodString>;
|
|
1401
|
+
venue_breakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1402
|
+
venue_id: z.ZodString;
|
|
1403
|
+
venue_name: z.ZodOptional<z.ZodString>;
|
|
1404
|
+
venue_type: z.ZodOptional<z.ZodString>;
|
|
1405
|
+
impressions: z.ZodNumber;
|
|
1406
|
+
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1407
|
+
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1408
|
+
}, z.core.$strip>>>;
|
|
1409
|
+
}, z.core.$strip>>;
|
|
1410
|
+
}, z.core.$strip>>;
|
|
1411
|
+
export declare const ListAuthorizedPropertiesRequestSchema: z.ZodObject<{
|
|
1412
|
+
publisher_domains: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
1413
|
+
}, z.core.$strip>;
|
|
1414
|
+
export declare const AdvertisingChannelsSchema: z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"native">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ctv">, z.ZodLiteral<"podcast">, z.ZodLiteral<"retail">, z.ZodLiteral<"social">]>;
|
|
1415
|
+
export declare const ProvidePerformanceFeedbackRequestSchema: z.ZodObject<{
|
|
1416
|
+
media_buy_id: z.ZodString;
|
|
1417
|
+
measurement_period: z.ZodObject<{
|
|
1418
|
+
start: z.ZodString;
|
|
1419
|
+
end: z.ZodString;
|
|
1420
|
+
}, z.core.$strip>;
|
|
1421
|
+
performance_index: z.ZodNumber;
|
|
1422
|
+
package_id: z.ZodOptional<z.ZodString>;
|
|
1423
|
+
creative_id: z.ZodOptional<z.ZodString>;
|
|
1424
|
+
metric_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"overall_performance">, z.ZodLiteral<"conversion_rate">, z.ZodLiteral<"brand_lift">, z.ZodLiteral<"click_through_rate">, z.ZodLiteral<"completion_rate">, z.ZodLiteral<"viewability">, z.ZodLiteral<"brand_safety">, z.ZodLiteral<"cost_efficiency">]>>;
|
|
1425
|
+
feedback_source: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"buyer_attribution">, z.ZodLiteral<"third_party_measurement">, z.ZodLiteral<"platform_analytics">, z.ZodLiteral<"verification_partner">]>>;
|
|
1426
|
+
}, z.core.$strip>;
|
|
1427
|
+
export declare const ProvidePerformanceFeedbackResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1428
|
+
success: z.ZodLiteral<true>;
|
|
1429
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1430
|
+
errors: z.ZodTuple<[z.ZodObject<{
|
|
1431
|
+
code: z.ZodString;
|
|
1432
|
+
message: z.ZodString;
|
|
1433
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1436
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1437
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1438
|
+
code: z.ZodString;
|
|
1439
|
+
message: z.ZodString;
|
|
1440
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1441
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1442
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1443
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1444
|
+
}, z.core.$strip>>;
|
|
1445
|
+
}, z.core.$strip>]>;
|
|
1446
|
+
export declare const WebhookAssetSchema: z.ZodObject<{
|
|
1447
|
+
url: z.ZodString;
|
|
1448
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"GET">, z.ZodLiteral<"POST">]>>;
|
|
1449
|
+
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
1450
|
+
supported_macros: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1451
|
+
required_macros: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1452
|
+
response_type: z.ZodUnion<readonly [z.ZodLiteral<"html">, z.ZodLiteral<"json">, z.ZodLiteral<"xml">, z.ZodLiteral<"javascript">]>;
|
|
1453
|
+
security: z.ZodObject<{
|
|
1454
|
+
method: z.ZodUnion<readonly [z.ZodLiteral<"hmac_sha256">, z.ZodLiteral<"api_key">, z.ZodLiteral<"none">]>;
|
|
1455
|
+
hmac_header: z.ZodOptional<z.ZodString>;
|
|
1456
|
+
api_key_header: z.ZodOptional<z.ZodString>;
|
|
1457
|
+
}, z.core.$strip>;
|
|
1458
|
+
}, z.core.$strip>;
|
|
1459
|
+
export declare const CreativeManifestSchema: z.ZodObject<{
|
|
1460
|
+
format_id: z.ZodObject<{
|
|
1461
|
+
agent_url: z.ZodString;
|
|
1462
|
+
id: z.ZodString;
|
|
1463
|
+
}, z.core.$strip>;
|
|
1464
|
+
promoted_offering: z.ZodOptional<z.ZodString>;
|
|
1465
|
+
assets: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1466
|
+
url: z.ZodString;
|
|
1467
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1468
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1469
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1470
|
+
alt_text: z.ZodOptional<z.ZodString>;
|
|
1471
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1472
|
+
url: z.ZodString;
|
|
1473
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1474
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1475
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1476
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1477
|
+
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1478
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1479
|
+
url: z.ZodString;
|
|
1480
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1481
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1482
|
+
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1483
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1484
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
1485
|
+
url: z.ZodString;
|
|
1486
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
1487
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1488
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1489
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
1490
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1491
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
1492
|
+
content: z.ZodString;
|
|
1493
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
1494
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1495
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1496
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
1497
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
1498
|
+
content: z.ZodString;
|
|
1499
|
+
language: z.ZodOptional<z.ZodString>;
|
|
1500
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1501
|
+
url: z.ZodString;
|
|
1502
|
+
url_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"clickthrough">, z.ZodLiteral<"tracker_pixel">, z.ZodLiteral<"tracker_script">]>>;
|
|
1503
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1504
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1505
|
+
content: z.ZodString;
|
|
1506
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1507
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1508
|
+
content: z.ZodString;
|
|
1509
|
+
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
1510
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1511
|
+
url: z.ZodString;
|
|
1512
|
+
method: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"GET">, z.ZodLiteral<"POST">]>>;
|
|
1513
|
+
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
1514
|
+
supported_macros: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1515
|
+
required_macros: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1516
|
+
response_type: z.ZodUnion<readonly [z.ZodLiteral<"html">, z.ZodLiteral<"json">, z.ZodLiteral<"xml">, z.ZodLiteral<"javascript">]>;
|
|
1517
|
+
security: z.ZodObject<{
|
|
1518
|
+
method: z.ZodUnion<readonly [z.ZodLiteral<"hmac_sha256">, z.ZodLiteral<"api_key">, z.ZodLiteral<"none">]>;
|
|
1519
|
+
hmac_header: z.ZodOptional<z.ZodString>;
|
|
1520
|
+
api_key_header: z.ZodOptional<z.ZodString>;
|
|
1521
|
+
}, z.core.$strip>;
|
|
1522
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1523
|
+
content: z.ZodString;
|
|
1524
|
+
media: z.ZodOptional<z.ZodString>;
|
|
1525
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1526
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
1527
|
+
url: z.ZodString;
|
|
1528
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
1529
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1530
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
1531
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1532
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1533
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
1534
|
+
content: z.ZodString;
|
|
1535
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
1536
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1537
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
1265
1538
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1266
|
-
}, z.core.$strip
|
|
1539
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
1267
1540
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1268
1541
|
url: z.ZodOptional<z.ZodString>;
|
|
1269
1542
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1367,14 +1640,21 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1367
1640
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1368
1641
|
format: z.ZodOptional<z.ZodString>;
|
|
1369
1642
|
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1370
|
-
}, z.core.$strip>, z.
|
|
1371
|
-
|
|
1372
|
-
|
|
1643
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1644
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
1645
|
+
url: z.ZodString;
|
|
1646
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
1647
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1648
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1649
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
1650
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1651
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
1652
|
+
content: z.ZodString;
|
|
1373
1653
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
1374
1654
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1375
1655
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1376
1656
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
1377
|
-
}, z.core.$strip
|
|
1657
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
1378
1658
|
content: z.ZodString;
|
|
1379
1659
|
language: z.ZodOptional<z.ZodString>;
|
|
1380
1660
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1402,14 +1682,21 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1402
1682
|
}, z.core.$strip>, z.ZodObject<{
|
|
1403
1683
|
content: z.ZodString;
|
|
1404
1684
|
media: z.ZodOptional<z.ZodString>;
|
|
1405
|
-
}, z.core.$strip>, z.
|
|
1406
|
-
|
|
1407
|
-
|
|
1685
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
1686
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
1687
|
+
url: z.ZodString;
|
|
1688
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
1689
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1690
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
1691
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1692
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1693
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
1694
|
+
content: z.ZodString;
|
|
1408
1695
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
1409
1696
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1410
1697
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
1411
1698
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1412
|
-
}, z.core.$strip
|
|
1699
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
1413
1700
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1414
1701
|
url: z.ZodOptional<z.ZodString>;
|
|
1415
1702
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1489,45 +1776,82 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1489
1776
|
}, z.core.$strip>>;
|
|
1490
1777
|
}, z.core.$strip>]>>;
|
|
1491
1778
|
}, z.core.$strip>;
|
|
1492
|
-
export declare const
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
macros: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1507
|
-
context_description: z.ZodOptional<z.ZodString>;
|
|
1508
|
-
}, z.core.$strip>;
|
|
1779
|
+
export declare const PreviewRenderSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1780
|
+
render_id: z.ZodString;
|
|
1781
|
+
output_format: z.ZodLiteral<"url">;
|
|
1782
|
+
preview_url: z.ZodString;
|
|
1783
|
+
role: z.ZodString;
|
|
1784
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
1785
|
+
width: z.ZodNumber;
|
|
1786
|
+
height: z.ZodNumber;
|
|
1787
|
+
}, z.core.$strip>>;
|
|
1788
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
1789
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
1790
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
1791
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
1792
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
1509
1793
|
}, z.core.$strip>>;
|
|
1510
|
-
interactive_url: z.ZodOptional<z.ZodString>;
|
|
1511
|
-
expires_at: z.ZodString;
|
|
1512
1794
|
}, z.core.$strip>, z.ZodObject<{
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1795
|
+
render_id: z.ZodString;
|
|
1796
|
+
output_format: z.ZodLiteral<"html">;
|
|
1797
|
+
preview_html: z.ZodString;
|
|
1798
|
+
role: z.ZodString;
|
|
1799
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
1800
|
+
width: z.ZodNumber;
|
|
1801
|
+
height: z.ZodNumber;
|
|
1802
|
+
}, z.core.$strip>>;
|
|
1803
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
1804
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
1805
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
1806
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
1807
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
1808
|
+
}, z.core.$strip>>;
|
|
1809
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1810
|
+
render_id: z.ZodString;
|
|
1811
|
+
output_format: z.ZodLiteral<"both">;
|
|
1812
|
+
preview_url: z.ZodString;
|
|
1813
|
+
preview_html: z.ZodString;
|
|
1814
|
+
role: z.ZodString;
|
|
1815
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
1816
|
+
width: z.ZodNumber;
|
|
1817
|
+
height: z.ZodNumber;
|
|
1818
|
+
}, z.core.$strip>>;
|
|
1819
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
1820
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
1821
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
1822
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
1823
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
1824
|
+
}, z.core.$strip>>;
|
|
1825
|
+
}, z.core.$strip>]>;
|
|
1826
|
+
export declare const DestinationSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1827
|
+
type: z.ZodLiteral<"platform">;
|
|
1828
|
+
platform: z.ZodString;
|
|
1829
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1830
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1831
|
+
type: z.ZodLiteral<"agent">;
|
|
1832
|
+
agent_url: z.ZodString;
|
|
1833
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1522
1834
|
}, z.core.$strip>]>;
|
|
1523
1835
|
export declare const GetSignalsRequestSchema: z.ZodObject<{
|
|
1524
1836
|
signal_spec: z.ZodString;
|
|
1525
1837
|
deliver_to: z.ZodObject<{
|
|
1526
|
-
|
|
1527
|
-
|
|
1838
|
+
destinations: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
1839
|
+
type: z.ZodLiteral<"platform">;
|
|
1528
1840
|
platform: z.ZodString;
|
|
1529
|
-
account: z.ZodString
|
|
1530
|
-
}, z.core.$strip
|
|
1841
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1842
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1843
|
+
type: z.ZodLiteral<"agent">;
|
|
1844
|
+
agent_url: z.ZodString;
|
|
1845
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1846
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
1847
|
+
type: z.ZodLiteral<"platform">;
|
|
1848
|
+
platform: z.ZodString;
|
|
1849
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1850
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1851
|
+
type: z.ZodLiteral<"agent">;
|
|
1852
|
+
agent_url: z.ZodString;
|
|
1853
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1854
|
+
}, z.core.$strip>]>>;
|
|
1531
1855
|
countries: z.ZodArray<z.ZodString>;
|
|
1532
1856
|
}, z.core.$strip>;
|
|
1533
1857
|
filters: z.ZodOptional<z.ZodObject<{
|
|
@@ -1538,54 +1862,122 @@ export declare const GetSignalsRequestSchema: z.ZodObject<{
|
|
|
1538
1862
|
}, z.core.$strip>>;
|
|
1539
1863
|
max_results: z.ZodOptional<z.ZodNumber>;
|
|
1540
1864
|
}, z.core.$strip>;
|
|
1541
|
-
export declare const
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1865
|
+
export declare const ActivationKeySchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1866
|
+
type: z.ZodLiteral<"segment_id">;
|
|
1867
|
+
segment_id: z.ZodString;
|
|
1868
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1869
|
+
type: z.ZodLiteral<"key_value">;
|
|
1870
|
+
key: z.ZodString;
|
|
1871
|
+
value: z.ZodString;
|
|
1872
|
+
}, z.core.$strip>]>;
|
|
1873
|
+
export declare const ActivationKey1Schema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1874
|
+
type: z.ZodLiteral<"segment_id">;
|
|
1875
|
+
segment_id: z.ZodString;
|
|
1876
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1877
|
+
type: z.ZodLiteral<"key_value">;
|
|
1878
|
+
key: z.ZodString;
|
|
1879
|
+
value: z.ZodString;
|
|
1880
|
+
}, z.core.$strip>]>;
|
|
1881
|
+
export declare const DeploymentSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1882
|
+
type: z.ZodLiteral<"platform">;
|
|
1883
|
+
platform: z.ZodString;
|
|
1884
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1885
|
+
is_live: z.ZodBoolean;
|
|
1886
|
+
activation_key: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1887
|
+
type: z.ZodLiteral<"segment_id">;
|
|
1888
|
+
segment_id: z.ZodString;
|
|
1889
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1890
|
+
type: z.ZodLiteral<"key_value">;
|
|
1891
|
+
key: z.ZodString;
|
|
1892
|
+
value: z.ZodString;
|
|
1893
|
+
}, z.core.$strip>]>>;
|
|
1894
|
+
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
1895
|
+
deployed_at: z.ZodOptional<z.ZodString>;
|
|
1896
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1897
|
+
type: z.ZodLiteral<"agent">;
|
|
1898
|
+
agent_url: z.ZodString;
|
|
1899
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1900
|
+
is_live: z.ZodBoolean;
|
|
1901
|
+
activation_key: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1902
|
+
type: z.ZodLiteral<"segment_id">;
|
|
1903
|
+
segment_id: z.ZodString;
|
|
1904
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1905
|
+
type: z.ZodLiteral<"key_value">;
|
|
1906
|
+
key: z.ZodString;
|
|
1907
|
+
value: z.ZodString;
|
|
1908
|
+
}, z.core.$strip>]>>;
|
|
1909
|
+
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
1910
|
+
deployed_at: z.ZodOptional<z.ZodString>;
|
|
1911
|
+
}, z.core.$strip>]>;
|
|
1912
|
+
export declare const ActivateSignalRequestSchema: z.ZodObject<{
|
|
1913
|
+
signal_agent_segment_id: z.ZodString;
|
|
1914
|
+
destinations: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
1915
|
+
type: z.ZodLiteral<"platform">;
|
|
1916
|
+
platform: z.ZodString;
|
|
1917
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1918
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1919
|
+
type: z.ZodLiteral<"agent">;
|
|
1920
|
+
agent_url: z.ZodString;
|
|
1921
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1922
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
1923
|
+
type: z.ZodLiteral<"platform">;
|
|
1924
|
+
platform: z.ZodString;
|
|
1925
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1926
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1927
|
+
type: z.ZodLiteral<"agent">;
|
|
1928
|
+
agent_url: z.ZodString;
|
|
1929
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1930
|
+
}, z.core.$strip>]>>;
|
|
1931
|
+
}, z.core.$strip>;
|
|
1932
|
+
export declare const ActivateSignalResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1933
|
+
deployments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1934
|
+
type: z.ZodLiteral<"platform">;
|
|
1935
|
+
platform: z.ZodString;
|
|
1936
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1937
|
+
is_live: z.ZodBoolean;
|
|
1938
|
+
activation_key: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1939
|
+
type: z.ZodLiteral<"segment_id">;
|
|
1940
|
+
segment_id: z.ZodString;
|
|
1941
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1942
|
+
type: z.ZodLiteral<"key_value">;
|
|
1943
|
+
key: z.ZodString;
|
|
1944
|
+
value: z.ZodString;
|
|
1945
|
+
}, z.core.$strip>]>>;
|
|
1946
|
+
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
1947
|
+
deployed_at: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1949
|
+
type: z.ZodLiteral<"agent">;
|
|
1950
|
+
agent_url: z.ZodString;
|
|
1951
|
+
account: z.ZodOptional<z.ZodString>;
|
|
1952
|
+
is_live: z.ZodBoolean;
|
|
1953
|
+
activation_key: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1954
|
+
type: z.ZodLiteral<"segment_id">;
|
|
1955
|
+
segment_id: z.ZodString;
|
|
1956
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1957
|
+
type: z.ZodLiteral<"key_value">;
|
|
1958
|
+
key: z.ZodString;
|
|
1959
|
+
value: z.ZodString;
|
|
1960
|
+
}, z.core.$strip>]>>;
|
|
1961
|
+
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
1962
|
+
deployed_at: z.ZodOptional<z.ZodString>;
|
|
1963
|
+
}, z.core.$strip>]>>;
|
|
1964
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1965
|
+
errors: z.ZodTuple<[z.ZodObject<{
|
|
1563
1966
|
code: z.ZodString;
|
|
1564
1967
|
message: z.ZodString;
|
|
1565
1968
|
field: z.ZodOptional<z.ZodString>;
|
|
1566
1969
|
suggestion: z.ZodOptional<z.ZodString>;
|
|
1567
1970
|
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1568
1971
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1569
|
-
}, z.core.$strip
|
|
1570
|
-
}, z.core.$strip>;
|
|
1571
|
-
export declare const ActivateSignalRequestSchema: z.ZodObject<{
|
|
1572
|
-
signal_agent_segment_id: z.ZodString;
|
|
1573
|
-
platform: z.ZodString;
|
|
1574
|
-
account: z.ZodOptional<z.ZodString>;
|
|
1575
|
-
}, z.core.$strip>;
|
|
1576
|
-
export declare const ActivateSignalResponseSchema: z.ZodObject<{
|
|
1577
|
-
decisioning_platform_segment_id: z.ZodOptional<z.ZodString>;
|
|
1578
|
-
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
1579
|
-
deployed_at: z.ZodOptional<z.ZodString>;
|
|
1580
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1972
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1581
1973
|
code: z.ZodString;
|
|
1582
1974
|
message: z.ZodString;
|
|
1583
1975
|
field: z.ZodOptional<z.ZodString>;
|
|
1584
1976
|
suggestion: z.ZodOptional<z.ZodString>;
|
|
1585
1977
|
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1586
1978
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1587
|
-
}, z.core.$strip
|
|
1588
|
-
}, z.core.$strip>;
|
|
1979
|
+
}, z.core.$strip>>;
|
|
1980
|
+
}, z.core.$strip>]>;
|
|
1589
1981
|
export declare const PackageSchema: z.ZodObject<{
|
|
1590
1982
|
package_id: z.ZodString;
|
|
1591
1983
|
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
@@ -2097,21 +2489,35 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2097
2489
|
}, z.core.$strip>, z.ZodObject<{
|
|
2098
2490
|
content: z.ZodString;
|
|
2099
2491
|
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
2100
|
-
}, z.core.$strip>, z.
|
|
2101
|
-
|
|
2102
|
-
|
|
2492
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2493
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
2494
|
+
url: z.ZodString;
|
|
2103
2495
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
2104
2496
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2105
2497
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2106
2498
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
2107
|
-
}, z.core.$strip>, z.
|
|
2108
|
-
|
|
2109
|
-
content: z.
|
|
2499
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2500
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
2501
|
+
content: z.ZodString;
|
|
2502
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
2503
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2504
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2505
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
2506
|
+
}, z.core.$strip>]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2507
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
2508
|
+
url: z.ZodString;
|
|
2509
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
2510
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2511
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
2512
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2513
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2514
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
2515
|
+
content: z.ZodString;
|
|
2110
2516
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
2111
2517
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2112
2518
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
2113
2519
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2114
|
-
}, z.core.$strip
|
|
2520
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
2115
2521
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
2116
2522
|
url: z.ZodOptional<z.ZodString>;
|
|
2117
2523
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2241,21 +2647,35 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2241
2647
|
}, z.core.$strip>, z.ZodObject<{
|
|
2242
2648
|
content: z.ZodString;
|
|
2243
2649
|
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
2244
|
-
}, z.core.$strip>, z.
|
|
2245
|
-
|
|
2246
|
-
|
|
2650
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2651
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
2652
|
+
url: z.ZodString;
|
|
2247
2653
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
2248
2654
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2249
2655
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2250
2656
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
2251
|
-
}, z.core.$strip>, z.
|
|
2252
|
-
|
|
2253
|
-
content: z.
|
|
2657
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2658
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
2659
|
+
content: z.ZodString;
|
|
2660
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
2661
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2662
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2663
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
2664
|
+
}, z.core.$strip>]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2665
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
2666
|
+
url: z.ZodString;
|
|
2667
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
2668
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2669
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
2670
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2671
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2672
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
2673
|
+
content: z.ZodString;
|
|
2254
2674
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
2255
2675
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2256
2676
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
2257
2677
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2258
|
-
}, z.core.$strip
|
|
2678
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
2259
2679
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
2260
2680
|
url: z.ZodOptional<z.ZodString>;
|
|
2261
2681
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2359,230 +2779,38 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2359
2779
|
credentials: z.ZodString;
|
|
2360
2780
|
}, z.core.$strip>;
|
|
2361
2781
|
}, z.core.$strip>>;
|
|
2362
|
-
}, z.core.$strip>;
|
|
2363
|
-
export declare const ListCreativesRequestSchema: z.ZodObject<{
|
|
2364
|
-
filters: z.ZodOptional<z.ZodObject<{
|
|
2365
|
-
format: z.ZodOptional<z.ZodString>;
|
|
2366
|
-
formats: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2367
|
-
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>>;
|
|
2368
|
-
statuses: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>>>;
|
|
2369
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2370
|
-
tags_any: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2371
|
-
name_contains: z.ZodOptional<z.ZodString>;
|
|
2372
|
-
creative_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2373
|
-
created_after: z.ZodOptional<z.ZodString>;
|
|
2374
|
-
created_before: z.ZodOptional<z.ZodString>;
|
|
2375
|
-
updated_after: z.ZodOptional<z.ZodString>;
|
|
2376
|
-
updated_before: z.ZodOptional<z.ZodString>;
|
|
2377
|
-
assigned_to_package: z.ZodOptional<z.ZodString>;
|
|
2378
|
-
assigned_to_packages: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2379
|
-
unassigned: z.ZodOptional<z.ZodBoolean>;
|
|
2380
|
-
has_performance_data: z.ZodOptional<z.ZodBoolean>;
|
|
2381
|
-
}, z.core.$strip>>;
|
|
2382
|
-
sort: z.ZodOptional<z.ZodObject<{
|
|
2383
|
-
field: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"created_date">, z.ZodLiteral<"updated_date">, z.ZodLiteral<"name">, z.ZodLiteral<"status">, z.ZodLiteral<"assignment_count">, z.ZodLiteral<"performance_score">]>>;
|
|
2384
|
-
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asc">, z.ZodLiteral<"desc">]>>;
|
|
2385
|
-
}, z.core.$strip>>;
|
|
2386
|
-
pagination: z.ZodOptional<z.ZodObject<{
|
|
2387
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
2388
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
2389
|
-
}, z.core.$strip>>;
|
|
2390
|
-
include_assignments: z.ZodOptional<z.ZodBoolean>;
|
|
2391
|
-
include_performance: z.ZodOptional<z.ZodBoolean>;
|
|
2392
|
-
include_sub_assets: z.ZodOptional<z.ZodBoolean>;
|
|
2393
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"creative_id">, z.ZodLiteral<"name">, z.ZodLiteral<"format">, z.ZodLiteral<"status">, z.ZodLiteral<"created_date">, z.ZodLiteral<"updated_date">, z.ZodLiteral<"tags">, z.ZodLiteral<"assignments">, z.ZodLiteral<"performance">, z.ZodLiteral<"sub_assets">]>>>;
|
|
2394
|
-
}, z.core.$strip>;
|
|
2395
|
-
export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
2396
|
-
query_summary: z.ZodObject<{
|
|
2397
|
-
total_matching: z.ZodNumber;
|
|
2398
|
-
returned: z.ZodNumber;
|
|
2399
|
-
filters_applied: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2400
|
-
sort_applied: z.ZodOptional<z.ZodObject<{
|
|
2401
|
-
field: z.ZodOptional<z.ZodString>;
|
|
2402
|
-
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asc">, z.ZodLiteral<"desc">]>>;
|
|
2403
|
-
}, z.core.$strip>>;
|
|
2404
|
-
}, z.core.$strip>;
|
|
2405
|
-
pagination: z.ZodObject<{
|
|
2406
|
-
limit: z.ZodNumber;
|
|
2407
|
-
offset: z.ZodNumber;
|
|
2408
|
-
has_more: z.ZodBoolean;
|
|
2409
|
-
total_pages: z.ZodOptional<z.ZodNumber>;
|
|
2410
|
-
current_page: z.ZodOptional<z.ZodNumber>;
|
|
2411
|
-
}, z.core.$strip>;
|
|
2412
|
-
creatives: z.ZodArray<z.ZodObject<{
|
|
2413
|
-
creative_id: z.ZodString;
|
|
2414
|
-
name: z.ZodString;
|
|
2415
|
-
format_id: z.ZodObject<{
|
|
2416
|
-
agent_url: z.ZodString;
|
|
2417
|
-
id: z.ZodString;
|
|
2418
|
-
}, z.core.$strip>;
|
|
2419
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
2420
|
-
created_date: z.ZodString;
|
|
2421
|
-
updated_date: z.ZodString;
|
|
2422
|
-
media_url: z.ZodOptional<z.ZodString>;
|
|
2423
|
-
assets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
2424
|
-
url: z.ZodString;
|
|
2425
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
2426
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
2427
|
-
format: z.ZodOptional<z.ZodString>;
|
|
2428
|
-
alt_text: z.ZodOptional<z.ZodString>;
|
|
2429
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2430
|
-
url: z.ZodString;
|
|
2431
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
2432
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
2433
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2434
|
-
format: z.ZodOptional<z.ZodString>;
|
|
2435
|
-
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
2436
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2437
|
-
url: z.ZodString;
|
|
2438
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2439
|
-
format: z.ZodOptional<z.ZodString>;
|
|
2440
|
-
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
2441
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2442
|
-
content: z.ZodString;
|
|
2443
|
-
language: z.ZodOptional<z.ZodString>;
|
|
2444
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2445
|
-
content: z.ZodString;
|
|
2446
|
-
version: z.ZodOptional<z.ZodString>;
|
|
2447
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2448
|
-
content: z.ZodString;
|
|
2449
|
-
media: z.ZodOptional<z.ZodString>;
|
|
2450
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2451
|
-
content: z.ZodString;
|
|
2452
|
-
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
2453
|
-
}, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
|
|
2454
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2455
|
-
content: z.ZodOptional<z.ZodString>;
|
|
2456
|
-
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
2457
|
-
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2458
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2459
|
-
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
2460
|
-
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>, z.ZodIntersection<z.ZodObject<{
|
|
2461
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2462
|
-
content: z.ZodOptional<z.ZodString>;
|
|
2463
|
-
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
2464
|
-
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2465
|
-
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
2466
|
-
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2467
|
-
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>, z.ZodObject<{
|
|
2468
|
-
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
2469
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2470
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2471
|
-
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2472
|
-
url: z.ZodString;
|
|
2473
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2474
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
2475
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
2476
|
-
}, z.core.$strip>>>;
|
|
2477
|
-
colors: z.ZodOptional<z.ZodObject<{
|
|
2478
|
-
primary: z.ZodOptional<z.ZodString>;
|
|
2479
|
-
secondary: z.ZodOptional<z.ZodString>;
|
|
2480
|
-
accent: z.ZodOptional<z.ZodString>;
|
|
2481
|
-
background: z.ZodOptional<z.ZodString>;
|
|
2482
|
-
text: z.ZodOptional<z.ZodString>;
|
|
2483
|
-
}, z.core.$strip>>;
|
|
2484
|
-
fonts: z.ZodOptional<z.ZodObject<{
|
|
2485
|
-
primary: z.ZodOptional<z.ZodString>;
|
|
2486
|
-
secondary: z.ZodOptional<z.ZodString>;
|
|
2487
|
-
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2488
|
-
}, z.core.$strip>>;
|
|
2489
|
-
tone: z.ZodOptional<z.ZodString>;
|
|
2490
|
-
tagline: z.ZodOptional<z.ZodString>;
|
|
2491
|
-
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2492
|
-
asset_id: z.ZodString;
|
|
2493
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
2494
|
-
url: z.ZodString;
|
|
2495
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2496
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2497
|
-
description: z.ZodOptional<z.ZodString>;
|
|
2498
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
2499
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
2500
|
-
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
2501
|
-
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
2502
|
-
format: z.ZodOptional<z.ZodString>;
|
|
2503
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2504
|
-
}, z.core.$strip>>>;
|
|
2505
|
-
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
2506
|
-
feed_url: z.ZodString;
|
|
2507
|
-
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
2508
|
-
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2509
|
-
last_updated: z.ZodOptional<z.ZodString>;
|
|
2510
|
-
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
2511
|
-
}, z.core.$strip>>;
|
|
2512
|
-
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2513
|
-
text: z.ZodString;
|
|
2514
|
-
context: z.ZodOptional<z.ZodString>;
|
|
2515
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
2516
|
-
}, z.core.$strip>>>;
|
|
2517
|
-
industry: z.ZodOptional<z.ZodString>;
|
|
2518
|
-
target_audience: z.ZodOptional<z.ZodString>;
|
|
2519
|
-
contact: z.ZodOptional<z.ZodObject<{
|
|
2520
|
-
email: z.ZodOptional<z.ZodString>;
|
|
2521
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2522
|
-
}, z.core.$strip>>;
|
|
2523
|
-
metadata: z.ZodOptional<z.ZodObject<{
|
|
2524
|
-
created_date: z.ZodOptional<z.ZodString>;
|
|
2525
|
-
updated_date: z.ZodOptional<z.ZodString>;
|
|
2526
|
-
version: z.ZodOptional<z.ZodString>;
|
|
2527
|
-
}, z.core.$strip>>;
|
|
2528
|
-
}, z.core.$strip>>, z.ZodString]>;
|
|
2529
|
-
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
2530
|
-
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2531
|
-
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2532
|
-
manifest_category: z.ZodOptional<z.ZodString>;
|
|
2533
|
-
manifest_query: z.ZodOptional<z.ZodString>;
|
|
2534
|
-
}, z.core.$strip>>;
|
|
2535
|
-
offerings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2536
|
-
name: z.ZodString;
|
|
2537
|
-
description: z.ZodOptional<z.ZodString>;
|
|
2538
|
-
assets: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2539
|
-
}, z.core.$strip>>>;
|
|
2540
|
-
asset_selectors: z.ZodOptional<z.ZodObject<{
|
|
2541
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2542
|
-
asset_types: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"text">, z.ZodLiteral<"url">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"webhook">]>>>;
|
|
2543
|
-
exclude_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2544
|
-
}, z.core.$strip>>;
|
|
2545
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2546
|
-
url: z.ZodString;
|
|
2547
|
-
url_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"clickthrough">, z.ZodLiteral<"tracker_pixel">, z.ZodLiteral<"tracker_script">]>>;
|
|
2548
|
-
description: z.ZodOptional<z.ZodString>;
|
|
2549
|
-
}, z.core.$strip>]>>>;
|
|
2550
|
-
click_url: z.ZodOptional<z.ZodString>;
|
|
2551
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
2552
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
2553
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
2554
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2555
|
-
assignments: z.ZodOptional<z.ZodObject<{
|
|
2556
|
-
assignment_count: z.ZodNumber;
|
|
2557
|
-
assigned_packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2558
|
-
package_id: z.ZodString;
|
|
2559
|
-
package_name: z.ZodOptional<z.ZodString>;
|
|
2560
|
-
assigned_date: z.ZodString;
|
|
2561
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"ended">]>;
|
|
2562
|
-
}, z.core.$strip>>>;
|
|
2563
|
-
}, z.core.$strip>>;
|
|
2564
|
-
performance: z.ZodOptional<z.ZodObject<{
|
|
2565
|
-
impressions: z.ZodOptional<z.ZodNumber>;
|
|
2566
|
-
clicks: z.ZodOptional<z.ZodNumber>;
|
|
2567
|
-
ctr: z.ZodOptional<z.ZodNumber>;
|
|
2568
|
-
conversion_rate: z.ZodOptional<z.ZodNumber>;
|
|
2569
|
-
performance_score: z.ZodOptional<z.ZodNumber>;
|
|
2570
|
-
last_updated: z.ZodString;
|
|
2571
|
-
}, z.core.$strip>>;
|
|
2572
|
-
sub_assets: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2573
|
-
asset_type: z.ZodOptional<z.ZodString>;
|
|
2574
|
-
asset_id: z.ZodOptional<z.ZodString>;
|
|
2575
|
-
content_uri: z.ZodOptional<z.ZodString>;
|
|
2576
|
-
content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
2577
|
-
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>>;
|
|
2782
|
+
}, z.core.$strip>;
|
|
2783
|
+
export declare const ListCreativesRequestSchema: z.ZodObject<{
|
|
2784
|
+
filters: z.ZodOptional<z.ZodObject<{
|
|
2785
|
+
format: z.ZodOptional<z.ZodString>;
|
|
2786
|
+
formats: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2787
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>>;
|
|
2788
|
+
statuses: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>>>;
|
|
2789
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2790
|
+
tags_any: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2791
|
+
name_contains: z.ZodOptional<z.ZodString>;
|
|
2792
|
+
creative_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2793
|
+
created_after: z.ZodOptional<z.ZodString>;
|
|
2794
|
+
created_before: z.ZodOptional<z.ZodString>;
|
|
2795
|
+
updated_after: z.ZodOptional<z.ZodString>;
|
|
2796
|
+
updated_before: z.ZodOptional<z.ZodString>;
|
|
2797
|
+
assigned_to_package: z.ZodOptional<z.ZodString>;
|
|
2798
|
+
assigned_to_packages: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2799
|
+
unassigned: z.ZodOptional<z.ZodBoolean>;
|
|
2800
|
+
has_performance_data: z.ZodOptional<z.ZodBoolean>;
|
|
2578
2801
|
}, z.core.$strip>>;
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2802
|
+
sort: z.ZodOptional<z.ZodObject<{
|
|
2803
|
+
field: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"created_date">, z.ZodLiteral<"updated_date">, z.ZodLiteral<"name">, z.ZodLiteral<"status">, z.ZodLiteral<"assignment_count">, z.ZodLiteral<"performance_score">]>>;
|
|
2804
|
+
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asc">, z.ZodLiteral<"desc">]>>;
|
|
2805
|
+
}, z.core.$strip>>;
|
|
2806
|
+
pagination: z.ZodOptional<z.ZodObject<{
|
|
2807
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
2808
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
2585
2809
|
}, z.core.$strip>>;
|
|
2810
|
+
include_assignments: z.ZodOptional<z.ZodBoolean>;
|
|
2811
|
+
include_performance: z.ZodOptional<z.ZodBoolean>;
|
|
2812
|
+
include_sub_assets: z.ZodOptional<z.ZodBoolean>;
|
|
2813
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"creative_id">, z.ZodLiteral<"name">, z.ZodLiteral<"format">, z.ZodLiteral<"status">, z.ZodLiteral<"created_date">, z.ZodLiteral<"updated_date">, z.ZodLiteral<"tags">, z.ZodLiteral<"assignments">, z.ZodLiteral<"performance">, z.ZodLiteral<"sub_assets">]>>>;
|
|
2586
2814
|
}, z.core.$strip>;
|
|
2587
2815
|
export declare const UpdateMediaBuyRequestSchema: z.ZodIntersection<z.ZodObject<{
|
|
2588
2816
|
media_buy_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2758,14 +2986,21 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
2758
2986
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2759
2987
|
format: z.ZodOptional<z.ZodString>;
|
|
2760
2988
|
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
2761
|
-
}, z.core.$strip>, z.
|
|
2762
|
-
|
|
2763
|
-
|
|
2989
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
2990
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
2991
|
+
url: z.ZodString;
|
|
2992
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
2993
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2994
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2995
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
2996
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2997
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
2998
|
+
content: z.ZodString;
|
|
2764
2999
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
2765
3000
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2766
3001
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2767
3002
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
2768
|
-
}, z.core.$strip
|
|
3003
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
2769
3004
|
content: z.ZodString;
|
|
2770
3005
|
language: z.ZodOptional<z.ZodString>;
|
|
2771
3006
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2793,14 +3028,21 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
2793
3028
|
}, z.core.$strip>, z.ZodObject<{
|
|
2794
3029
|
content: z.ZodString;
|
|
2795
3030
|
media: z.ZodOptional<z.ZodString>;
|
|
2796
|
-
}, z.core.$strip>, z.
|
|
2797
|
-
|
|
2798
|
-
|
|
3031
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3032
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3033
|
+
url: z.ZodString;
|
|
3034
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3035
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3036
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3037
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3038
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3039
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3040
|
+
content: z.ZodString;
|
|
2799
3041
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
2800
3042
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2801
3043
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
2802
3044
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2803
|
-
}, z.core.$strip
|
|
3045
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
2804
3046
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
2805
3047
|
url: z.ZodOptional<z.ZodString>;
|
|
2806
3048
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2885,7 +3127,7 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
2885
3127
|
id: z.ZodString;
|
|
2886
3128
|
}, z.core.$strip>;
|
|
2887
3129
|
}, z.core.$strip>;
|
|
2888
|
-
export declare const BuildCreativeResponseSchema: z.ZodObject<{
|
|
3130
|
+
export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
2889
3131
|
creative_manifest: z.ZodObject<{
|
|
2890
3132
|
format_id: z.ZodObject<{
|
|
2891
3133
|
agent_url: z.ZodString;
|
|
@@ -2910,14 +3152,21 @@ export declare const BuildCreativeResponseSchema: z.ZodObject<{
|
|
|
2910
3152
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2911
3153
|
format: z.ZodOptional<z.ZodString>;
|
|
2912
3154
|
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
2913
|
-
}, z.core.$strip>, z.
|
|
2914
|
-
|
|
2915
|
-
|
|
3155
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3156
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3157
|
+
url: z.ZodString;
|
|
3158
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
3159
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3160
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3161
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
3162
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3163
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3164
|
+
content: z.ZodString;
|
|
2916
3165
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
2917
3166
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2918
3167
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2919
3168
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
2920
|
-
}, z.core.$strip
|
|
3169
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
2921
3170
|
content: z.ZodString;
|
|
2922
3171
|
language: z.ZodOptional<z.ZodString>;
|
|
2923
3172
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2945,14 +3194,21 @@ export declare const BuildCreativeResponseSchema: z.ZodObject<{
|
|
|
2945
3194
|
}, z.core.$strip>, z.ZodObject<{
|
|
2946
3195
|
content: z.ZodString;
|
|
2947
3196
|
media: z.ZodOptional<z.ZodString>;
|
|
2948
|
-
}, z.core.$strip>, z.
|
|
2949
|
-
|
|
2950
|
-
|
|
3197
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3198
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3199
|
+
url: z.ZodString;
|
|
3200
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3201
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3202
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3203
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3204
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3205
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3206
|
+
content: z.ZodString;
|
|
2951
3207
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
2952
3208
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
2953
3209
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
2954
3210
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2955
|
-
}, z.core.$strip
|
|
3211
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
2956
3212
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
2957
3213
|
url: z.ZodOptional<z.ZodString>;
|
|
2958
3214
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3032,15 +3288,23 @@ export declare const BuildCreativeResponseSchema: z.ZodObject<{
|
|
|
3032
3288
|
}, z.core.$strip>>;
|
|
3033
3289
|
}, z.core.$strip>]>>;
|
|
3034
3290
|
}, z.core.$strip>;
|
|
3035
|
-
|
|
3291
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3292
|
+
errors: z.ZodTuple<[z.ZodObject<{
|
|
3036
3293
|
code: z.ZodString;
|
|
3037
3294
|
message: z.ZodString;
|
|
3038
3295
|
field: z.ZodOptional<z.ZodString>;
|
|
3039
3296
|
suggestion: z.ZodOptional<z.ZodString>;
|
|
3040
3297
|
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
3041
3298
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3042
|
-
}, z.core.$strip
|
|
3043
|
-
|
|
3299
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
3300
|
+
code: z.ZodString;
|
|
3301
|
+
message: z.ZodString;
|
|
3302
|
+
field: z.ZodOptional<z.ZodString>;
|
|
3303
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
3304
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
3305
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3306
|
+
}, z.core.$strip>>;
|
|
3307
|
+
}, z.core.$strip>]>;
|
|
3044
3308
|
export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
3045
3309
|
format_id: z.ZodObject<{
|
|
3046
3310
|
agent_url: z.ZodString;
|
|
@@ -3070,14 +3334,21 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3070
3334
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3071
3335
|
format: z.ZodOptional<z.ZodString>;
|
|
3072
3336
|
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
3073
|
-
}, z.core.$strip>, z.
|
|
3074
|
-
|
|
3075
|
-
|
|
3337
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3338
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3339
|
+
url: z.ZodString;
|
|
3340
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
3341
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3342
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3343
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
3344
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3345
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3346
|
+
content: z.ZodString;
|
|
3076
3347
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
3077
3348
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3078
3349
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3079
3350
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
3080
|
-
}, z.core.$strip
|
|
3351
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
3081
3352
|
content: z.ZodString;
|
|
3082
3353
|
language: z.ZodOptional<z.ZodString>;
|
|
3083
3354
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3105,14 +3376,21 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3105
3376
|
}, z.core.$strip>, z.ZodObject<{
|
|
3106
3377
|
content: z.ZodString;
|
|
3107
3378
|
media: z.ZodOptional<z.ZodString>;
|
|
3108
|
-
}, z.core.$strip>, z.
|
|
3109
|
-
|
|
3110
|
-
|
|
3379
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3380
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3381
|
+
url: z.ZodString;
|
|
3382
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3383
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3384
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3385
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3386
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3387
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3388
|
+
content: z.ZodString;
|
|
3111
3389
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3112
3390
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3113
3391
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3114
3392
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3115
|
-
}, z.core.$strip
|
|
3393
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
3116
3394
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
3117
3395
|
url: z.ZodOptional<z.ZodString>;
|
|
3118
3396
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3229,14 +3507,21 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3229
3507
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3230
3508
|
format: z.ZodOptional<z.ZodString>;
|
|
3231
3509
|
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
3232
|
-
}, z.core.$strip>, z.
|
|
3233
|
-
|
|
3234
|
-
|
|
3510
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3511
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3512
|
+
url: z.ZodString;
|
|
3513
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
3514
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3515
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3516
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
3517
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3518
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3519
|
+
content: z.ZodString;
|
|
3235
3520
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
3236
3521
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3237
3522
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3238
3523
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
3239
|
-
}, z.core.$strip
|
|
3524
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
3240
3525
|
content: z.ZodString;
|
|
3241
3526
|
language: z.ZodOptional<z.ZodString>;
|
|
3242
3527
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3264,14 +3549,21 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3264
3549
|
}, z.core.$strip>, z.ZodObject<{
|
|
3265
3550
|
content: z.ZodString;
|
|
3266
3551
|
media: z.ZodOptional<z.ZodString>;
|
|
3267
|
-
}, z.core.$strip>, z.
|
|
3268
|
-
|
|
3269
|
-
|
|
3552
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3553
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3554
|
+
url: z.ZodString;
|
|
3555
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3556
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3557
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3558
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3559
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3560
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3561
|
+
content: z.ZodString;
|
|
3270
3562
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3271
3563
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3272
3564
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3273
3565
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3274
|
-
}, z.core.$strip
|
|
3566
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
3275
3567
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
3276
3568
|
url: z.ZodOptional<z.ZodString>;
|
|
3277
3569
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3387,14 +3679,21 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3387
3679
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3388
3680
|
format: z.ZodOptional<z.ZodString>;
|
|
3389
3681
|
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
3390
|
-
}, z.core.$strip>, z.
|
|
3391
|
-
|
|
3392
|
-
|
|
3682
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3683
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3684
|
+
url: z.ZodString;
|
|
3685
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
3686
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3687
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3688
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
3689
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3690
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3691
|
+
content: z.ZodString;
|
|
3393
3692
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
3394
3693
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3395
3694
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3396
3695
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
3397
|
-
}, z.core.$strip
|
|
3696
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
3398
3697
|
content: z.ZodString;
|
|
3399
3698
|
language: z.ZodOptional<z.ZodString>;
|
|
3400
3699
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3422,14 +3721,21 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3422
3721
|
}, z.core.$strip>, z.ZodObject<{
|
|
3423
3722
|
content: z.ZodString;
|
|
3424
3723
|
media: z.ZodOptional<z.ZodString>;
|
|
3425
|
-
}, z.core.$strip>, z.
|
|
3426
|
-
|
|
3427
|
-
|
|
3724
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
3725
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
3726
|
+
url: z.ZodString;
|
|
3727
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3728
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3729
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3730
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3731
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3732
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
3733
|
+
content: z.ZodString;
|
|
3428
3734
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3429
3735
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3430
3736
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3431
3737
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3432
|
-
}, z.core.$strip
|
|
3738
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
3433
3739
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
3434
3740
|
url: z.ZodOptional<z.ZodString>;
|
|
3435
3741
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3519,6 +3825,274 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3519
3825
|
}, z.core.$strip>>;
|
|
3520
3826
|
output_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"url">, z.ZodLiteral<"html">]>>;
|
|
3521
3827
|
}, z.core.$strip>]>;
|
|
3828
|
+
export declare const PreviewCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
3829
|
+
previews: z.ZodTuple<[z.ZodObject<{
|
|
3830
|
+
preview_id: z.ZodString;
|
|
3831
|
+
renders: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
3832
|
+
render_id: z.ZodString;
|
|
3833
|
+
output_format: z.ZodLiteral<"url">;
|
|
3834
|
+
preview_url: z.ZodString;
|
|
3835
|
+
role: z.ZodString;
|
|
3836
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3837
|
+
width: z.ZodNumber;
|
|
3838
|
+
height: z.ZodNumber;
|
|
3839
|
+
}, z.core.$strip>>;
|
|
3840
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3841
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3842
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3843
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3844
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3845
|
+
}, z.core.$strip>>;
|
|
3846
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3847
|
+
render_id: z.ZodString;
|
|
3848
|
+
output_format: z.ZodLiteral<"html">;
|
|
3849
|
+
preview_html: z.ZodString;
|
|
3850
|
+
role: z.ZodString;
|
|
3851
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3852
|
+
width: z.ZodNumber;
|
|
3853
|
+
height: z.ZodNumber;
|
|
3854
|
+
}, z.core.$strip>>;
|
|
3855
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3856
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3857
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3858
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3859
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3860
|
+
}, z.core.$strip>>;
|
|
3861
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3862
|
+
render_id: z.ZodString;
|
|
3863
|
+
output_format: z.ZodLiteral<"both">;
|
|
3864
|
+
preview_url: z.ZodString;
|
|
3865
|
+
preview_html: z.ZodString;
|
|
3866
|
+
role: z.ZodString;
|
|
3867
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3868
|
+
width: z.ZodNumber;
|
|
3869
|
+
height: z.ZodNumber;
|
|
3870
|
+
}, z.core.$strip>>;
|
|
3871
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3872
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3873
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3874
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3875
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3876
|
+
}, z.core.$strip>>;
|
|
3877
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
3878
|
+
render_id: z.ZodString;
|
|
3879
|
+
output_format: z.ZodLiteral<"url">;
|
|
3880
|
+
preview_url: z.ZodString;
|
|
3881
|
+
role: z.ZodString;
|
|
3882
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3883
|
+
width: z.ZodNumber;
|
|
3884
|
+
height: z.ZodNumber;
|
|
3885
|
+
}, z.core.$strip>>;
|
|
3886
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3887
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3888
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3889
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3890
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3891
|
+
}, z.core.$strip>>;
|
|
3892
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3893
|
+
render_id: z.ZodString;
|
|
3894
|
+
output_format: z.ZodLiteral<"html">;
|
|
3895
|
+
preview_html: z.ZodString;
|
|
3896
|
+
role: z.ZodString;
|
|
3897
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3898
|
+
width: z.ZodNumber;
|
|
3899
|
+
height: z.ZodNumber;
|
|
3900
|
+
}, z.core.$strip>>;
|
|
3901
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3902
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3903
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3904
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3905
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3906
|
+
}, z.core.$strip>>;
|
|
3907
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3908
|
+
render_id: z.ZodString;
|
|
3909
|
+
output_format: z.ZodLiteral<"both">;
|
|
3910
|
+
preview_url: z.ZodString;
|
|
3911
|
+
preview_html: z.ZodString;
|
|
3912
|
+
role: z.ZodString;
|
|
3913
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3914
|
+
width: z.ZodNumber;
|
|
3915
|
+
height: z.ZodNumber;
|
|
3916
|
+
}, z.core.$strip>>;
|
|
3917
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3918
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3919
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3920
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3921
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3922
|
+
}, z.core.$strip>>;
|
|
3923
|
+
}, z.core.$strip>]>>;
|
|
3924
|
+
input: z.ZodObject<{
|
|
3925
|
+
name: z.ZodString;
|
|
3926
|
+
macros: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3927
|
+
context_description: z.ZodOptional<z.ZodString>;
|
|
3928
|
+
}, z.core.$strip>;
|
|
3929
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
3930
|
+
preview_id: z.ZodString;
|
|
3931
|
+
renders: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
3932
|
+
render_id: z.ZodString;
|
|
3933
|
+
output_format: z.ZodLiteral<"url">;
|
|
3934
|
+
preview_url: z.ZodString;
|
|
3935
|
+
role: z.ZodString;
|
|
3936
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3937
|
+
width: z.ZodNumber;
|
|
3938
|
+
height: z.ZodNumber;
|
|
3939
|
+
}, z.core.$strip>>;
|
|
3940
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3941
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3942
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3943
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3944
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3945
|
+
}, z.core.$strip>>;
|
|
3946
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3947
|
+
render_id: z.ZodString;
|
|
3948
|
+
output_format: z.ZodLiteral<"html">;
|
|
3949
|
+
preview_html: z.ZodString;
|
|
3950
|
+
role: z.ZodString;
|
|
3951
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3952
|
+
width: z.ZodNumber;
|
|
3953
|
+
height: z.ZodNumber;
|
|
3954
|
+
}, z.core.$strip>>;
|
|
3955
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3956
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3957
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3958
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3959
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3960
|
+
}, z.core.$strip>>;
|
|
3961
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3962
|
+
render_id: z.ZodString;
|
|
3963
|
+
output_format: z.ZodLiteral<"both">;
|
|
3964
|
+
preview_url: z.ZodString;
|
|
3965
|
+
preview_html: z.ZodString;
|
|
3966
|
+
role: z.ZodString;
|
|
3967
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3968
|
+
width: z.ZodNumber;
|
|
3969
|
+
height: z.ZodNumber;
|
|
3970
|
+
}, z.core.$strip>>;
|
|
3971
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3972
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3973
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3974
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3975
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3976
|
+
}, z.core.$strip>>;
|
|
3977
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
3978
|
+
render_id: z.ZodString;
|
|
3979
|
+
output_format: z.ZodLiteral<"url">;
|
|
3980
|
+
preview_url: z.ZodString;
|
|
3981
|
+
role: z.ZodString;
|
|
3982
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3983
|
+
width: z.ZodNumber;
|
|
3984
|
+
height: z.ZodNumber;
|
|
3985
|
+
}, z.core.$strip>>;
|
|
3986
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
3987
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
3988
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
3989
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
3990
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
3991
|
+
}, z.core.$strip>>;
|
|
3992
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3993
|
+
render_id: z.ZodString;
|
|
3994
|
+
output_format: z.ZodLiteral<"html">;
|
|
3995
|
+
preview_html: z.ZodString;
|
|
3996
|
+
role: z.ZodString;
|
|
3997
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
3998
|
+
width: z.ZodNumber;
|
|
3999
|
+
height: z.ZodNumber;
|
|
4000
|
+
}, z.core.$strip>>;
|
|
4001
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
4002
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
4003
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
4004
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
4005
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
4006
|
+
}, z.core.$strip>>;
|
|
4007
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4008
|
+
render_id: z.ZodString;
|
|
4009
|
+
output_format: z.ZodLiteral<"both">;
|
|
4010
|
+
preview_url: z.ZodString;
|
|
4011
|
+
preview_html: z.ZodString;
|
|
4012
|
+
role: z.ZodString;
|
|
4013
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
4014
|
+
width: z.ZodNumber;
|
|
4015
|
+
height: z.ZodNumber;
|
|
4016
|
+
}, z.core.$strip>>;
|
|
4017
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
4018
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
4019
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
4020
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
4021
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
4022
|
+
}, z.core.$strip>>;
|
|
4023
|
+
}, z.core.$strip>]>>;
|
|
4024
|
+
input: z.ZodObject<{
|
|
4025
|
+
name: z.ZodString;
|
|
4026
|
+
macros: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4027
|
+
context_description: z.ZodOptional<z.ZodString>;
|
|
4028
|
+
}, z.core.$strip>;
|
|
4029
|
+
}, z.core.$strip>>;
|
|
4030
|
+
interactive_url: z.ZodOptional<z.ZodString>;
|
|
4031
|
+
expires_at: z.ZodString;
|
|
4032
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4033
|
+
results: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
4034
|
+
success: z.ZodOptional<z.ZodLiteral<true>>;
|
|
4035
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4036
|
+
success: z.ZodOptional<z.ZodLiteral<false>>;
|
|
4037
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
4038
|
+
success: z.ZodOptional<z.ZodLiteral<true>>;
|
|
4039
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4040
|
+
success: z.ZodOptional<z.ZodLiteral<false>>;
|
|
4041
|
+
}, z.core.$strip>]>>;
|
|
4042
|
+
}, z.core.$strip>]>;
|
|
4043
|
+
export declare const GetSignalsResponseSchema: z.ZodObject<{
|
|
4044
|
+
signals: z.ZodArray<z.ZodObject<{
|
|
4045
|
+
signal_agent_segment_id: z.ZodString;
|
|
4046
|
+
name: z.ZodString;
|
|
4047
|
+
description: z.ZodString;
|
|
4048
|
+
signal_type: z.ZodUnion<readonly [z.ZodLiteral<"marketplace">, z.ZodLiteral<"custom">, z.ZodLiteral<"owned">]>;
|
|
4049
|
+
data_provider: z.ZodString;
|
|
4050
|
+
coverage_percentage: z.ZodNumber;
|
|
4051
|
+
deployments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4052
|
+
type: z.ZodLiteral<"platform">;
|
|
4053
|
+
platform: z.ZodString;
|
|
4054
|
+
account: z.ZodOptional<z.ZodString>;
|
|
4055
|
+
is_live: z.ZodBoolean;
|
|
4056
|
+
activation_key: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4057
|
+
type: z.ZodLiteral<"segment_id">;
|
|
4058
|
+
segment_id: z.ZodString;
|
|
4059
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4060
|
+
type: z.ZodLiteral<"key_value">;
|
|
4061
|
+
key: z.ZodString;
|
|
4062
|
+
value: z.ZodString;
|
|
4063
|
+
}, z.core.$strip>]>>;
|
|
4064
|
+
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
4065
|
+
deployed_at: z.ZodOptional<z.ZodString>;
|
|
4066
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4067
|
+
type: z.ZodLiteral<"agent">;
|
|
4068
|
+
agent_url: z.ZodString;
|
|
4069
|
+
account: z.ZodOptional<z.ZodString>;
|
|
4070
|
+
is_live: z.ZodBoolean;
|
|
4071
|
+
activation_key: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4072
|
+
type: z.ZodLiteral<"segment_id">;
|
|
4073
|
+
segment_id: z.ZodString;
|
|
4074
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4075
|
+
type: z.ZodLiteral<"key_value">;
|
|
4076
|
+
key: z.ZodString;
|
|
4077
|
+
value: z.ZodString;
|
|
4078
|
+
}, z.core.$strip>]>>;
|
|
4079
|
+
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
4080
|
+
deployed_at: z.ZodOptional<z.ZodString>;
|
|
4081
|
+
}, z.core.$strip>]>>;
|
|
4082
|
+
pricing: z.ZodObject<{
|
|
4083
|
+
cpm: z.ZodNumber;
|
|
4084
|
+
currency: z.ZodString;
|
|
4085
|
+
}, z.core.$strip>;
|
|
4086
|
+
}, z.core.$strip>>;
|
|
4087
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4088
|
+
code: z.ZodString;
|
|
4089
|
+
message: z.ZodString;
|
|
4090
|
+
field: z.ZodOptional<z.ZodString>;
|
|
4091
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
4092
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
4093
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4094
|
+
}, z.core.$strip>>>;
|
|
4095
|
+
}, z.core.$strip>;
|
|
3522
4096
|
export declare const MediaBuySchema: z.ZodObject<{
|
|
3523
4097
|
media_buy_id: z.ZodString;
|
|
3524
4098
|
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
@@ -3719,21 +4293,35 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
3719
4293
|
}, z.core.$strip>, z.ZodObject<{
|
|
3720
4294
|
content: z.ZodString;
|
|
3721
4295
|
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
3722
|
-
}, z.core.$strip>, z.
|
|
3723
|
-
|
|
3724
|
-
|
|
4296
|
+
}, z.core.$strip>, z.ZodUnion<readonly [z.ZodObject<{
|
|
4297
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
4298
|
+
url: z.ZodString;
|
|
3725
4299
|
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
3726
4300
|
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3727
4301
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3728
4302
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
3729
|
-
}, z.core.$strip>, z.
|
|
3730
|
-
|
|
3731
|
-
content: z.
|
|
4303
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4304
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
4305
|
+
content: z.ZodString;
|
|
4306
|
+
vast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"2.0">, z.ZodLiteral<"3.0">, z.ZodLiteral<"4.0">, z.ZodLiteral<"4.1">, z.ZodLiteral<"4.2">]>>;
|
|
4307
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4308
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
4309
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"click">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">, z.ZodLiteral<"fullscreen">, z.ZodLiteral<"exitFullscreen">, z.ZodLiteral<"playerExpand">, z.ZodLiteral<"playerCollapse">]>>>;
|
|
4310
|
+
}, z.core.$strip>]>, z.ZodUnion<readonly [z.ZodObject<{
|
|
4311
|
+
delivery_type: z.ZodLiteral<"url">;
|
|
4312
|
+
url: z.ZodString;
|
|
4313
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
4314
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
4315
|
+
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
4316
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
4317
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4318
|
+
delivery_type: z.ZodLiteral<"inline">;
|
|
4319
|
+
content: z.ZodString;
|
|
3732
4320
|
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
3733
4321
|
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
3734
4322
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
3735
4323
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3736
|
-
}, z.core.$strip
|
|
4324
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
3737
4325
|
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
3738
4326
|
url: z.ZodOptional<z.ZodString>;
|
|
3739
4327
|
name: z.ZodOptional<z.ZodString>;
|