@adcp/client 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/protocols/a2a.js +2 -2
- package/dist/lib/protocols/a2a.js.map +1 -1
- package/dist/lib/types/schemas.generated.d.ts +1790 -1416
- package/dist/lib/types/schemas.generated.d.ts.map +1 -1
- package/dist/lib/types/schemas.generated.js +785 -294
- package/dist/lib/types/schemas.generated.js.map +1 -1
- package/dist/lib/version.d.ts +3 -3
- package/dist/lib/version.js +3 -3
- package/package.json +4 -3
|
@@ -1,325 +1,1289 @@
|
|
|
1
|
-
import { z } from
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const MediaBuyStatusSchema: z.ZodUnion<readonly [z.ZodLiteral<"pending_activation">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
3
|
+
export declare const PacingSchema: z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>;
|
|
4
|
+
export declare const PackageStatusSchema: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
5
|
+
export declare const CreativeAssignmentSchema: z.ZodObject<{
|
|
6
|
+
creative_id: z.ZodString;
|
|
7
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
export declare const FormatIDSchema: z.ZodObject<{
|
|
10
|
+
agent_url: z.ZodString;
|
|
11
|
+
id: z.ZodString;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
export declare const FrequencyCapSchema: z.ZodObject<{
|
|
14
|
+
suppress_minutes: z.ZodNumber;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
export declare const VASTAsset1Schema: z.ZodObject<{
|
|
17
|
+
url: z.ZodOptional<z.ZodString>;
|
|
18
|
+
content: z.ZodOptional<z.ZodString>;
|
|
19
|
+
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">]>>;
|
|
20
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
21
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
22
|
+
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">]>>>;
|
|
23
|
+
}, z.core.$strip>;
|
|
24
|
+
export declare const VASTAsset2Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
25
|
+
export declare const DAASTAsset1Schema: z.ZodObject<{
|
|
26
|
+
url: z.ZodOptional<z.ZodString>;
|
|
27
|
+
content: z.ZodOptional<z.ZodString>;
|
|
28
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
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<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
31
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
export declare const DAASTAsset2Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
34
|
+
export declare const BrandManifest1Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
35
|
+
export declare const BrandManifest2Schema: z.ZodObject<{
|
|
36
|
+
url: z.ZodOptional<z.ZodString>;
|
|
37
|
+
name: z.ZodOptional<z.ZodString>;
|
|
38
|
+
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
39
|
+
url: z.ZodString;
|
|
40
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
41
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
42
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
43
|
+
}, z.core.$strip>>>;
|
|
44
|
+
colors: z.ZodOptional<z.ZodObject<{
|
|
45
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
46
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
47
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
48
|
+
background: z.ZodOptional<z.ZodString>;
|
|
49
|
+
text: z.ZodOptional<z.ZodString>;
|
|
50
|
+
}, z.core.$strip>>;
|
|
51
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
52
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
53
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
54
|
+
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
55
|
+
}, z.core.$strip>>;
|
|
56
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
57
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
58
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
59
|
+
asset_id: z.ZodString;
|
|
60
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
61
|
+
url: z.ZodString;
|
|
62
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
63
|
+
name: z.ZodOptional<z.ZodString>;
|
|
64
|
+
description: z.ZodOptional<z.ZodString>;
|
|
65
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
66
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
67
|
+
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
68
|
+
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
69
|
+
format: z.ZodOptional<z.ZodString>;
|
|
70
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
71
|
+
}, z.core.$strip>>>;
|
|
72
|
+
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
73
|
+
feed_url: z.ZodString;
|
|
74
|
+
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
75
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
76
|
+
last_updated: z.ZodOptional<z.ZodString>;
|
|
77
|
+
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
78
|
+
}, z.core.$strip>>;
|
|
79
|
+
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
80
|
+
text: z.ZodString;
|
|
81
|
+
context: z.ZodOptional<z.ZodString>;
|
|
82
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
83
|
+
}, z.core.$strip>>>;
|
|
84
|
+
industry: z.ZodOptional<z.ZodString>;
|
|
85
|
+
target_audience: z.ZodOptional<z.ZodString>;
|
|
86
|
+
contact: z.ZodOptional<z.ZodObject<{
|
|
87
|
+
email: z.ZodOptional<z.ZodString>;
|
|
88
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
89
|
+
}, z.core.$strip>>;
|
|
90
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
91
|
+
created_date: z.ZodOptional<z.ZodString>;
|
|
92
|
+
updated_date: z.ZodOptional<z.ZodString>;
|
|
93
|
+
version: z.ZodOptional<z.ZodString>;
|
|
94
|
+
}, z.core.$strip>>;
|
|
95
|
+
}, z.core.$strip>;
|
|
96
|
+
export declare const ImageAssetSchema: z.ZodObject<{
|
|
97
|
+
url: z.ZodString;
|
|
98
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
99
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
100
|
+
format: z.ZodOptional<z.ZodString>;
|
|
101
|
+
alt_text: z.ZodOptional<z.ZodString>;
|
|
102
|
+
}, z.core.$strip>;
|
|
103
|
+
export declare const VideoAssetSchema: z.ZodObject<{
|
|
104
|
+
url: z.ZodString;
|
|
105
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
106
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
107
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
108
|
+
format: z.ZodOptional<z.ZodString>;
|
|
109
|
+
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
110
|
+
}, z.core.$strip>;
|
|
111
|
+
export declare const AudioAssetSchema: z.ZodObject<{
|
|
112
|
+
url: z.ZodString;
|
|
113
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
114
|
+
format: z.ZodOptional<z.ZodString>;
|
|
115
|
+
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
116
|
+
}, z.core.$strip>;
|
|
117
|
+
export declare const TextAssetSchema: z.ZodObject<{
|
|
118
|
+
content: z.ZodString;
|
|
119
|
+
language: z.ZodOptional<z.ZodString>;
|
|
120
|
+
}, z.core.$strip>;
|
|
121
|
+
export declare const HTMLAssetSchema: z.ZodObject<{
|
|
122
|
+
content: z.ZodString;
|
|
123
|
+
version: z.ZodOptional<z.ZodString>;
|
|
124
|
+
}, z.core.$strip>;
|
|
125
|
+
export declare const CSSAssetSchema: z.ZodObject<{
|
|
126
|
+
content: z.ZodString;
|
|
127
|
+
media: z.ZodOptional<z.ZodString>;
|
|
128
|
+
}, z.core.$strip>;
|
|
129
|
+
export declare const JavaScriptAssetSchema: z.ZodObject<{
|
|
130
|
+
content: z.ZodString;
|
|
131
|
+
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
132
|
+
}, z.core.$strip>;
|
|
133
|
+
export declare const VASTAssetSchema: z.ZodIntersection<z.ZodObject<{
|
|
134
|
+
url: z.ZodOptional<z.ZodString>;
|
|
135
|
+
content: z.ZodOptional<z.ZodString>;
|
|
136
|
+
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">]>>;
|
|
137
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
138
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
139
|
+
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">]>>>;
|
|
140
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
141
|
+
export declare const DAASTAssetSchema: z.ZodIntersection<z.ZodObject<{
|
|
142
|
+
url: z.ZodOptional<z.ZodString>;
|
|
143
|
+
content: z.ZodOptional<z.ZodString>;
|
|
144
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
145
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
146
|
+
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">]>>>;
|
|
147
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
148
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
149
|
+
export declare const URLAssetSchema: z.ZodObject<{
|
|
150
|
+
url: z.ZodString;
|
|
151
|
+
description: z.ZodOptional<z.ZodString>;
|
|
152
|
+
}, z.core.$strip>;
|
|
153
|
+
export declare const PromotedProductsSchema: z.ZodObject<{
|
|
154
|
+
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
155
|
+
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
156
|
+
manifest_category: z.ZodOptional<z.ZodString>;
|
|
157
|
+
manifest_query: z.ZodOptional<z.ZodString>;
|
|
158
|
+
}, z.core.$strip>;
|
|
159
|
+
export declare const Product2Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
160
|
+
export declare const PropertyIdentifierTypesSchema: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
161
|
+
export declare const DeliveryTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"guaranteed">, z.ZodLiteral<"non_guaranteed">]>;
|
|
162
|
+
export declare const CPMFixedRatePricingOptionSchema: z.ZodObject<{
|
|
163
|
+
pricing_option_id: z.ZodString;
|
|
164
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
165
|
+
rate: z.ZodNumber;
|
|
166
|
+
currency: z.ZodString;
|
|
167
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
168
|
+
}, z.core.$strip>;
|
|
169
|
+
export declare const CPMAuctionPricingOptionSchema: z.ZodObject<{
|
|
170
|
+
pricing_option_id: z.ZodString;
|
|
171
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
172
|
+
currency: z.ZodString;
|
|
173
|
+
price_guidance: z.ZodObject<{
|
|
174
|
+
floor: z.ZodNumber;
|
|
175
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
176
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
177
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
178
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
179
|
+
}, z.core.$strip>;
|
|
180
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
181
|
+
}, z.core.$strip>;
|
|
182
|
+
export declare const VCPMFixedRatePricingOptionSchema: z.ZodObject<{
|
|
183
|
+
pricing_option_id: z.ZodString;
|
|
184
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
185
|
+
rate: z.ZodNumber;
|
|
186
|
+
currency: z.ZodString;
|
|
187
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
188
|
+
}, z.core.$strip>;
|
|
189
|
+
export declare const VCPMAuctionPricingOptionSchema: z.ZodObject<{
|
|
190
|
+
pricing_option_id: z.ZodString;
|
|
191
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
192
|
+
currency: z.ZodString;
|
|
193
|
+
price_guidance: z.ZodObject<{
|
|
194
|
+
floor: z.ZodNumber;
|
|
195
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
196
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
197
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
198
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
199
|
+
}, z.core.$strip>;
|
|
200
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
201
|
+
}, z.core.$strip>;
|
|
202
|
+
export declare const CPCPricingOptionSchema: z.ZodObject<{
|
|
203
|
+
pricing_option_id: z.ZodString;
|
|
204
|
+
pricing_model: z.ZodLiteral<"cpc">;
|
|
205
|
+
rate: z.ZodNumber;
|
|
206
|
+
currency: z.ZodString;
|
|
207
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
208
|
+
}, z.core.$strip>;
|
|
209
|
+
export declare const CPCVPricingOptionSchema: z.ZodObject<{
|
|
210
|
+
pricing_option_id: z.ZodString;
|
|
211
|
+
pricing_model: z.ZodLiteral<"cpcv">;
|
|
212
|
+
rate: z.ZodNumber;
|
|
213
|
+
currency: z.ZodString;
|
|
214
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
215
|
+
}, z.core.$strip>;
|
|
216
|
+
export declare const CPVPricingOptionSchema: z.ZodObject<{
|
|
217
|
+
pricing_option_id: z.ZodString;
|
|
218
|
+
pricing_model: z.ZodLiteral<"cpv">;
|
|
219
|
+
rate: z.ZodNumber;
|
|
220
|
+
currency: z.ZodString;
|
|
221
|
+
parameters: z.ZodObject<{
|
|
222
|
+
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
223
|
+
duration_seconds: z.ZodNumber;
|
|
224
|
+
}, z.core.$strip>]>;
|
|
225
|
+
}, z.core.$strip>;
|
|
226
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
227
|
+
}, z.core.$strip>;
|
|
228
|
+
export declare const CPPPricingOptionSchema: z.ZodObject<{
|
|
229
|
+
pricing_option_id: z.ZodString;
|
|
230
|
+
pricing_model: z.ZodLiteral<"cpp">;
|
|
231
|
+
rate: z.ZodNumber;
|
|
232
|
+
currency: z.ZodString;
|
|
233
|
+
parameters: z.ZodObject<{
|
|
234
|
+
demographic: z.ZodString;
|
|
235
|
+
min_points: z.ZodOptional<z.ZodNumber>;
|
|
236
|
+
}, z.core.$strip>;
|
|
237
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
238
|
+
}, z.core.$strip>;
|
|
239
|
+
export declare const FlatRatePricingOptionSchema: z.ZodObject<{
|
|
240
|
+
pricing_option_id: z.ZodString;
|
|
241
|
+
pricing_model: z.ZodLiteral<"flat_rate">;
|
|
242
|
+
rate: z.ZodNumber;
|
|
243
|
+
currency: z.ZodString;
|
|
244
|
+
is_fixed: z.ZodLiteral<true>;
|
|
245
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
246
|
+
duration_hours: z.ZodOptional<z.ZodNumber>;
|
|
247
|
+
sov_percentage: z.ZodOptional<z.ZodNumber>;
|
|
248
|
+
loop_duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
249
|
+
min_plays_per_hour: z.ZodOptional<z.ZodNumber>;
|
|
250
|
+
venue_package: z.ZodOptional<z.ZodString>;
|
|
251
|
+
estimated_impressions: z.ZodOptional<z.ZodNumber>;
|
|
252
|
+
daypart: z.ZodOptional<z.ZodString>;
|
|
253
|
+
}, z.core.$strip>>;
|
|
254
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
255
|
+
}, z.core.$strip>;
|
|
256
|
+
export declare const PropertySchema: z.ZodObject<{
|
|
257
|
+
property_type: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">]>;
|
|
258
|
+
name: z.ZodString;
|
|
259
|
+
identifiers: z.ZodTuple<[z.ZodObject<{
|
|
260
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
261
|
+
value: z.ZodString;
|
|
262
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
263
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
264
|
+
value: z.ZodString;
|
|
265
|
+
}, z.core.$strip>>;
|
|
266
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
267
|
+
publisher_domain: z.ZodString;
|
|
268
|
+
}, z.core.$strip>;
|
|
269
|
+
export declare const PricingOptionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
270
|
+
pricing_option_id: z.ZodString;
|
|
271
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
272
|
+
rate: z.ZodNumber;
|
|
273
|
+
currency: z.ZodString;
|
|
274
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
275
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
276
|
+
pricing_option_id: z.ZodString;
|
|
277
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
278
|
+
currency: z.ZodString;
|
|
279
|
+
price_guidance: z.ZodObject<{
|
|
280
|
+
floor: z.ZodNumber;
|
|
281
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
282
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
283
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
284
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
285
|
+
}, z.core.$strip>;
|
|
286
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
287
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
288
|
+
pricing_option_id: z.ZodString;
|
|
289
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
290
|
+
rate: z.ZodNumber;
|
|
291
|
+
currency: z.ZodString;
|
|
292
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
293
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
294
|
+
pricing_option_id: z.ZodString;
|
|
295
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
296
|
+
currency: z.ZodString;
|
|
297
|
+
price_guidance: z.ZodObject<{
|
|
298
|
+
floor: z.ZodNumber;
|
|
299
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
300
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
301
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
302
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
303
|
+
}, z.core.$strip>;
|
|
304
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
305
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
306
|
+
pricing_option_id: z.ZodString;
|
|
307
|
+
pricing_model: z.ZodLiteral<"cpc">;
|
|
308
|
+
rate: z.ZodNumber;
|
|
309
|
+
currency: z.ZodString;
|
|
310
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
311
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
312
|
+
pricing_option_id: z.ZodString;
|
|
313
|
+
pricing_model: z.ZodLiteral<"cpcv">;
|
|
314
|
+
rate: z.ZodNumber;
|
|
315
|
+
currency: z.ZodString;
|
|
316
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
317
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
318
|
+
pricing_option_id: z.ZodString;
|
|
319
|
+
pricing_model: z.ZodLiteral<"cpv">;
|
|
320
|
+
rate: z.ZodNumber;
|
|
321
|
+
currency: z.ZodString;
|
|
322
|
+
parameters: z.ZodObject<{
|
|
323
|
+
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
324
|
+
duration_seconds: z.ZodNumber;
|
|
325
|
+
}, z.core.$strip>]>;
|
|
326
|
+
}, z.core.$strip>;
|
|
327
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
328
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
329
|
+
pricing_option_id: z.ZodString;
|
|
330
|
+
pricing_model: z.ZodLiteral<"cpp">;
|
|
331
|
+
rate: z.ZodNumber;
|
|
332
|
+
currency: z.ZodString;
|
|
333
|
+
parameters: z.ZodObject<{
|
|
334
|
+
demographic: z.ZodString;
|
|
335
|
+
min_points: z.ZodOptional<z.ZodNumber>;
|
|
336
|
+
}, z.core.$strip>;
|
|
337
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
338
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
339
|
+
pricing_option_id: z.ZodString;
|
|
340
|
+
pricing_model: z.ZodLiteral<"flat_rate">;
|
|
341
|
+
rate: z.ZodNumber;
|
|
342
|
+
currency: z.ZodString;
|
|
343
|
+
is_fixed: z.ZodLiteral<true>;
|
|
344
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
345
|
+
duration_hours: z.ZodOptional<z.ZodNumber>;
|
|
346
|
+
sov_percentage: z.ZodOptional<z.ZodNumber>;
|
|
347
|
+
loop_duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
348
|
+
min_plays_per_hour: z.ZodOptional<z.ZodNumber>;
|
|
349
|
+
venue_package: z.ZodOptional<z.ZodString>;
|
|
350
|
+
estimated_impressions: z.ZodOptional<z.ZodNumber>;
|
|
351
|
+
daypart: z.ZodOptional<z.ZodString>;
|
|
352
|
+
}, z.core.$strip>>;
|
|
353
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
354
|
+
}, z.core.$strip>]>;
|
|
355
|
+
export declare const MeasurementSchema: z.ZodObject<{
|
|
356
|
+
type: z.ZodString;
|
|
357
|
+
attribution: z.ZodString;
|
|
358
|
+
window: z.ZodOptional<z.ZodString>;
|
|
359
|
+
reporting: z.ZodString;
|
|
360
|
+
}, z.core.$strip>;
|
|
361
|
+
export declare const ReportingCapabilitiesSchema: z.ZodObject<{
|
|
362
|
+
available_reporting_frequencies: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"monthly">]>], z.ZodUnion<readonly [z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"monthly">]>>;
|
|
363
|
+
expected_delay_minutes: z.ZodNumber;
|
|
364
|
+
timezone: z.ZodString;
|
|
365
|
+
supports_webhooks: z.ZodBoolean;
|
|
366
|
+
available_metrics: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"impressions">, z.ZodLiteral<"spend">, z.ZodLiteral<"clicks">, z.ZodLiteral<"ctr">, z.ZodLiteral<"video_completions">, z.ZodLiteral<"completion_rate">, z.ZodLiteral<"conversions">, z.ZodLiteral<"viewability">, z.ZodLiteral<"engagement_rate">]>>;
|
|
367
|
+
}, z.core.$strip>;
|
|
368
|
+
export declare const CreativePolicySchema: z.ZodObject<{
|
|
369
|
+
co_branding: z.ZodUnion<readonly [z.ZodLiteral<"required">, z.ZodLiteral<"optional">, z.ZodLiteral<"none">]>;
|
|
370
|
+
landing_page: z.ZodUnion<readonly [z.ZodLiteral<"any">, z.ZodLiteral<"retailer_site_only">, z.ZodLiteral<"must_include_retailer">]>;
|
|
371
|
+
templates_available: z.ZodBoolean;
|
|
372
|
+
}, z.core.$strip>;
|
|
373
|
+
export declare const TargetingOverlaySchema: z.ZodObject<{
|
|
374
|
+
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
375
|
+
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
376
|
+
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
377
|
+
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
378
|
+
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
379
|
+
suppress_minutes: z.ZodNumber;
|
|
380
|
+
}, z.core.$strip>>;
|
|
381
|
+
}, z.core.$strip>;
|
|
382
|
+
export declare const PackageSchema: z.ZodObject<{
|
|
383
|
+
package_id: z.ZodString;
|
|
384
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
385
|
+
product_id: z.ZodOptional<z.ZodString>;
|
|
386
|
+
budget: z.ZodOptional<z.ZodNumber>;
|
|
387
|
+
pacing: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>>;
|
|
388
|
+
pricing_option_id: z.ZodOptional<z.ZodString>;
|
|
389
|
+
bid_price: z.ZodOptional<z.ZodNumber>;
|
|
390
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
391
|
+
targeting_overlay: z.ZodOptional<z.ZodObject<{
|
|
392
|
+
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
393
|
+
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
394
|
+
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
395
|
+
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
396
|
+
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
397
|
+
suppress_minutes: z.ZodNumber;
|
|
398
|
+
}, z.core.$strip>>;
|
|
399
|
+
}, z.core.$strip>>;
|
|
400
|
+
creative_assignments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
401
|
+
creative_id: z.ZodString;
|
|
402
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
403
|
+
}, z.core.$strip>>>;
|
|
404
|
+
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
405
|
+
agent_url: z.ZodString;
|
|
406
|
+
id: z.ZodString;
|
|
407
|
+
}, z.core.$strip>>>;
|
|
408
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
409
|
+
}, z.core.$strip>;
|
|
410
|
+
export declare const BrandManifestSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
411
|
+
url: z.ZodOptional<z.ZodString>;
|
|
412
|
+
name: z.ZodOptional<z.ZodString>;
|
|
413
|
+
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
414
|
+
url: z.ZodString;
|
|
415
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
416
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
417
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
418
|
+
}, z.core.$strip>>>;
|
|
419
|
+
colors: z.ZodOptional<z.ZodObject<{
|
|
420
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
421
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
422
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
423
|
+
background: z.ZodOptional<z.ZodString>;
|
|
424
|
+
text: z.ZodOptional<z.ZodString>;
|
|
425
|
+
}, z.core.$strip>>;
|
|
426
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
427
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
428
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
429
|
+
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
430
|
+
}, z.core.$strip>>;
|
|
431
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
432
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
433
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
434
|
+
asset_id: z.ZodString;
|
|
435
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
436
|
+
url: z.ZodString;
|
|
437
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
438
|
+
name: z.ZodOptional<z.ZodString>;
|
|
439
|
+
description: z.ZodOptional<z.ZodString>;
|
|
440
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
441
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
442
|
+
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
443
|
+
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
444
|
+
format: z.ZodOptional<z.ZodString>;
|
|
445
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
446
|
+
}, z.core.$strip>>>;
|
|
447
|
+
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
448
|
+
feed_url: z.ZodString;
|
|
449
|
+
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
450
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
451
|
+
last_updated: z.ZodOptional<z.ZodString>;
|
|
452
|
+
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
453
|
+
}, z.core.$strip>>;
|
|
454
|
+
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
455
|
+
text: z.ZodString;
|
|
456
|
+
context: z.ZodOptional<z.ZodString>;
|
|
457
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
458
|
+
}, z.core.$strip>>>;
|
|
459
|
+
industry: z.ZodOptional<z.ZodString>;
|
|
460
|
+
target_audience: z.ZodOptional<z.ZodString>;
|
|
461
|
+
contact: z.ZodOptional<z.ZodObject<{
|
|
462
|
+
email: z.ZodOptional<z.ZodString>;
|
|
463
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
464
|
+
}, z.core.$strip>>;
|
|
465
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
466
|
+
created_date: z.ZodOptional<z.ZodString>;
|
|
467
|
+
updated_date: z.ZodOptional<z.ZodString>;
|
|
468
|
+
version: z.ZodOptional<z.ZodString>;
|
|
469
|
+
}, z.core.$strip>>;
|
|
470
|
+
}, z.core.$strip>>;
|
|
471
|
+
export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
472
|
+
url: z.ZodOptional<z.ZodString>;
|
|
473
|
+
name: z.ZodOptional<z.ZodString>;
|
|
474
|
+
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
475
|
+
url: z.ZodString;
|
|
476
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
477
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
478
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
479
|
+
}, z.core.$strip>>>;
|
|
480
|
+
colors: z.ZodOptional<z.ZodObject<{
|
|
481
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
482
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
483
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
484
|
+
background: z.ZodOptional<z.ZodString>;
|
|
485
|
+
text: z.ZodOptional<z.ZodString>;
|
|
486
|
+
}, z.core.$strip>>;
|
|
487
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
488
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
489
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
490
|
+
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
491
|
+
}, z.core.$strip>>;
|
|
492
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
493
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
494
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
495
|
+
asset_id: z.ZodString;
|
|
496
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
497
|
+
url: z.ZodString;
|
|
498
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
499
|
+
name: z.ZodOptional<z.ZodString>;
|
|
500
|
+
description: z.ZodOptional<z.ZodString>;
|
|
501
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
502
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
503
|
+
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
504
|
+
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
505
|
+
format: z.ZodOptional<z.ZodString>;
|
|
506
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
507
|
+
}, z.core.$strip>>>;
|
|
508
|
+
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
509
|
+
feed_url: z.ZodString;
|
|
510
|
+
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
511
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
512
|
+
last_updated: z.ZodOptional<z.ZodString>;
|
|
513
|
+
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
514
|
+
}, z.core.$strip>>;
|
|
515
|
+
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
516
|
+
text: z.ZodString;
|
|
517
|
+
context: z.ZodOptional<z.ZodString>;
|
|
518
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
519
|
+
}, z.core.$strip>>>;
|
|
520
|
+
industry: z.ZodOptional<z.ZodString>;
|
|
521
|
+
target_audience: z.ZodOptional<z.ZodString>;
|
|
522
|
+
contact: z.ZodOptional<z.ZodObject<{
|
|
523
|
+
email: z.ZodOptional<z.ZodString>;
|
|
524
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
525
|
+
}, z.core.$strip>>;
|
|
526
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
527
|
+
created_date: z.ZodOptional<z.ZodString>;
|
|
528
|
+
updated_date: z.ZodOptional<z.ZodString>;
|
|
529
|
+
version: z.ZodOptional<z.ZodString>;
|
|
530
|
+
}, z.core.$strip>>;
|
|
531
|
+
}, z.core.$strip>>, z.ZodString]>;
|
|
532
|
+
export declare const Product1Schema: z.ZodObject<{
|
|
533
|
+
product_id: z.ZodString;
|
|
534
|
+
name: z.ZodString;
|
|
535
|
+
description: z.ZodString;
|
|
536
|
+
properties: z.ZodOptional<z.ZodTuple<[z.ZodObject<{
|
|
537
|
+
property_type: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">]>;
|
|
538
|
+
name: z.ZodString;
|
|
539
|
+
identifiers: z.ZodTuple<[z.ZodObject<{
|
|
540
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
541
|
+
value: z.ZodString;
|
|
542
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
543
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
544
|
+
value: z.ZodString;
|
|
545
|
+
}, z.core.$strip>>;
|
|
546
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
547
|
+
publisher_domain: z.ZodString;
|
|
548
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
549
|
+
property_type: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">]>;
|
|
550
|
+
name: z.ZodString;
|
|
551
|
+
identifiers: z.ZodTuple<[z.ZodObject<{
|
|
552
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
553
|
+
value: z.ZodString;
|
|
554
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
555
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
556
|
+
value: z.ZodString;
|
|
557
|
+
}, z.core.$strip>>;
|
|
558
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
559
|
+
publisher_domain: z.ZodString;
|
|
560
|
+
}, z.core.$strip>>>;
|
|
561
|
+
property_tags: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
562
|
+
format_ids: z.ZodArray<z.ZodObject<{
|
|
563
|
+
agent_url: z.ZodString;
|
|
564
|
+
id: z.ZodString;
|
|
565
|
+
}, z.core.$strip>>;
|
|
566
|
+
delivery_type: z.ZodUnion<readonly [z.ZodLiteral<"guaranteed">, z.ZodLiteral<"non_guaranteed">]>;
|
|
567
|
+
pricing_options: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
568
|
+
pricing_option_id: z.ZodString;
|
|
569
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
570
|
+
rate: z.ZodNumber;
|
|
571
|
+
currency: z.ZodString;
|
|
572
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
573
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
574
|
+
pricing_option_id: z.ZodString;
|
|
575
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
576
|
+
currency: z.ZodString;
|
|
577
|
+
price_guidance: z.ZodObject<{
|
|
578
|
+
floor: z.ZodNumber;
|
|
579
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
580
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
581
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
582
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
583
|
+
}, z.core.$strip>;
|
|
584
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
585
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
586
|
+
pricing_option_id: z.ZodString;
|
|
587
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
588
|
+
rate: z.ZodNumber;
|
|
589
|
+
currency: z.ZodString;
|
|
590
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
591
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
592
|
+
pricing_option_id: z.ZodString;
|
|
593
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
594
|
+
currency: z.ZodString;
|
|
595
|
+
price_guidance: z.ZodObject<{
|
|
596
|
+
floor: z.ZodNumber;
|
|
597
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
598
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
599
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
600
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
601
|
+
}, z.core.$strip>;
|
|
602
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
603
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
604
|
+
pricing_option_id: z.ZodString;
|
|
605
|
+
pricing_model: z.ZodLiteral<"cpc">;
|
|
606
|
+
rate: z.ZodNumber;
|
|
607
|
+
currency: z.ZodString;
|
|
608
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
609
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
610
|
+
pricing_option_id: z.ZodString;
|
|
611
|
+
pricing_model: z.ZodLiteral<"cpcv">;
|
|
612
|
+
rate: z.ZodNumber;
|
|
613
|
+
currency: z.ZodString;
|
|
614
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
615
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
616
|
+
pricing_option_id: z.ZodString;
|
|
617
|
+
pricing_model: z.ZodLiteral<"cpv">;
|
|
618
|
+
rate: z.ZodNumber;
|
|
619
|
+
currency: z.ZodString;
|
|
620
|
+
parameters: z.ZodObject<{
|
|
621
|
+
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
622
|
+
duration_seconds: z.ZodNumber;
|
|
623
|
+
}, z.core.$strip>]>;
|
|
624
|
+
}, z.core.$strip>;
|
|
625
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
626
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
627
|
+
pricing_option_id: z.ZodString;
|
|
628
|
+
pricing_model: z.ZodLiteral<"cpp">;
|
|
629
|
+
rate: z.ZodNumber;
|
|
630
|
+
currency: z.ZodString;
|
|
631
|
+
parameters: z.ZodObject<{
|
|
632
|
+
demographic: z.ZodString;
|
|
633
|
+
min_points: z.ZodOptional<z.ZodNumber>;
|
|
634
|
+
}, z.core.$strip>;
|
|
635
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
636
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
637
|
+
pricing_option_id: z.ZodString;
|
|
638
|
+
pricing_model: z.ZodLiteral<"flat_rate">;
|
|
639
|
+
rate: z.ZodNumber;
|
|
640
|
+
currency: z.ZodString;
|
|
641
|
+
is_fixed: z.ZodLiteral<true>;
|
|
642
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
643
|
+
duration_hours: z.ZodOptional<z.ZodNumber>;
|
|
644
|
+
sov_percentage: z.ZodOptional<z.ZodNumber>;
|
|
645
|
+
loop_duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
646
|
+
min_plays_per_hour: z.ZodOptional<z.ZodNumber>;
|
|
647
|
+
venue_package: z.ZodOptional<z.ZodString>;
|
|
648
|
+
estimated_impressions: z.ZodOptional<z.ZodNumber>;
|
|
649
|
+
daypart: z.ZodOptional<z.ZodString>;
|
|
650
|
+
}, z.core.$strip>>;
|
|
651
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
652
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
653
|
+
pricing_option_id: z.ZodString;
|
|
654
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
655
|
+
rate: z.ZodNumber;
|
|
656
|
+
currency: z.ZodString;
|
|
657
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
658
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
659
|
+
pricing_option_id: z.ZodString;
|
|
660
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
661
|
+
currency: z.ZodString;
|
|
662
|
+
price_guidance: z.ZodObject<{
|
|
663
|
+
floor: z.ZodNumber;
|
|
664
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
665
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
666
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
667
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
668
|
+
}, z.core.$strip>;
|
|
669
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
670
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
671
|
+
pricing_option_id: z.ZodString;
|
|
672
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
673
|
+
rate: z.ZodNumber;
|
|
674
|
+
currency: z.ZodString;
|
|
675
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
676
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
677
|
+
pricing_option_id: z.ZodString;
|
|
678
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
679
|
+
currency: z.ZodString;
|
|
680
|
+
price_guidance: z.ZodObject<{
|
|
681
|
+
floor: z.ZodNumber;
|
|
682
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
683
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
684
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
685
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
686
|
+
}, z.core.$strip>;
|
|
687
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
688
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
689
|
+
pricing_option_id: z.ZodString;
|
|
690
|
+
pricing_model: z.ZodLiteral<"cpc">;
|
|
691
|
+
rate: z.ZodNumber;
|
|
692
|
+
currency: z.ZodString;
|
|
693
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
694
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
695
|
+
pricing_option_id: z.ZodString;
|
|
696
|
+
pricing_model: z.ZodLiteral<"cpcv">;
|
|
697
|
+
rate: z.ZodNumber;
|
|
698
|
+
currency: z.ZodString;
|
|
699
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
700
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
701
|
+
pricing_option_id: z.ZodString;
|
|
702
|
+
pricing_model: z.ZodLiteral<"cpv">;
|
|
703
|
+
rate: z.ZodNumber;
|
|
704
|
+
currency: z.ZodString;
|
|
705
|
+
parameters: z.ZodObject<{
|
|
706
|
+
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
707
|
+
duration_seconds: z.ZodNumber;
|
|
708
|
+
}, z.core.$strip>]>;
|
|
709
|
+
}, z.core.$strip>;
|
|
710
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
711
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
712
|
+
pricing_option_id: z.ZodString;
|
|
713
|
+
pricing_model: z.ZodLiteral<"cpp">;
|
|
714
|
+
rate: z.ZodNumber;
|
|
715
|
+
currency: z.ZodString;
|
|
716
|
+
parameters: z.ZodObject<{
|
|
717
|
+
demographic: z.ZodString;
|
|
718
|
+
min_points: z.ZodOptional<z.ZodNumber>;
|
|
719
|
+
}, z.core.$strip>;
|
|
720
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
721
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
722
|
+
pricing_option_id: z.ZodString;
|
|
723
|
+
pricing_model: z.ZodLiteral<"flat_rate">;
|
|
724
|
+
rate: z.ZodNumber;
|
|
725
|
+
currency: z.ZodString;
|
|
726
|
+
is_fixed: z.ZodLiteral<true>;
|
|
727
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
728
|
+
duration_hours: z.ZodOptional<z.ZodNumber>;
|
|
729
|
+
sov_percentage: z.ZodOptional<z.ZodNumber>;
|
|
730
|
+
loop_duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
731
|
+
min_plays_per_hour: z.ZodOptional<z.ZodNumber>;
|
|
732
|
+
venue_package: z.ZodOptional<z.ZodString>;
|
|
733
|
+
estimated_impressions: z.ZodOptional<z.ZodNumber>;
|
|
734
|
+
daypart: z.ZodOptional<z.ZodString>;
|
|
735
|
+
}, z.core.$strip>>;
|
|
736
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
737
|
+
}, z.core.$strip>]>>;
|
|
738
|
+
estimated_exposures: z.ZodOptional<z.ZodNumber>;
|
|
739
|
+
measurement: z.ZodOptional<z.ZodObject<{
|
|
740
|
+
type: z.ZodString;
|
|
741
|
+
attribution: z.ZodString;
|
|
742
|
+
window: z.ZodOptional<z.ZodString>;
|
|
743
|
+
reporting: z.ZodString;
|
|
744
|
+
}, z.core.$strip>>;
|
|
745
|
+
delivery_measurement: z.ZodObject<{
|
|
746
|
+
provider: z.ZodString;
|
|
747
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
748
|
+
}, z.core.$strip>;
|
|
749
|
+
reporting_capabilities: z.ZodOptional<z.ZodObject<{
|
|
750
|
+
available_reporting_frequencies: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"monthly">]>], z.ZodUnion<readonly [z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"monthly">]>>;
|
|
751
|
+
expected_delay_minutes: z.ZodNumber;
|
|
752
|
+
timezone: z.ZodString;
|
|
753
|
+
supports_webhooks: z.ZodBoolean;
|
|
754
|
+
available_metrics: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"impressions">, z.ZodLiteral<"spend">, z.ZodLiteral<"clicks">, z.ZodLiteral<"ctr">, z.ZodLiteral<"video_completions">, z.ZodLiteral<"completion_rate">, z.ZodLiteral<"conversions">, z.ZodLiteral<"viewability">, z.ZodLiteral<"engagement_rate">]>>;
|
|
755
|
+
}, z.core.$strip>>;
|
|
756
|
+
creative_policy: z.ZodOptional<z.ZodObject<{
|
|
757
|
+
co_branding: z.ZodUnion<readonly [z.ZodLiteral<"required">, z.ZodLiteral<"optional">, z.ZodLiteral<"none">]>;
|
|
758
|
+
landing_page: z.ZodUnion<readonly [z.ZodLiteral<"any">, z.ZodLiteral<"retailer_site_only">, z.ZodLiteral<"must_include_retailer">]>;
|
|
759
|
+
templates_available: z.ZodBoolean;
|
|
760
|
+
}, z.core.$strip>>;
|
|
761
|
+
is_custom: z.ZodOptional<z.ZodBoolean>;
|
|
762
|
+
brief_relevance: z.ZodOptional<z.ZodString>;
|
|
763
|
+
expires_at: z.ZodOptional<z.ZodString>;
|
|
764
|
+
}, z.core.$strip>;
|
|
2
765
|
export declare const MediaBuySchema: z.ZodObject<{
|
|
3
766
|
media_buy_id: z.ZodString;
|
|
4
767
|
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
5
|
-
status: z.
|
|
768
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"pending_activation">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
6
769
|
promoted_offering: z.ZodString;
|
|
7
770
|
total_budget: z.ZodNumber;
|
|
8
|
-
packages: z.ZodArray<z.
|
|
771
|
+
packages: z.ZodArray<z.ZodObject<{
|
|
772
|
+
package_id: z.ZodString;
|
|
773
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
774
|
+
product_id: z.ZodOptional<z.ZodString>;
|
|
775
|
+
budget: z.ZodOptional<z.ZodNumber>;
|
|
776
|
+
pacing: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>>;
|
|
777
|
+
pricing_option_id: z.ZodOptional<z.ZodString>;
|
|
778
|
+
bid_price: z.ZodOptional<z.ZodNumber>;
|
|
779
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
780
|
+
targeting_overlay: z.ZodOptional<z.ZodObject<{
|
|
781
|
+
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
782
|
+
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
783
|
+
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
784
|
+
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
785
|
+
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
786
|
+
suppress_minutes: z.ZodNumber;
|
|
787
|
+
}, z.core.$strip>>;
|
|
788
|
+
}, z.core.$strip>>;
|
|
789
|
+
creative_assignments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
790
|
+
creative_id: z.ZodString;
|
|
791
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
792
|
+
}, z.core.$strip>>>;
|
|
793
|
+
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
794
|
+
agent_url: z.ZodString;
|
|
795
|
+
id: z.ZodString;
|
|
796
|
+
}, z.core.$strip>>>;
|
|
797
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
798
|
+
}, z.core.$strip>>;
|
|
9
799
|
creative_deadline: z.ZodOptional<z.ZodString>;
|
|
10
800
|
created_at: z.ZodOptional<z.ZodString>;
|
|
11
801
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
12
|
-
},
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
},
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
802
|
+
}, z.core.$strip>;
|
|
803
|
+
export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
804
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
805
|
+
url: z.ZodOptional<z.ZodString>;
|
|
806
|
+
name: z.ZodOptional<z.ZodString>;
|
|
807
|
+
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
808
|
+
url: z.ZodString;
|
|
809
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
810
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
811
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
812
|
+
}, z.core.$strip>>>;
|
|
813
|
+
colors: z.ZodOptional<z.ZodObject<{
|
|
814
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
815
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
816
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
817
|
+
background: z.ZodOptional<z.ZodString>;
|
|
818
|
+
text: z.ZodOptional<z.ZodString>;
|
|
819
|
+
}, z.core.$strip>>;
|
|
820
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
821
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
822
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
823
|
+
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
824
|
+
}, z.core.$strip>>;
|
|
825
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
826
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
827
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
828
|
+
asset_id: z.ZodString;
|
|
829
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
830
|
+
url: z.ZodString;
|
|
831
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
832
|
+
name: z.ZodOptional<z.ZodString>;
|
|
833
|
+
description: z.ZodOptional<z.ZodString>;
|
|
834
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
835
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
836
|
+
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
837
|
+
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
838
|
+
format: z.ZodOptional<z.ZodString>;
|
|
839
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
840
|
+
}, z.core.$strip>>>;
|
|
841
|
+
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
842
|
+
feed_url: z.ZodString;
|
|
843
|
+
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
844
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
845
|
+
last_updated: z.ZodOptional<z.ZodString>;
|
|
846
|
+
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
847
|
+
}, z.core.$strip>>;
|
|
848
|
+
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
849
|
+
text: z.ZodString;
|
|
850
|
+
context: z.ZodOptional<z.ZodString>;
|
|
851
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
852
|
+
}, z.core.$strip>>>;
|
|
853
|
+
industry: z.ZodOptional<z.ZodString>;
|
|
854
|
+
target_audience: z.ZodOptional<z.ZodString>;
|
|
855
|
+
contact: z.ZodOptional<z.ZodObject<{
|
|
856
|
+
email: z.ZodOptional<z.ZodString>;
|
|
857
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
858
|
+
}, z.core.$strip>>;
|
|
859
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
860
|
+
created_date: z.ZodOptional<z.ZodString>;
|
|
861
|
+
updated_date: z.ZodOptional<z.ZodString>;
|
|
862
|
+
version: z.ZodOptional<z.ZodString>;
|
|
863
|
+
}, z.core.$strip>>;
|
|
864
|
+
}, z.core.$strip>>, z.ZodString]>;
|
|
865
|
+
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
866
|
+
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
867
|
+
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
868
|
+
manifest_category: z.ZodOptional<z.ZodString>;
|
|
869
|
+
manifest_query: z.ZodOptional<z.ZodString>;
|
|
870
|
+
}, z.core.$strip>>;
|
|
871
|
+
offerings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
39
872
|
name: z.ZodString;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
},
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
context_description?: string | undefined;
|
|
50
|
-
}>, "many">>;
|
|
51
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
52
|
-
approved: z.ZodOptional<z.ZodBoolean>;
|
|
53
|
-
}, "strict", z.ZodTypeAny, {
|
|
54
|
-
creative_id: string;
|
|
55
|
-
name: string;
|
|
56
|
-
assets: Record<string, any>;
|
|
57
|
-
approved?: boolean | undefined;
|
|
58
|
-
format_id?: any;
|
|
59
|
-
inputs?: {
|
|
60
|
-
name: string;
|
|
61
|
-
macros?: Record<string, string> | undefined;
|
|
62
|
-
context_description?: string | undefined;
|
|
63
|
-
}[] | undefined;
|
|
64
|
-
tags?: string[] | undefined;
|
|
65
|
-
}, {
|
|
66
|
-
creative_id: string;
|
|
67
|
-
name: string;
|
|
68
|
-
assets: Record<string, any>;
|
|
69
|
-
approved?: boolean | undefined;
|
|
70
|
-
format_id?: any;
|
|
71
|
-
inputs?: {
|
|
72
|
-
name: string;
|
|
73
|
-
macros?: Record<string, string> | undefined;
|
|
74
|
-
context_description?: string | undefined;
|
|
75
|
-
}[] | undefined;
|
|
76
|
-
tags?: string[] | undefined;
|
|
77
|
-
}>;
|
|
873
|
+
description: z.ZodOptional<z.ZodString>;
|
|
874
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
875
|
+
}, z.core.$strip>>>;
|
|
876
|
+
asset_selectors: z.ZodOptional<z.ZodObject<{
|
|
877
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
878
|
+
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">]>>>;
|
|
879
|
+
exclude_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
880
|
+
}, z.core.$strip>>;
|
|
881
|
+
}, z.core.$strip>;
|
|
78
882
|
export declare const ProductSchema: z.ZodIntersection<z.ZodObject<{
|
|
79
883
|
product_id: z.ZodString;
|
|
80
884
|
name: z.ZodString;
|
|
81
885
|
description: z.ZodString;
|
|
82
|
-
properties: z.ZodOptional<z.
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
886
|
+
properties: z.ZodOptional<z.ZodTuple<[z.ZodObject<{
|
|
887
|
+
property_type: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">]>;
|
|
888
|
+
name: z.ZodString;
|
|
889
|
+
identifiers: z.ZodTuple<[z.ZodObject<{
|
|
890
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
891
|
+
value: z.ZodString;
|
|
892
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
893
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
894
|
+
value: z.ZodString;
|
|
895
|
+
}, z.core.$strip>>;
|
|
896
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
897
|
+
publisher_domain: z.ZodString;
|
|
898
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
899
|
+
property_type: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">]>;
|
|
900
|
+
name: z.ZodString;
|
|
901
|
+
identifiers: z.ZodTuple<[z.ZodObject<{
|
|
902
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
903
|
+
value: z.ZodString;
|
|
904
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
905
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_show_id">, z.ZodLiteral<"podcast_guid">]>;
|
|
906
|
+
value: z.ZodString;
|
|
907
|
+
}, z.core.$strip>>;
|
|
908
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
909
|
+
publisher_domain: z.ZodString;
|
|
910
|
+
}, z.core.$strip>>>;
|
|
911
|
+
property_tags: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
912
|
+
format_ids: z.ZodArray<z.ZodObject<{
|
|
913
|
+
agent_url: z.ZodString;
|
|
914
|
+
id: z.ZodString;
|
|
915
|
+
}, z.core.$strip>>;
|
|
916
|
+
delivery_type: z.ZodUnion<readonly [z.ZodLiteral<"guaranteed">, z.ZodLiteral<"non_guaranteed">]>;
|
|
917
|
+
pricing_options: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
918
|
+
pricing_option_id: z.ZodString;
|
|
919
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
920
|
+
rate: z.ZodNumber;
|
|
921
|
+
currency: z.ZodString;
|
|
922
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
923
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
924
|
+
pricing_option_id: z.ZodString;
|
|
925
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
926
|
+
currency: z.ZodString;
|
|
927
|
+
price_guidance: z.ZodObject<{
|
|
928
|
+
floor: z.ZodNumber;
|
|
929
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
930
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
931
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
932
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
933
|
+
}, z.core.$strip>;
|
|
934
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
935
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
936
|
+
pricing_option_id: z.ZodString;
|
|
937
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
938
|
+
rate: z.ZodNumber;
|
|
939
|
+
currency: z.ZodString;
|
|
940
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
941
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
942
|
+
pricing_option_id: z.ZodString;
|
|
943
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
944
|
+
currency: z.ZodString;
|
|
945
|
+
price_guidance: z.ZodObject<{
|
|
946
|
+
floor: z.ZodNumber;
|
|
947
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
948
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
949
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
950
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
951
|
+
}, z.core.$strip>;
|
|
952
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
953
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
954
|
+
pricing_option_id: z.ZodString;
|
|
955
|
+
pricing_model: z.ZodLiteral<"cpc">;
|
|
956
|
+
rate: z.ZodNumber;
|
|
957
|
+
currency: z.ZodString;
|
|
958
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
959
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
960
|
+
pricing_option_id: z.ZodString;
|
|
961
|
+
pricing_model: z.ZodLiteral<"cpcv">;
|
|
962
|
+
rate: z.ZodNumber;
|
|
963
|
+
currency: z.ZodString;
|
|
964
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
965
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
966
|
+
pricing_option_id: z.ZodString;
|
|
967
|
+
pricing_model: z.ZodLiteral<"cpv">;
|
|
968
|
+
rate: z.ZodNumber;
|
|
969
|
+
currency: z.ZodString;
|
|
970
|
+
parameters: z.ZodObject<{
|
|
971
|
+
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
972
|
+
duration_seconds: z.ZodNumber;
|
|
973
|
+
}, z.core.$strip>]>;
|
|
974
|
+
}, z.core.$strip>;
|
|
975
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
976
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
977
|
+
pricing_option_id: z.ZodString;
|
|
978
|
+
pricing_model: z.ZodLiteral<"cpp">;
|
|
979
|
+
rate: z.ZodNumber;
|
|
980
|
+
currency: z.ZodString;
|
|
981
|
+
parameters: z.ZodObject<{
|
|
982
|
+
demographic: z.ZodString;
|
|
983
|
+
min_points: z.ZodOptional<z.ZodNumber>;
|
|
984
|
+
}, z.core.$strip>;
|
|
985
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
986
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
987
|
+
pricing_option_id: z.ZodString;
|
|
988
|
+
pricing_model: z.ZodLiteral<"flat_rate">;
|
|
989
|
+
rate: z.ZodNumber;
|
|
990
|
+
currency: z.ZodString;
|
|
991
|
+
is_fixed: z.ZodLiteral<true>;
|
|
992
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
993
|
+
duration_hours: z.ZodOptional<z.ZodNumber>;
|
|
994
|
+
sov_percentage: z.ZodOptional<z.ZodNumber>;
|
|
995
|
+
loop_duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
996
|
+
min_plays_per_hour: z.ZodOptional<z.ZodNumber>;
|
|
997
|
+
venue_package: z.ZodOptional<z.ZodString>;
|
|
998
|
+
estimated_impressions: z.ZodOptional<z.ZodNumber>;
|
|
999
|
+
daypart: z.ZodOptional<z.ZodString>;
|
|
1000
|
+
}, z.core.$strip>>;
|
|
1001
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1002
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
1003
|
+
pricing_option_id: z.ZodString;
|
|
1004
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
1005
|
+
rate: z.ZodNumber;
|
|
1006
|
+
currency: z.ZodString;
|
|
1007
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1008
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1009
|
+
pricing_option_id: z.ZodString;
|
|
1010
|
+
pricing_model: z.ZodLiteral<"cpm">;
|
|
1011
|
+
currency: z.ZodString;
|
|
1012
|
+
price_guidance: z.ZodObject<{
|
|
1013
|
+
floor: z.ZodNumber;
|
|
1014
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
1015
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
1016
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
1017
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
1018
|
+
}, z.core.$strip>;
|
|
1019
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1020
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1021
|
+
pricing_option_id: z.ZodString;
|
|
1022
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
1023
|
+
rate: z.ZodNumber;
|
|
1024
|
+
currency: z.ZodString;
|
|
1025
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1026
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1027
|
+
pricing_option_id: z.ZodString;
|
|
1028
|
+
pricing_model: z.ZodLiteral<"vcpm">;
|
|
1029
|
+
currency: z.ZodString;
|
|
1030
|
+
price_guidance: z.ZodObject<{
|
|
1031
|
+
floor: z.ZodNumber;
|
|
1032
|
+
p25: z.ZodOptional<z.ZodNumber>;
|
|
1033
|
+
p50: z.ZodOptional<z.ZodNumber>;
|
|
1034
|
+
p75: z.ZodOptional<z.ZodNumber>;
|
|
1035
|
+
p90: z.ZodOptional<z.ZodNumber>;
|
|
1036
|
+
}, z.core.$strip>;
|
|
1037
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1038
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1039
|
+
pricing_option_id: z.ZodString;
|
|
1040
|
+
pricing_model: z.ZodLiteral<"cpc">;
|
|
1041
|
+
rate: z.ZodNumber;
|
|
1042
|
+
currency: z.ZodString;
|
|
1043
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1044
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1045
|
+
pricing_option_id: z.ZodString;
|
|
1046
|
+
pricing_model: z.ZodLiteral<"cpcv">;
|
|
1047
|
+
rate: z.ZodNumber;
|
|
1048
|
+
currency: z.ZodString;
|
|
1049
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1050
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1051
|
+
pricing_option_id: z.ZodString;
|
|
1052
|
+
pricing_model: z.ZodLiteral<"cpv">;
|
|
1053
|
+
rate: z.ZodNumber;
|
|
1054
|
+
currency: z.ZodString;
|
|
1055
|
+
parameters: z.ZodObject<{
|
|
1056
|
+
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
1057
|
+
duration_seconds: z.ZodNumber;
|
|
1058
|
+
}, z.core.$strip>]>;
|
|
1059
|
+
}, z.core.$strip>;
|
|
1060
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1061
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1062
|
+
pricing_option_id: z.ZodString;
|
|
1063
|
+
pricing_model: z.ZodLiteral<"cpp">;
|
|
1064
|
+
rate: z.ZodNumber;
|
|
1065
|
+
currency: z.ZodString;
|
|
1066
|
+
parameters: z.ZodObject<{
|
|
1067
|
+
demographic: z.ZodString;
|
|
1068
|
+
min_points: z.ZodOptional<z.ZodNumber>;
|
|
1069
|
+
}, z.core.$strip>;
|
|
1070
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1071
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1072
|
+
pricing_option_id: z.ZodString;
|
|
1073
|
+
pricing_model: z.ZodLiteral<"flat_rate">;
|
|
1074
|
+
rate: z.ZodNumber;
|
|
1075
|
+
currency: z.ZodString;
|
|
1076
|
+
is_fixed: z.ZodLiteral<true>;
|
|
1077
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
1078
|
+
duration_hours: z.ZodOptional<z.ZodNumber>;
|
|
1079
|
+
sov_percentage: z.ZodOptional<z.ZodNumber>;
|
|
1080
|
+
loop_duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1081
|
+
min_plays_per_hour: z.ZodOptional<z.ZodNumber>;
|
|
1082
|
+
venue_package: z.ZodOptional<z.ZodString>;
|
|
1083
|
+
estimated_impressions: z.ZodOptional<z.ZodNumber>;
|
|
1084
|
+
daypart: z.ZodOptional<z.ZodString>;
|
|
1085
|
+
}, z.core.$strip>>;
|
|
1086
|
+
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
1087
|
+
}, z.core.$strip>]>>;
|
|
87
1088
|
estimated_exposures: z.ZodOptional<z.ZodNumber>;
|
|
88
|
-
measurement: z.ZodOptional<z.
|
|
1089
|
+
measurement: z.ZodOptional<z.ZodObject<{
|
|
1090
|
+
type: z.ZodString;
|
|
1091
|
+
attribution: z.ZodString;
|
|
1092
|
+
window: z.ZodOptional<z.ZodString>;
|
|
1093
|
+
reporting: z.ZodString;
|
|
1094
|
+
}, z.core.$strip>>;
|
|
89
1095
|
delivery_measurement: z.ZodObject<{
|
|
90
1096
|
provider: z.ZodString;
|
|
91
1097
|
notes: z.ZodOptional<z.ZodString>;
|
|
92
|
-
},
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
creative_policy: z.ZodOptional<z.
|
|
1098
|
+
}, z.core.$strip>;
|
|
1099
|
+
reporting_capabilities: z.ZodOptional<z.ZodObject<{
|
|
1100
|
+
available_reporting_frequencies: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"monthly">]>], z.ZodUnion<readonly [z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"monthly">]>>;
|
|
1101
|
+
expected_delay_minutes: z.ZodNumber;
|
|
1102
|
+
timezone: z.ZodString;
|
|
1103
|
+
supports_webhooks: z.ZodBoolean;
|
|
1104
|
+
available_metrics: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"impressions">, z.ZodLiteral<"spend">, z.ZodLiteral<"clicks">, z.ZodLiteral<"ctr">, z.ZodLiteral<"video_completions">, z.ZodLiteral<"completion_rate">, z.ZodLiteral<"conversions">, z.ZodLiteral<"viewability">, z.ZodLiteral<"engagement_rate">]>>;
|
|
1105
|
+
}, z.core.$strip>>;
|
|
1106
|
+
creative_policy: z.ZodOptional<z.ZodObject<{
|
|
1107
|
+
co_branding: z.ZodUnion<readonly [z.ZodLiteral<"required">, z.ZodLiteral<"optional">, z.ZodLiteral<"none">]>;
|
|
1108
|
+
landing_page: z.ZodUnion<readonly [z.ZodLiteral<"any">, z.ZodLiteral<"retailer_site_only">, z.ZodLiteral<"must_include_retailer">]>;
|
|
1109
|
+
templates_available: z.ZodBoolean;
|
|
1110
|
+
}, z.core.$strip>>;
|
|
101
1111
|
is_custom: z.ZodOptional<z.ZodBoolean>;
|
|
102
1112
|
brief_relevance: z.ZodOptional<z.ZodString>;
|
|
103
1113
|
expires_at: z.ZodOptional<z.ZodString>;
|
|
104
|
-
},
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
},
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
1114
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1115
|
+
export declare const CreativeAssetSchema: z.ZodObject<{
|
|
1116
|
+
creative_id: z.ZodString;
|
|
1117
|
+
name: z.ZodString;
|
|
1118
|
+
format_id: z.ZodObject<{
|
|
1119
|
+
agent_url: z.ZodString;
|
|
1120
|
+
id: z.ZodString;
|
|
1121
|
+
}, z.core.$strip>;
|
|
1122
|
+
assets: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1123
|
+
url: z.ZodString;
|
|
1124
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1125
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1126
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1127
|
+
alt_text: z.ZodOptional<z.ZodString>;
|
|
1128
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1129
|
+
url: z.ZodString;
|
|
1130
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1131
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1132
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1133
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1134
|
+
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1135
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1136
|
+
url: z.ZodString;
|
|
1137
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1138
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1139
|
+
bitrate_kbps: z.ZodOptional<z.ZodNumber>;
|
|
1140
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1141
|
+
content: z.ZodString;
|
|
1142
|
+
language: z.ZodOptional<z.ZodString>;
|
|
1143
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1144
|
+
content: z.ZodString;
|
|
1145
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1147
|
+
content: z.ZodString;
|
|
1148
|
+
media: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1150
|
+
content: z.ZodString;
|
|
1151
|
+
module_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"esm">, z.ZodLiteral<"commonjs">, z.ZodLiteral<"script">]>>;
|
|
1152
|
+
}, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
|
|
1153
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1154
|
+
content: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
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">]>>;
|
|
1156
|
+
vpaid_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1157
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1158
|
+
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">]>>>;
|
|
1159
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>>, z.ZodIntersection<z.ZodObject<{
|
|
1160
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1161
|
+
content: z.ZodOptional<z.ZodString>;
|
|
1162
|
+
daast_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1.0">, z.ZodLiteral<"1.1">]>>;
|
|
1163
|
+
duration_ms: z.ZodOptional<z.ZodNumber>;
|
|
1164
|
+
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">]>>>;
|
|
1165
|
+
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1166
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>>, z.ZodObject<{
|
|
1167
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1168
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1169
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1170
|
+
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1171
|
+
url: z.ZodString;
|
|
1172
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1173
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1174
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1175
|
+
}, z.core.$strip>>>;
|
|
1176
|
+
colors: z.ZodOptional<z.ZodObject<{
|
|
1177
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
1178
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
1179
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
}, z.core.$strip>>;
|
|
1183
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
1184
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
1185
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
1186
|
+
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1187
|
+
}, z.core.$strip>>;
|
|
1188
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
1189
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1190
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1191
|
+
asset_id: z.ZodString;
|
|
1192
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
1193
|
+
url: z.ZodString;
|
|
1194
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1195
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1197
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1198
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1199
|
+
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1200
|
+
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
1201
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1202
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1203
|
+
}, z.core.$strip>>>;
|
|
1204
|
+
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
1205
|
+
feed_url: z.ZodString;
|
|
1206
|
+
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
1207
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1208
|
+
last_updated: z.ZodOptional<z.ZodString>;
|
|
1209
|
+
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
1210
|
+
}, z.core.$strip>>;
|
|
1211
|
+
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1212
|
+
text: z.ZodString;
|
|
1213
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1215
|
+
}, z.core.$strip>>>;
|
|
1216
|
+
industry: z.ZodOptional<z.ZodString>;
|
|
1217
|
+
target_audience: z.ZodOptional<z.ZodString>;
|
|
1218
|
+
contact: z.ZodOptional<z.ZodObject<{
|
|
1219
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1220
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1221
|
+
}, z.core.$strip>>;
|
|
1222
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1223
|
+
created_date: z.ZodOptional<z.ZodString>;
|
|
1224
|
+
updated_date: z.ZodOptional<z.ZodString>;
|
|
1225
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1226
|
+
}, z.core.$strip>>;
|
|
1227
|
+
}, z.core.$strip>>, z.ZodString]>;
|
|
1228
|
+
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1229
|
+
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1230
|
+
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1231
|
+
manifest_category: z.ZodOptional<z.ZodString>;
|
|
1232
|
+
manifest_query: z.ZodOptional<z.ZodString>;
|
|
1233
|
+
}, z.core.$strip>>;
|
|
1234
|
+
offerings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1235
|
+
name: z.ZodString;
|
|
1236
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1237
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1238
|
+
}, z.core.$strip>>>;
|
|
1239
|
+
asset_selectors: z.ZodOptional<z.ZodObject<{
|
|
1240
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1241
|
+
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">]>>>;
|
|
1242
|
+
exclude_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1243
|
+
}, z.core.$strip>>;
|
|
1244
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1245
|
+
url: z.ZodString;
|
|
1246
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1247
|
+
}, z.core.$strip>]>>;
|
|
1248
|
+
inputs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1249
|
+
name: z.ZodString;
|
|
1250
|
+
macros: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1251
|
+
context_description: z.ZodOptional<z.ZodString>;
|
|
1252
|
+
}, z.core.$strip>>>;
|
|
1253
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1254
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
|
1255
|
+
}, z.core.$strip>;
|
|
1256
|
+
export declare const ErrorSchema: z.ZodObject<{
|
|
1257
|
+
code: z.ZodString;
|
|
1258
|
+
message: z.ZodString;
|
|
1259
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1260
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1261
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1262
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1263
|
+
}, z.core.$strip>;
|
|
222
1264
|
export declare const ListCreativeFormatsRequestSchema: z.ZodObject<{
|
|
223
|
-
format_ids: z.ZodOptional<z.ZodArray<z.
|
|
224
|
-
|
|
225
|
-
|
|
1265
|
+
format_ids: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1266
|
+
agent_url: z.ZodString;
|
|
1267
|
+
id: z.ZodString;
|
|
1268
|
+
}, z.core.$strip>>>;
|
|
1269
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"audio">, z.ZodLiteral<"video">, z.ZodLiteral<"display">, z.ZodLiteral<"dooh">]>>;
|
|
1270
|
+
asset_types: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"html">, z.ZodLiteral<"javascript">, z.ZodLiteral<"url">]>>>;
|
|
226
1271
|
max_width: z.ZodOptional<z.ZodNumber>;
|
|
227
1272
|
max_height: z.ZodOptional<z.ZodNumber>;
|
|
228
1273
|
min_width: z.ZodOptional<z.ZodNumber>;
|
|
229
1274
|
min_height: z.ZodOptional<z.ZodNumber>;
|
|
230
1275
|
is_responsive: z.ZodOptional<z.ZodBoolean>;
|
|
231
1276
|
name_search: z.ZodOptional<z.ZodString>;
|
|
232
|
-
},
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
}, {
|
|
243
|
-
type?: "video" | "audio" | "dooh" | "display" | undefined;
|
|
244
|
-
format_ids?: any[] | undefined;
|
|
245
|
-
asset_types?: ("image" | "video" | "audio" | "text" | "url" | "html" | "javascript")[] | undefined;
|
|
246
|
-
max_width?: number | undefined;
|
|
247
|
-
max_height?: number | undefined;
|
|
248
|
-
min_width?: number | undefined;
|
|
249
|
-
min_height?: number | undefined;
|
|
250
|
-
is_responsive?: boolean | undefined;
|
|
251
|
-
name_search?: string | undefined;
|
|
252
|
-
}>;
|
|
253
|
-
export declare const ListCreativeFormatsResponseSchema: z.ZodObject<{
|
|
254
|
-
formats: z.ZodArray<z.ZodAny, "many">;
|
|
255
|
-
creative_agents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
256
|
-
agent_url: z.ZodString;
|
|
257
|
-
agent_name: z.ZodOptional<z.ZodString>;
|
|
258
|
-
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["validation", "assembly", "generation", "preview"]>, "many">>;
|
|
259
|
-
}, "strip", z.ZodTypeAny, {
|
|
260
|
-
agent_url: string;
|
|
261
|
-
agent_name?: string | undefined;
|
|
262
|
-
capabilities?: ("preview" | "validation" | "assembly" | "generation")[] | undefined;
|
|
263
|
-
}, {
|
|
264
|
-
agent_url: string;
|
|
265
|
-
agent_name?: string | undefined;
|
|
266
|
-
capabilities?: ("preview" | "validation" | "assembly" | "generation")[] | undefined;
|
|
267
|
-
}>, "many">>;
|
|
268
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
269
|
-
}, "strict", z.ZodTypeAny, {
|
|
270
|
-
formats: any[];
|
|
271
|
-
errors?: any[] | undefined;
|
|
272
|
-
creative_agents?: {
|
|
273
|
-
agent_url: string;
|
|
274
|
-
agent_name?: string | undefined;
|
|
275
|
-
capabilities?: ("preview" | "validation" | "assembly" | "generation")[] | undefined;
|
|
276
|
-
}[] | undefined;
|
|
277
|
-
}, {
|
|
278
|
-
formats: any[];
|
|
279
|
-
errors?: any[] | undefined;
|
|
280
|
-
creative_agents?: {
|
|
281
|
-
agent_url: string;
|
|
282
|
-
agent_name?: string | undefined;
|
|
283
|
-
capabilities?: ("preview" | "validation" | "assembly" | "generation")[] | undefined;
|
|
284
|
-
}[] | undefined;
|
|
285
|
-
}>;
|
|
286
|
-
export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
287
|
-
buyer_ref: z.ZodString;
|
|
288
|
-
packages: z.ZodArray<z.ZodAny, "many">;
|
|
289
|
-
brand_manifest: z.ZodAny;
|
|
290
|
-
po_number: z.ZodOptional<z.ZodString>;
|
|
291
|
-
start_time: z.ZodAny;
|
|
292
|
-
end_time: z.ZodString;
|
|
293
|
-
budget: z.ZodNumber;
|
|
294
|
-
reporting_webhook: z.ZodOptional<z.ZodIntersection<z.ZodAny, z.ZodObject<{
|
|
295
|
-
reporting_frequency: z.ZodEnum<["hourly", "daily", "monthly"]>;
|
|
296
|
-
requested_metrics: z.ZodOptional<z.ZodArray<z.ZodEnum<["impressions", "spend", "clicks", "ctr", "video_completions", "completion_rate", "conversions", "viewability", "engagement_rate"]>, "many">>;
|
|
297
|
-
}, "strip", z.ZodTypeAny, {
|
|
298
|
-
reporting_frequency: "hourly" | "daily" | "monthly";
|
|
299
|
-
requested_metrics?: ("impressions" | "spend" | "clicks" | "ctr" | "video_completions" | "completion_rate" | "conversions" | "viewability" | "engagement_rate")[] | undefined;
|
|
300
|
-
}, {
|
|
301
|
-
reporting_frequency: "hourly" | "daily" | "monthly";
|
|
302
|
-
requested_metrics?: ("impressions" | "spend" | "clicks" | "ctr" | "video_completions" | "completion_rate" | "conversions" | "viewability" | "engagement_rate")[] | undefined;
|
|
303
|
-
}>>>;
|
|
304
|
-
}, "strict", z.ZodTypeAny, {
|
|
305
|
-
buyer_ref: string;
|
|
306
|
-
packages: any[];
|
|
307
|
-
end_time: string;
|
|
308
|
-
budget: number;
|
|
309
|
-
brand_manifest?: any;
|
|
310
|
-
po_number?: string | undefined;
|
|
311
|
-
start_time?: any;
|
|
312
|
-
reporting_webhook?: any;
|
|
313
|
-
}, {
|
|
314
|
-
buyer_ref: string;
|
|
315
|
-
packages: any[];
|
|
316
|
-
end_time: string;
|
|
317
|
-
budget: number;
|
|
318
|
-
brand_manifest?: any;
|
|
319
|
-
po_number?: string | undefined;
|
|
320
|
-
start_time?: any;
|
|
321
|
-
reporting_webhook?: any;
|
|
322
|
-
}>;
|
|
1277
|
+
}, z.core.$strip>;
|
|
1278
|
+
export declare const StartTimingSchema: z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>;
|
|
1279
|
+
export declare const PushNotificationConfigSchema: z.ZodObject<{
|
|
1280
|
+
url: z.ZodString;
|
|
1281
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1282
|
+
authentication: z.ZodObject<{
|
|
1283
|
+
schemes: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"Bearer">, z.ZodLiteral<"HMAC-SHA256">]>], null>;
|
|
1284
|
+
credentials: z.ZodString;
|
|
1285
|
+
}, z.core.$strip>;
|
|
1286
|
+
}, z.core.$strip>;
|
|
323
1287
|
export declare const CreateMediaBuyResponseSchema: z.ZodObject<{
|
|
324
1288
|
media_buy_id: z.ZodOptional<z.ZodString>;
|
|
325
1289
|
buyer_ref: z.ZodString;
|
|
@@ -327,1191 +1291,601 @@ export declare const CreateMediaBuyResponseSchema: z.ZodObject<{
|
|
|
327
1291
|
packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
328
1292
|
package_id: z.ZodString;
|
|
329
1293
|
buyer_ref: z.ZodString;
|
|
330
|
-
},
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
},
|
|
339
|
-
|
|
340
|
-
media_buy_id?: string | undefined;
|
|
341
|
-
packages?: {
|
|
342
|
-
buyer_ref: string;
|
|
343
|
-
package_id: string;
|
|
344
|
-
}[] | undefined;
|
|
345
|
-
creative_deadline?: string | undefined;
|
|
346
|
-
errors?: any[] | undefined;
|
|
347
|
-
}, {
|
|
348
|
-
buyer_ref: string;
|
|
349
|
-
media_buy_id?: string | undefined;
|
|
350
|
-
packages?: {
|
|
351
|
-
buyer_ref: string;
|
|
352
|
-
package_id: string;
|
|
353
|
-
}[] | undefined;
|
|
354
|
-
creative_deadline?: string | undefined;
|
|
355
|
-
errors?: any[] | undefined;
|
|
356
|
-
}>;
|
|
357
|
-
export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
358
|
-
creatives: z.ZodArray<z.ZodAny, "many">;
|
|
359
|
-
patch: z.ZodDefault<z.ZodBoolean>;
|
|
360
|
-
assignments: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNever]>>, Record<string, string[]>, Record<string, string[]>>>;
|
|
361
|
-
delete_missing: z.ZodDefault<z.ZodBoolean>;
|
|
362
|
-
dry_run: z.ZodDefault<z.ZodBoolean>;
|
|
363
|
-
validation_mode: z.ZodDefault<z.ZodEnum<["strict", "lenient"]>>;
|
|
364
|
-
push_notification_config: z.ZodOptional<z.ZodAny>;
|
|
365
|
-
}, "strict", z.ZodTypeAny, {
|
|
366
|
-
creatives: any[];
|
|
367
|
-
patch: boolean;
|
|
368
|
-
delete_missing: boolean;
|
|
369
|
-
dry_run: boolean;
|
|
370
|
-
validation_mode: "strict" | "lenient";
|
|
371
|
-
assignments?: Record<string, string[]> | undefined;
|
|
372
|
-
push_notification_config?: any;
|
|
373
|
-
}, {
|
|
374
|
-
creatives: any[];
|
|
375
|
-
patch?: boolean | undefined;
|
|
376
|
-
assignments?: Record<string, string[]> | undefined;
|
|
377
|
-
delete_missing?: boolean | undefined;
|
|
378
|
-
dry_run?: boolean | undefined;
|
|
379
|
-
validation_mode?: "strict" | "lenient" | undefined;
|
|
380
|
-
push_notification_config?: any;
|
|
381
|
-
}>;
|
|
1294
|
+
}, z.core.$strip>>>;
|
|
1295
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1296
|
+
code: z.ZodString;
|
|
1297
|
+
message: z.ZodString;
|
|
1298
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1299
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1300
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1301
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1302
|
+
}, z.core.$strip>>>;
|
|
1303
|
+
}, z.core.$strip>;
|
|
382
1304
|
export declare const SyncCreativesResponseSchema: z.ZodObject<{
|
|
383
1305
|
dry_run: z.ZodOptional<z.ZodBoolean>;
|
|
384
1306
|
creatives: z.ZodArray<z.ZodObject<{
|
|
385
1307
|
creative_id: z.ZodString;
|
|
386
|
-
action: z.
|
|
1308
|
+
action: z.ZodUnion<readonly [z.ZodLiteral<"created">, z.ZodLiteral<"updated">, z.ZodLiteral<"unchanged">, z.ZodLiteral<"failed">, z.ZodLiteral<"deleted">]>;
|
|
387
1309
|
platform_id: z.ZodOptional<z.ZodString>;
|
|
388
|
-
changes: z.ZodOptional<z.ZodArray<z.ZodString
|
|
389
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodString
|
|
390
|
-
warnings: z.ZodOptional<z.ZodArray<z.ZodString
|
|
1310
|
+
changes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1311
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1312
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
391
1313
|
preview_url: z.ZodOptional<z.ZodString>;
|
|
392
1314
|
expires_at: z.ZodOptional<z.ZodString>;
|
|
393
|
-
assigned_to: z.ZodOptional<z.ZodArray<z.ZodString
|
|
394
|
-
assignment_errors: z.ZodOptional<z.
|
|
395
|
-
},
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
platform_id?: string | undefined;
|
|
401
|
-
changes?: string[] | undefined;
|
|
402
|
-
warnings?: string[] | undefined;
|
|
403
|
-
preview_url?: string | undefined;
|
|
404
|
-
assigned_to?: string[] | undefined;
|
|
405
|
-
assignment_errors?: Record<string, string> | undefined;
|
|
406
|
-
}, {
|
|
407
|
-
creative_id: string;
|
|
408
|
-
action: "created" | "updated" | "unchanged" | "failed" | "deleted";
|
|
409
|
-
expires_at?: string | undefined;
|
|
410
|
-
errors?: string[] | undefined;
|
|
411
|
-
platform_id?: string | undefined;
|
|
412
|
-
changes?: string[] | undefined;
|
|
413
|
-
warnings?: string[] | undefined;
|
|
414
|
-
preview_url?: string | undefined;
|
|
415
|
-
assigned_to?: string[] | undefined;
|
|
416
|
-
assignment_errors?: Record<string, string> | undefined;
|
|
417
|
-
}>, "many">;
|
|
418
|
-
}, "strict", z.ZodTypeAny, {
|
|
419
|
-
creatives: {
|
|
420
|
-
creative_id: string;
|
|
421
|
-
action: "created" | "updated" | "unchanged" | "failed" | "deleted";
|
|
422
|
-
expires_at?: string | undefined;
|
|
423
|
-
errors?: string[] | undefined;
|
|
424
|
-
platform_id?: string | undefined;
|
|
425
|
-
changes?: string[] | undefined;
|
|
426
|
-
warnings?: string[] | undefined;
|
|
427
|
-
preview_url?: string | undefined;
|
|
428
|
-
assigned_to?: string[] | undefined;
|
|
429
|
-
assignment_errors?: Record<string, string> | undefined;
|
|
430
|
-
}[];
|
|
431
|
-
dry_run?: boolean | undefined;
|
|
432
|
-
}, {
|
|
433
|
-
creatives: {
|
|
434
|
-
creative_id: string;
|
|
435
|
-
action: "created" | "updated" | "unchanged" | "failed" | "deleted";
|
|
436
|
-
expires_at?: string | undefined;
|
|
437
|
-
errors?: string[] | undefined;
|
|
438
|
-
platform_id?: string | undefined;
|
|
439
|
-
changes?: string[] | undefined;
|
|
440
|
-
warnings?: string[] | undefined;
|
|
441
|
-
preview_url?: string | undefined;
|
|
442
|
-
assigned_to?: string[] | undefined;
|
|
443
|
-
assignment_errors?: Record<string, string> | undefined;
|
|
444
|
-
}[];
|
|
445
|
-
dry_run?: boolean | undefined;
|
|
446
|
-
}>;
|
|
447
|
-
export declare const ListCreativesRequestSchema: z.ZodObject<{
|
|
448
|
-
filters: z.ZodOptional<z.ZodObject<{
|
|
449
|
-
format: z.ZodOptional<z.ZodString>;
|
|
450
|
-
formats: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
451
|
-
status: z.ZodOptional<z.ZodAny>;
|
|
452
|
-
statuses: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
453
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
454
|
-
tags_any: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
455
|
-
name_contains: z.ZodOptional<z.ZodString>;
|
|
456
|
-
creative_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
457
|
-
created_after: z.ZodOptional<z.ZodString>;
|
|
458
|
-
created_before: z.ZodOptional<z.ZodString>;
|
|
459
|
-
updated_after: z.ZodOptional<z.ZodString>;
|
|
460
|
-
updated_before: z.ZodOptional<z.ZodString>;
|
|
461
|
-
assigned_to_package: z.ZodOptional<z.ZodString>;
|
|
462
|
-
assigned_to_packages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
463
|
-
unassigned: z.ZodOptional<z.ZodBoolean>;
|
|
464
|
-
has_performance_data: z.ZodOptional<z.ZodBoolean>;
|
|
465
|
-
}, "strict", z.ZodTypeAny, {
|
|
466
|
-
status?: any;
|
|
467
|
-
tags?: string[] | undefined;
|
|
468
|
-
formats?: string[] | undefined;
|
|
469
|
-
format?: string | undefined;
|
|
470
|
-
statuses?: any[] | undefined;
|
|
471
|
-
tags_any?: string[] | undefined;
|
|
472
|
-
name_contains?: string | undefined;
|
|
473
|
-
creative_ids?: string[] | undefined;
|
|
474
|
-
created_after?: string | undefined;
|
|
475
|
-
created_before?: string | undefined;
|
|
476
|
-
updated_after?: string | undefined;
|
|
477
|
-
updated_before?: string | undefined;
|
|
478
|
-
assigned_to_package?: string | undefined;
|
|
479
|
-
assigned_to_packages?: string[] | undefined;
|
|
480
|
-
unassigned?: boolean | undefined;
|
|
481
|
-
has_performance_data?: boolean | undefined;
|
|
482
|
-
}, {
|
|
483
|
-
status?: any;
|
|
484
|
-
tags?: string[] | undefined;
|
|
485
|
-
formats?: string[] | undefined;
|
|
486
|
-
format?: string | undefined;
|
|
487
|
-
statuses?: any[] | undefined;
|
|
488
|
-
tags_any?: string[] | undefined;
|
|
489
|
-
name_contains?: string | undefined;
|
|
490
|
-
creative_ids?: string[] | undefined;
|
|
491
|
-
created_after?: string | undefined;
|
|
492
|
-
created_before?: string | undefined;
|
|
493
|
-
updated_after?: string | undefined;
|
|
494
|
-
updated_before?: string | undefined;
|
|
495
|
-
assigned_to_package?: string | undefined;
|
|
496
|
-
assigned_to_packages?: string[] | undefined;
|
|
497
|
-
unassigned?: boolean | undefined;
|
|
498
|
-
has_performance_data?: boolean | undefined;
|
|
499
|
-
}>>;
|
|
500
|
-
sort: z.ZodOptional<z.ZodObject<{
|
|
501
|
-
field: z.ZodDefault<z.ZodEnum<["created_date", "updated_date", "name", "status", "assignment_count", "performance_score"]>>;
|
|
502
|
-
direction: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
|
|
503
|
-
}, "strict", z.ZodTypeAny, {
|
|
504
|
-
field: "status" | "name" | "created_date" | "updated_date" | "assignment_count" | "performance_score";
|
|
505
|
-
direction: "asc" | "desc";
|
|
506
|
-
}, {
|
|
507
|
-
field?: "status" | "name" | "created_date" | "updated_date" | "assignment_count" | "performance_score" | undefined;
|
|
508
|
-
direction?: "asc" | "desc" | undefined;
|
|
509
|
-
}>>;
|
|
510
|
-
pagination: z.ZodOptional<z.ZodObject<{
|
|
511
|
-
limit: z.ZodDefault<z.ZodNumber>;
|
|
512
|
-
offset: z.ZodDefault<z.ZodNumber>;
|
|
513
|
-
}, "strict", z.ZodTypeAny, {
|
|
514
|
-
offset: number;
|
|
515
|
-
limit: number;
|
|
516
|
-
}, {
|
|
517
|
-
offset?: number | undefined;
|
|
518
|
-
limit?: number | undefined;
|
|
519
|
-
}>>;
|
|
520
|
-
include_assignments: z.ZodDefault<z.ZodBoolean>;
|
|
521
|
-
include_performance: z.ZodDefault<z.ZodBoolean>;
|
|
522
|
-
include_sub_assets: z.ZodDefault<z.ZodBoolean>;
|
|
523
|
-
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["creative_id", "name", "format", "status", "created_date", "updated_date", "tags", "assignments", "performance", "sub_assets"]>, "many">>;
|
|
524
|
-
}, "strict", z.ZodTypeAny, {
|
|
525
|
-
include_assignments: boolean;
|
|
526
|
-
include_performance: boolean;
|
|
527
|
-
include_sub_assets: boolean;
|
|
528
|
-
sort?: {
|
|
529
|
-
field: "status" | "name" | "created_date" | "updated_date" | "assignment_count" | "performance_score";
|
|
530
|
-
direction: "asc" | "desc";
|
|
531
|
-
} | undefined;
|
|
532
|
-
filters?: {
|
|
533
|
-
status?: any;
|
|
534
|
-
tags?: string[] | undefined;
|
|
535
|
-
formats?: string[] | undefined;
|
|
536
|
-
format?: string | undefined;
|
|
537
|
-
statuses?: any[] | undefined;
|
|
538
|
-
tags_any?: string[] | undefined;
|
|
539
|
-
name_contains?: string | undefined;
|
|
540
|
-
creative_ids?: string[] | undefined;
|
|
541
|
-
created_after?: string | undefined;
|
|
542
|
-
created_before?: string | undefined;
|
|
543
|
-
updated_after?: string | undefined;
|
|
544
|
-
updated_before?: string | undefined;
|
|
545
|
-
assigned_to_package?: string | undefined;
|
|
546
|
-
assigned_to_packages?: string[] | undefined;
|
|
547
|
-
unassigned?: boolean | undefined;
|
|
548
|
-
has_performance_data?: boolean | undefined;
|
|
549
|
-
} | undefined;
|
|
550
|
-
pagination?: {
|
|
551
|
-
offset: number;
|
|
552
|
-
limit: number;
|
|
553
|
-
} | undefined;
|
|
554
|
-
fields?: ("status" | "creative_id" | "name" | "tags" | "assignments" | "format" | "created_date" | "updated_date" | "performance" | "sub_assets")[] | undefined;
|
|
555
|
-
}, {
|
|
556
|
-
sort?: {
|
|
557
|
-
field?: "status" | "name" | "created_date" | "updated_date" | "assignment_count" | "performance_score" | undefined;
|
|
558
|
-
direction?: "asc" | "desc" | undefined;
|
|
559
|
-
} | undefined;
|
|
560
|
-
filters?: {
|
|
561
|
-
status?: any;
|
|
562
|
-
tags?: string[] | undefined;
|
|
563
|
-
formats?: string[] | undefined;
|
|
564
|
-
format?: string | undefined;
|
|
565
|
-
statuses?: any[] | undefined;
|
|
566
|
-
tags_any?: string[] | undefined;
|
|
567
|
-
name_contains?: string | undefined;
|
|
568
|
-
creative_ids?: string[] | undefined;
|
|
569
|
-
created_after?: string | undefined;
|
|
570
|
-
created_before?: string | undefined;
|
|
571
|
-
updated_after?: string | undefined;
|
|
572
|
-
updated_before?: string | undefined;
|
|
573
|
-
assigned_to_package?: string | undefined;
|
|
574
|
-
assigned_to_packages?: string[] | undefined;
|
|
575
|
-
unassigned?: boolean | undefined;
|
|
576
|
-
has_performance_data?: boolean | undefined;
|
|
577
|
-
} | undefined;
|
|
578
|
-
pagination?: {
|
|
579
|
-
offset?: number | undefined;
|
|
580
|
-
limit?: number | undefined;
|
|
581
|
-
} | undefined;
|
|
582
|
-
include_assignments?: boolean | undefined;
|
|
583
|
-
include_performance?: boolean | undefined;
|
|
584
|
-
include_sub_assets?: boolean | undefined;
|
|
585
|
-
fields?: ("status" | "creative_id" | "name" | "tags" | "assignments" | "format" | "created_date" | "updated_date" | "performance" | "sub_assets")[] | undefined;
|
|
586
|
-
}>;
|
|
587
|
-
export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
588
|
-
query_summary: z.ZodObject<{
|
|
589
|
-
total_matching: z.ZodNumber;
|
|
590
|
-
returned: z.ZodNumber;
|
|
591
|
-
filters_applied: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
592
|
-
sort_applied: z.ZodOptional<z.ZodObject<{
|
|
593
|
-
field: z.ZodOptional<z.ZodString>;
|
|
594
|
-
direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
595
|
-
}, "strip", z.ZodTypeAny, {
|
|
596
|
-
field?: string | undefined;
|
|
597
|
-
direction?: "asc" | "desc" | undefined;
|
|
598
|
-
}, {
|
|
599
|
-
field?: string | undefined;
|
|
600
|
-
direction?: "asc" | "desc" | undefined;
|
|
601
|
-
}>>;
|
|
602
|
-
}, "strict", z.ZodTypeAny, {
|
|
603
|
-
total_matching: number;
|
|
604
|
-
returned: number;
|
|
605
|
-
filters_applied?: string[] | undefined;
|
|
606
|
-
sort_applied?: {
|
|
607
|
-
field?: string | undefined;
|
|
608
|
-
direction?: "asc" | "desc" | undefined;
|
|
609
|
-
} | undefined;
|
|
610
|
-
}, {
|
|
611
|
-
total_matching: number;
|
|
612
|
-
returned: number;
|
|
613
|
-
filters_applied?: string[] | undefined;
|
|
614
|
-
sort_applied?: {
|
|
615
|
-
field?: string | undefined;
|
|
616
|
-
direction?: "asc" | "desc" | undefined;
|
|
617
|
-
} | undefined;
|
|
618
|
-
}>;
|
|
619
|
-
pagination: z.ZodObject<{
|
|
620
|
-
limit: z.ZodNumber;
|
|
621
|
-
offset: z.ZodNumber;
|
|
622
|
-
has_more: z.ZodBoolean;
|
|
623
|
-
total_pages: z.ZodOptional<z.ZodNumber>;
|
|
624
|
-
current_page: z.ZodOptional<z.ZodNumber>;
|
|
625
|
-
}, "strict", z.ZodTypeAny, {
|
|
626
|
-
offset: number;
|
|
627
|
-
limit: number;
|
|
628
|
-
has_more: boolean;
|
|
629
|
-
total_pages?: number | undefined;
|
|
630
|
-
current_page?: number | undefined;
|
|
631
|
-
}, {
|
|
632
|
-
offset: number;
|
|
633
|
-
limit: number;
|
|
634
|
-
has_more: boolean;
|
|
635
|
-
total_pages?: number | undefined;
|
|
636
|
-
current_page?: number | undefined;
|
|
637
|
-
}>;
|
|
638
|
-
creatives: z.ZodArray<z.ZodObject<{
|
|
639
|
-
creative_id: z.ZodString;
|
|
640
|
-
name: z.ZodString;
|
|
641
|
-
format_id: z.ZodAny;
|
|
642
|
-
status: z.ZodAny;
|
|
643
|
-
created_date: z.ZodString;
|
|
644
|
-
updated_date: z.ZodString;
|
|
645
|
-
media_url: z.ZodOptional<z.ZodString>;
|
|
646
|
-
assets: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodAny, any, any>>, Record<string, any>, Record<string, any>>>;
|
|
647
|
-
click_url: z.ZodOptional<z.ZodString>;
|
|
648
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
649
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
650
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
651
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
652
|
-
assignments: z.ZodOptional<z.ZodObject<{
|
|
653
|
-
assignment_count: z.ZodNumber;
|
|
654
|
-
assigned_packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
655
|
-
package_id: z.ZodString;
|
|
656
|
-
package_name: z.ZodOptional<z.ZodString>;
|
|
657
|
-
assigned_date: z.ZodString;
|
|
658
|
-
status: z.ZodEnum<["active", "paused", "ended"]>;
|
|
659
|
-
}, "strict", z.ZodTypeAny, {
|
|
660
|
-
status: "active" | "paused" | "ended";
|
|
661
|
-
package_id: string;
|
|
662
|
-
assigned_date: string;
|
|
663
|
-
package_name?: string | undefined;
|
|
664
|
-
}, {
|
|
665
|
-
status: "active" | "paused" | "ended";
|
|
666
|
-
package_id: string;
|
|
667
|
-
assigned_date: string;
|
|
668
|
-
package_name?: string | undefined;
|
|
669
|
-
}>, "many">>;
|
|
670
|
-
}, "strict", z.ZodTypeAny, {
|
|
671
|
-
assignment_count: number;
|
|
672
|
-
assigned_packages?: {
|
|
673
|
-
status: "active" | "paused" | "ended";
|
|
674
|
-
package_id: string;
|
|
675
|
-
assigned_date: string;
|
|
676
|
-
package_name?: string | undefined;
|
|
677
|
-
}[] | undefined;
|
|
678
|
-
}, {
|
|
679
|
-
assignment_count: number;
|
|
680
|
-
assigned_packages?: {
|
|
681
|
-
status: "active" | "paused" | "ended";
|
|
682
|
-
package_id: string;
|
|
683
|
-
assigned_date: string;
|
|
684
|
-
package_name?: string | undefined;
|
|
685
|
-
}[] | undefined;
|
|
686
|
-
}>>;
|
|
687
|
-
performance: z.ZodOptional<z.ZodObject<{
|
|
688
|
-
impressions: z.ZodOptional<z.ZodNumber>;
|
|
689
|
-
clicks: z.ZodOptional<z.ZodNumber>;
|
|
690
|
-
ctr: z.ZodOptional<z.ZodNumber>;
|
|
691
|
-
conversion_rate: z.ZodOptional<z.ZodNumber>;
|
|
692
|
-
performance_score: z.ZodOptional<z.ZodNumber>;
|
|
693
|
-
last_updated: z.ZodString;
|
|
694
|
-
}, "strict", z.ZodTypeAny, {
|
|
695
|
-
last_updated: string;
|
|
696
|
-
impressions?: number | undefined;
|
|
697
|
-
clicks?: number | undefined;
|
|
698
|
-
ctr?: number | undefined;
|
|
699
|
-
performance_score?: number | undefined;
|
|
700
|
-
conversion_rate?: number | undefined;
|
|
701
|
-
}, {
|
|
702
|
-
last_updated: string;
|
|
703
|
-
impressions?: number | undefined;
|
|
704
|
-
clicks?: number | undefined;
|
|
705
|
-
ctr?: number | undefined;
|
|
706
|
-
performance_score?: number | undefined;
|
|
707
|
-
conversion_rate?: number | undefined;
|
|
708
|
-
}>>;
|
|
709
|
-
sub_assets: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
710
|
-
}, "strict", z.ZodTypeAny, {
|
|
711
|
-
creative_id: string;
|
|
712
|
-
name: string;
|
|
713
|
-
created_date: string;
|
|
714
|
-
updated_date: string;
|
|
715
|
-
status?: any;
|
|
716
|
-
format_id?: any;
|
|
717
|
-
assets?: Record<string, any> | undefined;
|
|
718
|
-
tags?: string[] | undefined;
|
|
719
|
-
assignments?: {
|
|
720
|
-
assignment_count: number;
|
|
721
|
-
assigned_packages?: {
|
|
722
|
-
status: "active" | "paused" | "ended";
|
|
723
|
-
package_id: string;
|
|
724
|
-
assigned_date: string;
|
|
725
|
-
package_name?: string | undefined;
|
|
726
|
-
}[] | undefined;
|
|
727
|
-
} | undefined;
|
|
728
|
-
performance?: {
|
|
729
|
-
last_updated: string;
|
|
730
|
-
impressions?: number | undefined;
|
|
731
|
-
clicks?: number | undefined;
|
|
732
|
-
ctr?: number | undefined;
|
|
733
|
-
performance_score?: number | undefined;
|
|
734
|
-
conversion_rate?: number | undefined;
|
|
735
|
-
} | undefined;
|
|
736
|
-
sub_assets?: any[] | undefined;
|
|
737
|
-
media_url?: string | undefined;
|
|
738
|
-
click_url?: string | undefined;
|
|
739
|
-
duration?: number | undefined;
|
|
740
|
-
width?: number | undefined;
|
|
741
|
-
height?: number | undefined;
|
|
742
|
-
}, {
|
|
743
|
-
creative_id: string;
|
|
744
|
-
name: string;
|
|
745
|
-
created_date: string;
|
|
746
|
-
updated_date: string;
|
|
747
|
-
status?: any;
|
|
748
|
-
format_id?: any;
|
|
749
|
-
assets?: Record<string, any> | undefined;
|
|
750
|
-
tags?: string[] | undefined;
|
|
751
|
-
assignments?: {
|
|
752
|
-
assignment_count: number;
|
|
753
|
-
assigned_packages?: {
|
|
754
|
-
status: "active" | "paused" | "ended";
|
|
755
|
-
package_id: string;
|
|
756
|
-
assigned_date: string;
|
|
757
|
-
package_name?: string | undefined;
|
|
758
|
-
}[] | undefined;
|
|
759
|
-
} | undefined;
|
|
760
|
-
performance?: {
|
|
761
|
-
last_updated: string;
|
|
762
|
-
impressions?: number | undefined;
|
|
763
|
-
clicks?: number | undefined;
|
|
764
|
-
ctr?: number | undefined;
|
|
765
|
-
performance_score?: number | undefined;
|
|
766
|
-
conversion_rate?: number | undefined;
|
|
767
|
-
} | undefined;
|
|
768
|
-
sub_assets?: any[] | undefined;
|
|
769
|
-
media_url?: string | undefined;
|
|
770
|
-
click_url?: string | undefined;
|
|
771
|
-
duration?: number | undefined;
|
|
772
|
-
width?: number | undefined;
|
|
773
|
-
height?: number | undefined;
|
|
774
|
-
}>, "many">;
|
|
775
|
-
format_summary: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNumber, z.ZodNever]>>, Record<string, number>, Record<string, number>>>;
|
|
776
|
-
status_summary: z.ZodOptional<z.ZodObject<{
|
|
777
|
-
approved: z.ZodOptional<z.ZodNumber>;
|
|
778
|
-
pending_review: z.ZodOptional<z.ZodNumber>;
|
|
779
|
-
rejected: z.ZodOptional<z.ZodNumber>;
|
|
780
|
-
archived: z.ZodOptional<z.ZodNumber>;
|
|
781
|
-
}, "strict", z.ZodTypeAny, {
|
|
782
|
-
pending_review?: number | undefined;
|
|
783
|
-
approved?: number | undefined;
|
|
784
|
-
rejected?: number | undefined;
|
|
785
|
-
archived?: number | undefined;
|
|
786
|
-
}, {
|
|
787
|
-
pending_review?: number | undefined;
|
|
788
|
-
approved?: number | undefined;
|
|
789
|
-
rejected?: number | undefined;
|
|
790
|
-
archived?: number | undefined;
|
|
791
|
-
}>>;
|
|
792
|
-
}, "strict", z.ZodTypeAny, {
|
|
793
|
-
creatives: {
|
|
794
|
-
creative_id: string;
|
|
795
|
-
name: string;
|
|
796
|
-
created_date: string;
|
|
797
|
-
updated_date: string;
|
|
798
|
-
status?: any;
|
|
799
|
-
format_id?: any;
|
|
800
|
-
assets?: Record<string, any> | undefined;
|
|
801
|
-
tags?: string[] | undefined;
|
|
802
|
-
assignments?: {
|
|
803
|
-
assignment_count: number;
|
|
804
|
-
assigned_packages?: {
|
|
805
|
-
status: "active" | "paused" | "ended";
|
|
806
|
-
package_id: string;
|
|
807
|
-
assigned_date: string;
|
|
808
|
-
package_name?: string | undefined;
|
|
809
|
-
}[] | undefined;
|
|
810
|
-
} | undefined;
|
|
811
|
-
performance?: {
|
|
812
|
-
last_updated: string;
|
|
813
|
-
impressions?: number | undefined;
|
|
814
|
-
clicks?: number | undefined;
|
|
815
|
-
ctr?: number | undefined;
|
|
816
|
-
performance_score?: number | undefined;
|
|
817
|
-
conversion_rate?: number | undefined;
|
|
818
|
-
} | undefined;
|
|
819
|
-
sub_assets?: any[] | undefined;
|
|
820
|
-
media_url?: string | undefined;
|
|
821
|
-
click_url?: string | undefined;
|
|
822
|
-
duration?: number | undefined;
|
|
823
|
-
width?: number | undefined;
|
|
824
|
-
height?: number | undefined;
|
|
825
|
-
}[];
|
|
826
|
-
pagination: {
|
|
827
|
-
offset: number;
|
|
828
|
-
limit: number;
|
|
829
|
-
has_more: boolean;
|
|
830
|
-
total_pages?: number | undefined;
|
|
831
|
-
current_page?: number | undefined;
|
|
832
|
-
};
|
|
833
|
-
query_summary: {
|
|
834
|
-
total_matching: number;
|
|
835
|
-
returned: number;
|
|
836
|
-
filters_applied?: string[] | undefined;
|
|
837
|
-
sort_applied?: {
|
|
838
|
-
field?: string | undefined;
|
|
839
|
-
direction?: "asc" | "desc" | undefined;
|
|
840
|
-
} | undefined;
|
|
841
|
-
};
|
|
842
|
-
format_summary?: Record<string, number> | undefined;
|
|
843
|
-
status_summary?: {
|
|
844
|
-
pending_review?: number | undefined;
|
|
845
|
-
approved?: number | undefined;
|
|
846
|
-
rejected?: number | undefined;
|
|
847
|
-
archived?: number | undefined;
|
|
848
|
-
} | undefined;
|
|
849
|
-
}, {
|
|
850
|
-
creatives: {
|
|
851
|
-
creative_id: string;
|
|
852
|
-
name: string;
|
|
853
|
-
created_date: string;
|
|
854
|
-
updated_date: string;
|
|
855
|
-
status?: any;
|
|
856
|
-
format_id?: any;
|
|
857
|
-
assets?: Record<string, any> | undefined;
|
|
858
|
-
tags?: string[] | undefined;
|
|
859
|
-
assignments?: {
|
|
860
|
-
assignment_count: number;
|
|
861
|
-
assigned_packages?: {
|
|
862
|
-
status: "active" | "paused" | "ended";
|
|
863
|
-
package_id: string;
|
|
864
|
-
assigned_date: string;
|
|
865
|
-
package_name?: string | undefined;
|
|
866
|
-
}[] | undefined;
|
|
867
|
-
} | undefined;
|
|
868
|
-
performance?: {
|
|
869
|
-
last_updated: string;
|
|
870
|
-
impressions?: number | undefined;
|
|
871
|
-
clicks?: number | undefined;
|
|
872
|
-
ctr?: number | undefined;
|
|
873
|
-
performance_score?: number | undefined;
|
|
874
|
-
conversion_rate?: number | undefined;
|
|
875
|
-
} | undefined;
|
|
876
|
-
sub_assets?: any[] | undefined;
|
|
877
|
-
media_url?: string | undefined;
|
|
878
|
-
click_url?: string | undefined;
|
|
879
|
-
duration?: number | undefined;
|
|
880
|
-
width?: number | undefined;
|
|
881
|
-
height?: number | undefined;
|
|
882
|
-
}[];
|
|
883
|
-
pagination: {
|
|
884
|
-
offset: number;
|
|
885
|
-
limit: number;
|
|
886
|
-
has_more: boolean;
|
|
887
|
-
total_pages?: number | undefined;
|
|
888
|
-
current_page?: number | undefined;
|
|
889
|
-
};
|
|
890
|
-
query_summary: {
|
|
891
|
-
total_matching: number;
|
|
892
|
-
returned: number;
|
|
893
|
-
filters_applied?: string[] | undefined;
|
|
894
|
-
sort_applied?: {
|
|
895
|
-
field?: string | undefined;
|
|
896
|
-
direction?: "asc" | "desc" | undefined;
|
|
897
|
-
} | undefined;
|
|
898
|
-
};
|
|
899
|
-
format_summary?: Record<string, number> | undefined;
|
|
900
|
-
status_summary?: {
|
|
901
|
-
pending_review?: number | undefined;
|
|
902
|
-
approved?: number | undefined;
|
|
903
|
-
rejected?: number | undefined;
|
|
904
|
-
archived?: number | undefined;
|
|
905
|
-
} | undefined;
|
|
906
|
-
}>;
|
|
907
|
-
export declare const UpdateMediaBuyRequestSchema: z.ZodIntersection<z.ZodObject<{
|
|
1315
|
+
assigned_to: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1316
|
+
assignment_errors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1317
|
+
}, z.core.$strip>>;
|
|
1318
|
+
}, z.core.$strip>;
|
|
1319
|
+
export declare const CreativeStatusSchema: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
1320
|
+
export declare const CreativeStatus1Schema: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
1321
|
+
export declare const UpdateMediaBuyRequest1Schema: z.ZodObject<{
|
|
908
1322
|
media_buy_id: z.ZodOptional<z.ZodString>;
|
|
909
1323
|
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
910
1324
|
active: z.ZodOptional<z.ZodBoolean>;
|
|
911
|
-
start_time: z.ZodOptional<z.
|
|
1325
|
+
start_time: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>>;
|
|
912
1326
|
end_time: z.ZodOptional<z.ZodString>;
|
|
913
1327
|
budget: z.ZodOptional<z.ZodNumber>;
|
|
914
|
-
packages: z.ZodOptional<z.ZodArray<z.
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
package_id?: string | undefined;
|
|
926
|
-
creative_ids?: string[] | undefined;
|
|
927
|
-
targeting_overlay?: any;
|
|
928
|
-
}, {
|
|
929
|
-
active?: boolean | undefined;
|
|
930
|
-
buyer_ref?: string | undefined;
|
|
931
|
-
budget?: number | undefined;
|
|
932
|
-
package_id?: string | undefined;
|
|
933
|
-
creative_ids?: string[] | undefined;
|
|
934
|
-
targeting_overlay?: any;
|
|
935
|
-
}>, z.ZodEffects<z.ZodAny, any, any>>, "many">>;
|
|
936
|
-
push_notification_config: z.ZodOptional<z.ZodAny>;
|
|
937
|
-
}, "strict", z.ZodTypeAny, {
|
|
938
|
-
active?: boolean | undefined;
|
|
939
|
-
media_buy_id?: string | undefined;
|
|
940
|
-
buyer_ref?: string | undefined;
|
|
941
|
-
packages?: any[] | undefined;
|
|
942
|
-
start_time?: any;
|
|
943
|
-
end_time?: string | undefined;
|
|
944
|
-
budget?: number | undefined;
|
|
945
|
-
push_notification_config?: any;
|
|
946
|
-
}, {
|
|
947
|
-
active?: boolean | undefined;
|
|
948
|
-
media_buy_id?: string | undefined;
|
|
949
|
-
buyer_ref?: string | undefined;
|
|
950
|
-
packages?: any[] | undefined;
|
|
951
|
-
start_time?: any;
|
|
952
|
-
end_time?: string | undefined;
|
|
953
|
-
budget?: number | undefined;
|
|
954
|
-
push_notification_config?: any;
|
|
955
|
-
}>, z.ZodEffects<z.ZodAny, any, any>>;
|
|
1328
|
+
packages: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
|
|
1329
|
+
push_notification_config: z.ZodOptional<z.ZodObject<{
|
|
1330
|
+
url: z.ZodString;
|
|
1331
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1332
|
+
authentication: z.ZodObject<{
|
|
1333
|
+
schemes: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"Bearer">, z.ZodLiteral<"HMAC-SHA256">]>], null>;
|
|
1334
|
+
credentials: z.ZodString;
|
|
1335
|
+
}, z.core.$strip>;
|
|
1336
|
+
}, z.core.$strip>>;
|
|
1337
|
+
}, z.core.$strip>;
|
|
1338
|
+
export declare const UpdateMediaBuyRequest2Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
956
1339
|
export declare const UpdateMediaBuyResponseSchema: z.ZodObject<{
|
|
957
1340
|
media_buy_id: z.ZodString;
|
|
958
1341
|
buyer_ref: z.ZodString;
|
|
959
|
-
implementation_date: z.
|
|
1342
|
+
implementation_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
960
1343
|
affected_packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
961
1344
|
package_id: z.ZodString;
|
|
962
1345
|
buyer_ref: z.ZodString;
|
|
963
|
-
},
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
},
|
|
972
|
-
|
|
973
|
-
buyer_ref: string;
|
|
974
|
-
errors?: any[] | undefined;
|
|
975
|
-
implementation_date?: string | null | undefined;
|
|
976
|
-
affected_packages?: {
|
|
977
|
-
buyer_ref: string;
|
|
978
|
-
package_id: string;
|
|
979
|
-
}[] | undefined;
|
|
980
|
-
}, {
|
|
981
|
-
media_buy_id: string;
|
|
982
|
-
buyer_ref: string;
|
|
983
|
-
errors?: any[] | undefined;
|
|
984
|
-
implementation_date?: string | null | undefined;
|
|
985
|
-
affected_packages?: {
|
|
986
|
-
buyer_ref: string;
|
|
987
|
-
package_id: string;
|
|
988
|
-
}[] | undefined;
|
|
989
|
-
}>;
|
|
1346
|
+
}, z.core.$strip>>>;
|
|
1347
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1348
|
+
code: z.ZodString;
|
|
1349
|
+
message: z.ZodString;
|
|
1350
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1351
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1352
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1353
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1354
|
+
}, z.core.$strip>>>;
|
|
1355
|
+
}, z.core.$strip>;
|
|
990
1356
|
export declare const GetMediaBuyDeliveryRequestSchema: z.ZodObject<{
|
|
991
|
-
media_buy_ids: z.ZodOptional<z.ZodArray<z.ZodString
|
|
992
|
-
buyer_refs: z.ZodOptional<z.ZodArray<z.ZodString
|
|
993
|
-
status_filter: z.ZodOptional<z.
|
|
1357
|
+
media_buy_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1358
|
+
buyer_refs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1359
|
+
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">]>>]>>;
|
|
994
1360
|
start_date: z.ZodOptional<z.ZodString>;
|
|
995
1361
|
end_date: z.ZodOptional<z.ZodString>;
|
|
996
|
-
},
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
impressions: z.ZodNumber;
|
|
1028
|
-
spend: z.ZodNumber;
|
|
1029
|
-
clicks: z.ZodOptional<z.ZodNumber>;
|
|
1030
|
-
video_completions: z.ZodOptional<z.ZodNumber>;
|
|
1031
|
-
media_buy_count: z.ZodNumber;
|
|
1032
|
-
}, "strict", z.ZodTypeAny, {
|
|
1033
|
-
impressions: number;
|
|
1034
|
-
spend: number;
|
|
1035
|
-
media_buy_count: number;
|
|
1036
|
-
clicks?: number | undefined;
|
|
1037
|
-
video_completions?: number | undefined;
|
|
1038
|
-
}, {
|
|
1039
|
-
impressions: number;
|
|
1040
|
-
spend: number;
|
|
1041
|
-
media_buy_count: number;
|
|
1042
|
-
clicks?: number | undefined;
|
|
1043
|
-
video_completions?: number | undefined;
|
|
1044
|
-
}>>;
|
|
1045
|
-
media_buy_deliveries: z.ZodArray<z.ZodObject<{
|
|
1046
|
-
media_buy_id: z.ZodString;
|
|
1047
|
-
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
1048
|
-
status: z.ZodEnum<["pending", "active", "paused", "completed", "failed", "reporting_delayed"]>;
|
|
1049
|
-
expected_availability: z.ZodOptional<z.ZodString>;
|
|
1050
|
-
is_adjusted: z.ZodOptional<z.ZodBoolean>;
|
|
1051
|
-
pricing_model: z.ZodOptional<z.ZodAny>;
|
|
1052
|
-
totals: z.ZodIntersection<z.ZodAny, z.ZodObject<{
|
|
1053
|
-
effective_rate: z.ZodOptional<z.ZodNumber>;
|
|
1054
|
-
}, "strip", z.ZodTypeAny, {
|
|
1055
|
-
effective_rate?: number | undefined;
|
|
1056
|
-
}, {
|
|
1057
|
-
effective_rate?: number | undefined;
|
|
1058
|
-
}>>;
|
|
1059
|
-
by_package: z.ZodArray<z.ZodIntersection<z.ZodAny, z.ZodObject<{
|
|
1060
|
-
package_id: z.ZodString;
|
|
1061
|
-
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
1062
|
-
pacing_index: z.ZodOptional<z.ZodNumber>;
|
|
1063
|
-
}, "strip", z.ZodTypeAny, {
|
|
1064
|
-
package_id: string;
|
|
1065
|
-
buyer_ref?: string | undefined;
|
|
1066
|
-
pacing_index?: number | undefined;
|
|
1067
|
-
}, {
|
|
1068
|
-
package_id: string;
|
|
1069
|
-
buyer_ref?: string | undefined;
|
|
1070
|
-
pacing_index?: number | undefined;
|
|
1071
|
-
}>>, "many">;
|
|
1072
|
-
daily_breakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1073
|
-
date: z.ZodString;
|
|
1362
|
+
}, z.core.$strip>;
|
|
1363
|
+
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">]>;
|
|
1364
|
+
export declare const DeliveryMetricsSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1365
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
1366
|
+
spend: z.ZodOptional<z.ZodNumber>;
|
|
1367
|
+
clicks: z.ZodOptional<z.ZodNumber>;
|
|
1368
|
+
ctr: z.ZodOptional<z.ZodNumber>;
|
|
1369
|
+
views: z.ZodOptional<z.ZodNumber>;
|
|
1370
|
+
completed_views: z.ZodOptional<z.ZodNumber>;
|
|
1371
|
+
completion_rate: z.ZodOptional<z.ZodNumber>;
|
|
1372
|
+
conversions: z.ZodOptional<z.ZodNumber>;
|
|
1373
|
+
leads: z.ZodOptional<z.ZodNumber>;
|
|
1374
|
+
grps: z.ZodOptional<z.ZodNumber>;
|
|
1375
|
+
reach: z.ZodOptional<z.ZodNumber>;
|
|
1376
|
+
frequency: z.ZodOptional<z.ZodNumber>;
|
|
1377
|
+
quartile_data: z.ZodOptional<z.ZodObject<{
|
|
1378
|
+
q1_views: z.ZodOptional<z.ZodNumber>;
|
|
1379
|
+
q2_views: z.ZodOptional<z.ZodNumber>;
|
|
1380
|
+
q3_views: z.ZodOptional<z.ZodNumber>;
|
|
1381
|
+
q4_views: z.ZodOptional<z.ZodNumber>;
|
|
1382
|
+
}, z.core.$strip>>;
|
|
1383
|
+
dooh_metrics: z.ZodOptional<z.ZodObject<{
|
|
1384
|
+
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1385
|
+
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1386
|
+
screen_time_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1387
|
+
sov_achieved: z.ZodOptional<z.ZodNumber>;
|
|
1388
|
+
calculation_notes: z.ZodOptional<z.ZodString>;
|
|
1389
|
+
venue_breakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1390
|
+
venue_id: z.ZodString;
|
|
1391
|
+
venue_name: z.ZodOptional<z.ZodString>;
|
|
1392
|
+
venue_type: z.ZodOptional<z.ZodString>;
|
|
1074
1393
|
impressions: z.ZodNumber;
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
}, {
|
|
1081
|
-
impressions: number;
|
|
1082
|
-
spend: number;
|
|
1083
|
-
date: string;
|
|
1084
|
-
}>, "many">>;
|
|
1085
|
-
}, "strict", z.ZodTypeAny, {
|
|
1086
|
-
media_buy_id: string;
|
|
1087
|
-
status: "active" | "paused" | "completed" | "pending" | "failed" | "reporting_delayed";
|
|
1088
|
-
by_package: any[];
|
|
1089
|
-
buyer_ref?: string | undefined;
|
|
1090
|
-
expected_availability?: string | undefined;
|
|
1091
|
-
is_adjusted?: boolean | undefined;
|
|
1092
|
-
pricing_model?: any;
|
|
1093
|
-
totals?: any;
|
|
1094
|
-
daily_breakdown?: {
|
|
1095
|
-
impressions: number;
|
|
1096
|
-
spend: number;
|
|
1097
|
-
date: string;
|
|
1098
|
-
}[] | undefined;
|
|
1099
|
-
}, {
|
|
1100
|
-
media_buy_id: string;
|
|
1101
|
-
status: "active" | "paused" | "completed" | "pending" | "failed" | "reporting_delayed";
|
|
1102
|
-
by_package: any[];
|
|
1103
|
-
buyer_ref?: string | undefined;
|
|
1104
|
-
expected_availability?: string | undefined;
|
|
1105
|
-
is_adjusted?: boolean | undefined;
|
|
1106
|
-
pricing_model?: any;
|
|
1107
|
-
totals?: any;
|
|
1108
|
-
daily_breakdown?: {
|
|
1109
|
-
impressions: number;
|
|
1110
|
-
spend: number;
|
|
1111
|
-
date: string;
|
|
1112
|
-
}[] | undefined;
|
|
1113
|
-
}>, "many">;
|
|
1114
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
1115
|
-
}, "strict", z.ZodTypeAny, {
|
|
1116
|
-
reporting_period: {
|
|
1117
|
-
start: string;
|
|
1118
|
-
end: string;
|
|
1119
|
-
};
|
|
1120
|
-
currency: string;
|
|
1121
|
-
media_buy_deliveries: {
|
|
1122
|
-
media_buy_id: string;
|
|
1123
|
-
status: "active" | "paused" | "completed" | "pending" | "failed" | "reporting_delayed";
|
|
1124
|
-
by_package: any[];
|
|
1125
|
-
buyer_ref?: string | undefined;
|
|
1126
|
-
expected_availability?: string | undefined;
|
|
1127
|
-
is_adjusted?: boolean | undefined;
|
|
1128
|
-
pricing_model?: any;
|
|
1129
|
-
totals?: any;
|
|
1130
|
-
daily_breakdown?: {
|
|
1131
|
-
impressions: number;
|
|
1132
|
-
spend: number;
|
|
1133
|
-
date: string;
|
|
1134
|
-
}[] | undefined;
|
|
1135
|
-
}[];
|
|
1136
|
-
errors?: any[] | undefined;
|
|
1137
|
-
notification_type?: "scheduled" | "final" | "delayed" | "adjusted" | undefined;
|
|
1138
|
-
partial_data?: boolean | undefined;
|
|
1139
|
-
unavailable_count?: number | undefined;
|
|
1140
|
-
sequence_number?: number | undefined;
|
|
1141
|
-
next_expected_at?: string | undefined;
|
|
1142
|
-
aggregated_totals?: {
|
|
1143
|
-
impressions: number;
|
|
1144
|
-
spend: number;
|
|
1145
|
-
media_buy_count: number;
|
|
1146
|
-
clicks?: number | undefined;
|
|
1147
|
-
video_completions?: number | undefined;
|
|
1148
|
-
} | undefined;
|
|
1149
|
-
}, {
|
|
1150
|
-
reporting_period: {
|
|
1151
|
-
start: string;
|
|
1152
|
-
end: string;
|
|
1153
|
-
};
|
|
1154
|
-
currency: string;
|
|
1155
|
-
media_buy_deliveries: {
|
|
1156
|
-
media_buy_id: string;
|
|
1157
|
-
status: "active" | "paused" | "completed" | "pending" | "failed" | "reporting_delayed";
|
|
1158
|
-
by_package: any[];
|
|
1159
|
-
buyer_ref?: string | undefined;
|
|
1160
|
-
expected_availability?: string | undefined;
|
|
1161
|
-
is_adjusted?: boolean | undefined;
|
|
1162
|
-
pricing_model?: any;
|
|
1163
|
-
totals?: any;
|
|
1164
|
-
daily_breakdown?: {
|
|
1165
|
-
impressions: number;
|
|
1166
|
-
spend: number;
|
|
1167
|
-
date: string;
|
|
1168
|
-
}[] | undefined;
|
|
1169
|
-
}[];
|
|
1170
|
-
errors?: any[] | undefined;
|
|
1171
|
-
notification_type?: "scheduled" | "final" | "delayed" | "adjusted" | undefined;
|
|
1172
|
-
partial_data?: boolean | undefined;
|
|
1173
|
-
unavailable_count?: number | undefined;
|
|
1174
|
-
sequence_number?: number | undefined;
|
|
1175
|
-
next_expected_at?: string | undefined;
|
|
1176
|
-
aggregated_totals?: {
|
|
1177
|
-
impressions: number;
|
|
1178
|
-
spend: number;
|
|
1179
|
-
media_buy_count: number;
|
|
1180
|
-
clicks?: number | undefined;
|
|
1181
|
-
video_completions?: number | undefined;
|
|
1182
|
-
} | undefined;
|
|
1183
|
-
}>;
|
|
1394
|
+
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1395
|
+
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1396
|
+
}, z.core.$strip>>>;
|
|
1397
|
+
}, z.core.$strip>>;
|
|
1398
|
+
}, z.core.$strip>>;
|
|
1184
1399
|
export declare const ListAuthorizedPropertiesRequestSchema: z.ZodObject<{
|
|
1185
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString
|
|
1186
|
-
},
|
|
1187
|
-
|
|
1188
|
-
}, {
|
|
1189
|
-
tags?: string[] | undefined;
|
|
1190
|
-
}>;
|
|
1191
|
-
export declare const ListAuthorizedPropertiesResponseSchema: z.ZodObject<{
|
|
1192
|
-
properties: z.ZodArray<z.ZodAny, "many">;
|
|
1193
|
-
tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1194
|
-
name: z.ZodString;
|
|
1195
|
-
description: z.ZodString;
|
|
1196
|
-
}, "strict", z.ZodTypeAny, {
|
|
1197
|
-
name: string;
|
|
1198
|
-
description: string;
|
|
1199
|
-
}, {
|
|
1200
|
-
name: string;
|
|
1201
|
-
description: string;
|
|
1202
|
-
}>>>;
|
|
1203
|
-
primary_channels: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
1204
|
-
primary_countries: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1205
|
-
portfolio_description: z.ZodOptional<z.ZodString>;
|
|
1206
|
-
advertising_policies: z.ZodOptional<z.ZodString>;
|
|
1207
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
1208
|
-
}, "strict", z.ZodTypeAny, {
|
|
1209
|
-
properties: any[];
|
|
1210
|
-
tags?: Record<string, {
|
|
1211
|
-
name: string;
|
|
1212
|
-
description: string;
|
|
1213
|
-
}> | undefined;
|
|
1214
|
-
errors?: any[] | undefined;
|
|
1215
|
-
primary_channels?: any[] | undefined;
|
|
1216
|
-
primary_countries?: string[] | undefined;
|
|
1217
|
-
portfolio_description?: string | undefined;
|
|
1218
|
-
advertising_policies?: string | undefined;
|
|
1219
|
-
}, {
|
|
1220
|
-
properties: any[];
|
|
1221
|
-
tags?: Record<string, {
|
|
1222
|
-
name: string;
|
|
1223
|
-
description: string;
|
|
1224
|
-
}> | undefined;
|
|
1225
|
-
errors?: any[] | undefined;
|
|
1226
|
-
primary_channels?: any[] | undefined;
|
|
1227
|
-
primary_countries?: string[] | undefined;
|
|
1228
|
-
portfolio_description?: string | undefined;
|
|
1229
|
-
advertising_policies?: string | undefined;
|
|
1230
|
-
}>;
|
|
1400
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1401
|
+
}, z.core.$strip>;
|
|
1402
|
+
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">]>;
|
|
1231
1403
|
export declare const ProvidePerformanceFeedbackRequestSchema: z.ZodObject<{
|
|
1232
1404
|
media_buy_id: z.ZodString;
|
|
1233
1405
|
measurement_period: z.ZodObject<{
|
|
1234
1406
|
start: z.ZodString;
|
|
1235
1407
|
end: z.ZodString;
|
|
1236
|
-
},
|
|
1237
|
-
start: string;
|
|
1238
|
-
end: string;
|
|
1239
|
-
}, {
|
|
1240
|
-
start: string;
|
|
1241
|
-
end: string;
|
|
1242
|
-
}>;
|
|
1408
|
+
}, z.core.$strip>;
|
|
1243
1409
|
performance_index: z.ZodNumber;
|
|
1244
1410
|
package_id: z.ZodOptional<z.ZodString>;
|
|
1245
1411
|
creative_id: z.ZodOptional<z.ZodString>;
|
|
1246
|
-
metric_type: z.
|
|
1247
|
-
feedback_source: z.
|
|
1248
|
-
},
|
|
1249
|
-
media_buy_id: string;
|
|
1250
|
-
measurement_period: {
|
|
1251
|
-
start: string;
|
|
1252
|
-
end: string;
|
|
1253
|
-
};
|
|
1254
|
-
performance_index: number;
|
|
1255
|
-
metric_type: "completion_rate" | "viewability" | "conversion_rate" | "overall_performance" | "brand_lift" | "click_through_rate" | "brand_safety" | "cost_efficiency";
|
|
1256
|
-
feedback_source: "buyer_attribution" | "third_party_measurement" | "platform_analytics" | "verification_partner";
|
|
1257
|
-
creative_id?: string | undefined;
|
|
1258
|
-
package_id?: string | undefined;
|
|
1259
|
-
}, {
|
|
1260
|
-
media_buy_id: string;
|
|
1261
|
-
measurement_period: {
|
|
1262
|
-
start: string;
|
|
1263
|
-
end: string;
|
|
1264
|
-
};
|
|
1265
|
-
performance_index: number;
|
|
1266
|
-
creative_id?: string | undefined;
|
|
1267
|
-
package_id?: string | undefined;
|
|
1268
|
-
metric_type?: "completion_rate" | "viewability" | "conversion_rate" | "overall_performance" | "brand_lift" | "click_through_rate" | "brand_safety" | "cost_efficiency" | undefined;
|
|
1269
|
-
feedback_source?: "buyer_attribution" | "third_party_measurement" | "platform_analytics" | "verification_partner" | undefined;
|
|
1270
|
-
}>;
|
|
1412
|
+
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">]>>;
|
|
1413
|
+
feedback_source: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"buyer_attribution">, z.ZodLiteral<"third_party_measurement">, z.ZodLiteral<"platform_analytics">, z.ZodLiteral<"verification_partner">]>>;
|
|
1414
|
+
}, z.core.$strip>;
|
|
1271
1415
|
export declare const ProvidePerformanceFeedbackResponseSchema: z.ZodObject<{
|
|
1272
1416
|
success: z.ZodBoolean;
|
|
1273
|
-
errors: z.ZodOptional<z.ZodArray<z.
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
}
|
|
1417
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1418
|
+
code: z.ZodString;
|
|
1419
|
+
message: z.ZodString;
|
|
1420
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1421
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1422
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1423
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1424
|
+
}, z.core.$strip>>>;
|
|
1425
|
+
}, z.core.$strip>;
|
|
1426
|
+
export declare const FormatID1Schema: z.ZodObject<{
|
|
1427
|
+
agent_url: z.ZodString;
|
|
1428
|
+
id: z.ZodString;
|
|
1429
|
+
}, z.core.$strip>;
|
|
1430
|
+
export declare const PreviewCreativeResponseSchema: z.ZodObject<{
|
|
1431
|
+
previews: z.ZodTuple<[z.ZodObject<{
|
|
1432
|
+
preview_id: z.ZodString;
|
|
1433
|
+
renders: z.ZodTuple<[z.ZodObject<{
|
|
1434
|
+
render_id: z.ZodString;
|
|
1435
|
+
preview_url: z.ZodString;
|
|
1436
|
+
role: z.ZodString;
|
|
1437
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
1438
|
+
width: z.ZodNumber;
|
|
1439
|
+
height: z.ZodNumber;
|
|
1440
|
+
}, z.core.$strip>>;
|
|
1441
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
1442
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
1443
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
1444
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
1445
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
1446
|
+
}, z.core.$strip>>;
|
|
1447
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1448
|
+
render_id: z.ZodString;
|
|
1449
|
+
preview_url: z.ZodString;
|
|
1450
|
+
role: z.ZodString;
|
|
1451
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
1452
|
+
width: z.ZodNumber;
|
|
1453
|
+
height: z.ZodNumber;
|
|
1454
|
+
}, z.core.$strip>>;
|
|
1455
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
1456
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
1457
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
1458
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
1459
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
1460
|
+
}, z.core.$strip>>;
|
|
1461
|
+
}, z.core.$strip>>;
|
|
1462
|
+
input: z.ZodObject<{
|
|
1463
|
+
name: z.ZodString;
|
|
1464
|
+
macros: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1465
|
+
context_description: z.ZodOptional<z.ZodString>;
|
|
1466
|
+
}, z.core.$strip>;
|
|
1467
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1468
|
+
preview_id: z.ZodString;
|
|
1469
|
+
renders: z.ZodTuple<[z.ZodObject<{
|
|
1470
|
+
render_id: z.ZodString;
|
|
1471
|
+
preview_url: z.ZodString;
|
|
1472
|
+
role: z.ZodString;
|
|
1473
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
1474
|
+
width: z.ZodNumber;
|
|
1475
|
+
height: z.ZodNumber;
|
|
1476
|
+
}, z.core.$strip>>;
|
|
1477
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
1478
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
1479
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
1480
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
1481
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
1482
|
+
}, z.core.$strip>>;
|
|
1483
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1484
|
+
render_id: z.ZodString;
|
|
1485
|
+
preview_url: z.ZodString;
|
|
1486
|
+
role: z.ZodString;
|
|
1487
|
+
dimensions: z.ZodOptional<z.ZodObject<{
|
|
1488
|
+
width: z.ZodNumber;
|
|
1489
|
+
height: z.ZodNumber;
|
|
1490
|
+
}, z.core.$strip>>;
|
|
1491
|
+
embedding: z.ZodOptional<z.ZodObject<{
|
|
1492
|
+
recommended_sandbox: z.ZodOptional<z.ZodString>;
|
|
1493
|
+
requires_https: z.ZodOptional<z.ZodBoolean>;
|
|
1494
|
+
supports_fullscreen: z.ZodOptional<z.ZodBoolean>;
|
|
1495
|
+
csp_policy: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
}, z.core.$strip>>;
|
|
1497
|
+
}, z.core.$strip>>;
|
|
1498
|
+
input: z.ZodObject<{
|
|
1499
|
+
name: z.ZodString;
|
|
1500
|
+
macros: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1501
|
+
context_description: z.ZodOptional<z.ZodString>;
|
|
1502
|
+
}, z.core.$strip>;
|
|
1503
|
+
}, z.core.$strip>>;
|
|
1504
|
+
interactive_url: z.ZodOptional<z.ZodString>;
|
|
1505
|
+
expires_at: z.ZodString;
|
|
1506
|
+
}, z.core.$strip>;
|
|
1281
1507
|
export declare const GetSignalsRequestSchema: z.ZodObject<{
|
|
1282
1508
|
signal_spec: z.ZodString;
|
|
1283
1509
|
deliver_to: z.ZodObject<{
|
|
1284
|
-
platforms: z.
|
|
1510
|
+
platforms: z.ZodUnion<readonly [z.ZodLiteral<"all">, z.ZodArray<z.ZodString>]>;
|
|
1285
1511
|
accounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1286
1512
|
platform: z.ZodString;
|
|
1287
1513
|
account: z.ZodString;
|
|
1288
|
-
},
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
}, {
|
|
1292
|
-
platform: string;
|
|
1293
|
-
account: string;
|
|
1294
|
-
}>, "many">>;
|
|
1295
|
-
countries: z.ZodArray<z.ZodString, "many">;
|
|
1296
|
-
}, "strict", z.ZodTypeAny, {
|
|
1297
|
-
countries: string[];
|
|
1298
|
-
platforms?: any;
|
|
1299
|
-
accounts?: {
|
|
1300
|
-
platform: string;
|
|
1301
|
-
account: string;
|
|
1302
|
-
}[] | undefined;
|
|
1303
|
-
}, {
|
|
1304
|
-
countries: string[];
|
|
1305
|
-
platforms?: any;
|
|
1306
|
-
accounts?: {
|
|
1307
|
-
platform: string;
|
|
1308
|
-
account: string;
|
|
1309
|
-
}[] | undefined;
|
|
1310
|
-
}>;
|
|
1514
|
+
}, z.core.$strip>>>;
|
|
1515
|
+
countries: z.ZodArray<z.ZodString>;
|
|
1516
|
+
}, z.core.$strip>;
|
|
1311
1517
|
filters: z.ZodOptional<z.ZodObject<{
|
|
1312
|
-
catalog_types: z.ZodOptional<z.ZodArray<z.
|
|
1313
|
-
data_providers: z.ZodOptional<z.ZodArray<z.ZodString
|
|
1518
|
+
catalog_types: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"marketplace">, z.ZodLiteral<"custom">, z.ZodLiteral<"owned">]>>>;
|
|
1519
|
+
data_providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1314
1520
|
max_cpm: z.ZodOptional<z.ZodNumber>;
|
|
1315
1521
|
min_coverage_percentage: z.ZodOptional<z.ZodNumber>;
|
|
1316
|
-
},
|
|
1317
|
-
catalog_types?: ("custom" | "marketplace" | "owned")[] | undefined;
|
|
1318
|
-
data_providers?: string[] | undefined;
|
|
1319
|
-
max_cpm?: number | undefined;
|
|
1320
|
-
min_coverage_percentage?: number | undefined;
|
|
1321
|
-
}, {
|
|
1322
|
-
catalog_types?: ("custom" | "marketplace" | "owned")[] | undefined;
|
|
1323
|
-
data_providers?: string[] | undefined;
|
|
1324
|
-
max_cpm?: number | undefined;
|
|
1325
|
-
min_coverage_percentage?: number | undefined;
|
|
1326
|
-
}>>;
|
|
1522
|
+
}, z.core.$strip>>;
|
|
1327
1523
|
max_results: z.ZodOptional<z.ZodNumber>;
|
|
1328
|
-
},
|
|
1329
|
-
signal_spec: string;
|
|
1330
|
-
deliver_to: {
|
|
1331
|
-
countries: string[];
|
|
1332
|
-
platforms?: any;
|
|
1333
|
-
accounts?: {
|
|
1334
|
-
platform: string;
|
|
1335
|
-
account: string;
|
|
1336
|
-
}[] | undefined;
|
|
1337
|
-
};
|
|
1338
|
-
filters?: {
|
|
1339
|
-
catalog_types?: ("custom" | "marketplace" | "owned")[] | undefined;
|
|
1340
|
-
data_providers?: string[] | undefined;
|
|
1341
|
-
max_cpm?: number | undefined;
|
|
1342
|
-
min_coverage_percentage?: number | undefined;
|
|
1343
|
-
} | undefined;
|
|
1344
|
-
max_results?: number | undefined;
|
|
1345
|
-
}, {
|
|
1346
|
-
signal_spec: string;
|
|
1347
|
-
deliver_to: {
|
|
1348
|
-
countries: string[];
|
|
1349
|
-
platforms?: any;
|
|
1350
|
-
accounts?: {
|
|
1351
|
-
platform: string;
|
|
1352
|
-
account: string;
|
|
1353
|
-
}[] | undefined;
|
|
1354
|
-
};
|
|
1355
|
-
filters?: {
|
|
1356
|
-
catalog_types?: ("custom" | "marketplace" | "owned")[] | undefined;
|
|
1357
|
-
data_providers?: string[] | undefined;
|
|
1358
|
-
max_cpm?: number | undefined;
|
|
1359
|
-
min_coverage_percentage?: number | undefined;
|
|
1360
|
-
} | undefined;
|
|
1361
|
-
max_results?: number | undefined;
|
|
1362
|
-
}>;
|
|
1524
|
+
}, z.core.$strip>;
|
|
1363
1525
|
export declare const GetSignalsResponseSchema: z.ZodObject<{
|
|
1364
1526
|
signals: z.ZodArray<z.ZodObject<{
|
|
1365
1527
|
signal_agent_segment_id: z.ZodString;
|
|
1366
1528
|
name: z.ZodString;
|
|
1367
1529
|
description: z.ZodString;
|
|
1368
|
-
signal_type: z.
|
|
1530
|
+
signal_type: z.ZodUnion<readonly [z.ZodLiteral<"marketplace">, z.ZodLiteral<"custom">, z.ZodLiteral<"owned">]>;
|
|
1369
1531
|
data_provider: z.ZodString;
|
|
1370
1532
|
coverage_percentage: z.ZodNumber;
|
|
1371
1533
|
deployments: z.ZodArray<z.ZodObject<{
|
|
1372
1534
|
platform: z.ZodString;
|
|
1373
|
-
account: z.
|
|
1535
|
+
account: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1374
1536
|
is_live: z.ZodBoolean;
|
|
1375
|
-
scope: z.
|
|
1537
|
+
scope: z.ZodUnion<readonly [z.ZodLiteral<"platform-wide">, z.ZodLiteral<"account-specific">]>;
|
|
1376
1538
|
decisioning_platform_segment_id: z.ZodOptional<z.ZodString>;
|
|
1377
1539
|
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
1378
|
-
},
|
|
1379
|
-
platform: string;
|
|
1380
|
-
is_live: boolean;
|
|
1381
|
-
scope: "platform-wide" | "account-specific";
|
|
1382
|
-
account?: string | null | undefined;
|
|
1383
|
-
decisioning_platform_segment_id?: string | undefined;
|
|
1384
|
-
estimated_activation_duration_minutes?: number | undefined;
|
|
1385
|
-
}, {
|
|
1386
|
-
platform: string;
|
|
1387
|
-
is_live: boolean;
|
|
1388
|
-
scope: "platform-wide" | "account-specific";
|
|
1389
|
-
account?: string | null | undefined;
|
|
1390
|
-
decisioning_platform_segment_id?: string | undefined;
|
|
1391
|
-
estimated_activation_duration_minutes?: number | undefined;
|
|
1392
|
-
}>, "many">;
|
|
1540
|
+
}, z.core.$strip>>;
|
|
1393
1541
|
pricing: z.ZodObject<{
|
|
1394
1542
|
cpm: z.ZodNumber;
|
|
1395
1543
|
currency: z.ZodString;
|
|
1396
|
-
},
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
signal_type: "custom" | "marketplace" | "owned";
|
|
1408
|
-
data_provider: string;
|
|
1409
|
-
coverage_percentage: number;
|
|
1410
|
-
deployments: {
|
|
1411
|
-
platform: string;
|
|
1412
|
-
is_live: boolean;
|
|
1413
|
-
scope: "platform-wide" | "account-specific";
|
|
1414
|
-
account?: string | null | undefined;
|
|
1415
|
-
decisioning_platform_segment_id?: string | undefined;
|
|
1416
|
-
estimated_activation_duration_minutes?: number | undefined;
|
|
1417
|
-
}[];
|
|
1418
|
-
pricing: {
|
|
1419
|
-
cpm: number;
|
|
1420
|
-
currency: string;
|
|
1421
|
-
};
|
|
1422
|
-
}, {
|
|
1423
|
-
name: string;
|
|
1424
|
-
description: string;
|
|
1425
|
-
signal_agent_segment_id: string;
|
|
1426
|
-
signal_type: "custom" | "marketplace" | "owned";
|
|
1427
|
-
data_provider: string;
|
|
1428
|
-
coverage_percentage: number;
|
|
1429
|
-
deployments: {
|
|
1430
|
-
platform: string;
|
|
1431
|
-
is_live: boolean;
|
|
1432
|
-
scope: "platform-wide" | "account-specific";
|
|
1433
|
-
account?: string | null | undefined;
|
|
1434
|
-
decisioning_platform_segment_id?: string | undefined;
|
|
1435
|
-
estimated_activation_duration_minutes?: number | undefined;
|
|
1436
|
-
}[];
|
|
1437
|
-
pricing: {
|
|
1438
|
-
cpm: number;
|
|
1439
|
-
currency: string;
|
|
1440
|
-
};
|
|
1441
|
-
}>, "many">;
|
|
1442
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
1443
|
-
}, "strict", z.ZodTypeAny, {
|
|
1444
|
-
signals: {
|
|
1445
|
-
name: string;
|
|
1446
|
-
description: string;
|
|
1447
|
-
signal_agent_segment_id: string;
|
|
1448
|
-
signal_type: "custom" | "marketplace" | "owned";
|
|
1449
|
-
data_provider: string;
|
|
1450
|
-
coverage_percentage: number;
|
|
1451
|
-
deployments: {
|
|
1452
|
-
platform: string;
|
|
1453
|
-
is_live: boolean;
|
|
1454
|
-
scope: "platform-wide" | "account-specific";
|
|
1455
|
-
account?: string | null | undefined;
|
|
1456
|
-
decisioning_platform_segment_id?: string | undefined;
|
|
1457
|
-
estimated_activation_duration_minutes?: number | undefined;
|
|
1458
|
-
}[];
|
|
1459
|
-
pricing: {
|
|
1460
|
-
cpm: number;
|
|
1461
|
-
currency: string;
|
|
1462
|
-
};
|
|
1463
|
-
}[];
|
|
1464
|
-
errors?: any[] | undefined;
|
|
1465
|
-
}, {
|
|
1466
|
-
signals: {
|
|
1467
|
-
name: string;
|
|
1468
|
-
description: string;
|
|
1469
|
-
signal_agent_segment_id: string;
|
|
1470
|
-
signal_type: "custom" | "marketplace" | "owned";
|
|
1471
|
-
data_provider: string;
|
|
1472
|
-
coverage_percentage: number;
|
|
1473
|
-
deployments: {
|
|
1474
|
-
platform: string;
|
|
1475
|
-
is_live: boolean;
|
|
1476
|
-
scope: "platform-wide" | "account-specific";
|
|
1477
|
-
account?: string | null | undefined;
|
|
1478
|
-
decisioning_platform_segment_id?: string | undefined;
|
|
1479
|
-
estimated_activation_duration_minutes?: number | undefined;
|
|
1480
|
-
}[];
|
|
1481
|
-
pricing: {
|
|
1482
|
-
cpm: number;
|
|
1483
|
-
currency: string;
|
|
1484
|
-
};
|
|
1485
|
-
}[];
|
|
1486
|
-
errors?: any[] | undefined;
|
|
1487
|
-
}>;
|
|
1544
|
+
}, z.core.$strip>;
|
|
1545
|
+
}, z.core.$strip>>;
|
|
1546
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1547
|
+
code: z.ZodString;
|
|
1548
|
+
message: z.ZodString;
|
|
1549
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1550
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1551
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1552
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1553
|
+
}, z.core.$strip>>>;
|
|
1554
|
+
}, z.core.$strip>;
|
|
1488
1555
|
export declare const ActivateSignalRequestSchema: z.ZodObject<{
|
|
1489
1556
|
signal_agent_segment_id: z.ZodString;
|
|
1490
1557
|
platform: z.ZodString;
|
|
1491
1558
|
account: z.ZodOptional<z.ZodString>;
|
|
1492
|
-
},
|
|
1493
|
-
platform: string;
|
|
1494
|
-
signal_agent_segment_id: string;
|
|
1495
|
-
account?: string | undefined;
|
|
1496
|
-
}, {
|
|
1497
|
-
platform: string;
|
|
1498
|
-
signal_agent_segment_id: string;
|
|
1499
|
-
account?: string | undefined;
|
|
1500
|
-
}>;
|
|
1559
|
+
}, z.core.$strip>;
|
|
1501
1560
|
export declare const ActivateSignalResponseSchema: z.ZodObject<{
|
|
1502
1561
|
decisioning_platform_segment_id: z.ZodOptional<z.ZodString>;
|
|
1503
1562
|
estimated_activation_duration_minutes: z.ZodOptional<z.ZodNumber>;
|
|
1504
1563
|
deployed_at: z.ZodOptional<z.ZodString>;
|
|
1505
|
-
errors: z.ZodOptional<z.ZodArray<z.
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1564
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1565
|
+
code: z.ZodString;
|
|
1566
|
+
message: z.ZodString;
|
|
1567
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1568
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1569
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1570
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1571
|
+
}, z.core.$strip>>>;
|
|
1572
|
+
}, z.core.$strip>;
|
|
1573
|
+
export declare const FormatSchema: z.ZodObject<{
|
|
1574
|
+
format_id: z.ZodObject<{
|
|
1575
|
+
agent_url: z.ZodString;
|
|
1576
|
+
id: z.ZodString;
|
|
1577
|
+
}, z.core.$strip>;
|
|
1578
|
+
name: z.ZodString;
|
|
1579
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1580
|
+
preview_image: z.ZodOptional<z.ZodString>;
|
|
1581
|
+
example_url: z.ZodOptional<z.ZodString>;
|
|
1582
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"audio">, z.ZodLiteral<"video">, z.ZodLiteral<"display">, z.ZodLiteral<"native">, z.ZodLiteral<"dooh">, z.ZodLiteral<"rich_media">, z.ZodLiteral<"universal">]>;
|
|
1583
|
+
renders: z.ZodOptional<z.ZodTuple<[z.ZodObject<{
|
|
1584
|
+
role: z.ZodString;
|
|
1585
|
+
dimensions: z.ZodObject<{
|
|
1586
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1587
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1588
|
+
min_width: z.ZodOptional<z.ZodNumber>;
|
|
1589
|
+
min_height: z.ZodOptional<z.ZodNumber>;
|
|
1590
|
+
max_width: z.ZodOptional<z.ZodNumber>;
|
|
1591
|
+
max_height: z.ZodOptional<z.ZodNumber>;
|
|
1592
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1593
|
+
width: z.ZodBoolean;
|
|
1594
|
+
height: z.ZodBoolean;
|
|
1595
|
+
}, z.core.$strip>>;
|
|
1596
|
+
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
1597
|
+
unit: z.ZodUnion<readonly [z.ZodLiteral<"px">, z.ZodLiteral<"dp">, z.ZodLiteral<"inches">, z.ZodLiteral<"cm">]>;
|
|
1598
|
+
}, z.core.$strip>;
|
|
1599
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1600
|
+
role: z.ZodString;
|
|
1601
|
+
dimensions: z.ZodObject<{
|
|
1602
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1603
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1604
|
+
min_width: z.ZodOptional<z.ZodNumber>;
|
|
1605
|
+
min_height: z.ZodOptional<z.ZodNumber>;
|
|
1606
|
+
max_width: z.ZodOptional<z.ZodNumber>;
|
|
1607
|
+
max_height: z.ZodOptional<z.ZodNumber>;
|
|
1608
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1609
|
+
width: z.ZodBoolean;
|
|
1610
|
+
height: z.ZodBoolean;
|
|
1611
|
+
}, z.core.$strip>>;
|
|
1612
|
+
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
1613
|
+
unit: z.ZodUnion<readonly [z.ZodLiteral<"px">, z.ZodLiteral<"dp">, z.ZodLiteral<"inches">, z.ZodLiteral<"cm">]>;
|
|
1614
|
+
}, z.core.$strip>;
|
|
1615
|
+
}, z.core.$strip>>>;
|
|
1616
|
+
assets_required: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1617
|
+
asset_id: z.ZodString;
|
|
1618
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"text">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">, z.ZodLiteral<"promoted_offerings">]>;
|
|
1619
|
+
asset_role: z.ZodOptional<z.ZodString>;
|
|
1620
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1621
|
+
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1622
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1623
|
+
asset_group_id: z.ZodString;
|
|
1624
|
+
repeatable: z.ZodLiteral<true>;
|
|
1625
|
+
min_count: z.ZodNumber;
|
|
1626
|
+
max_count: z.ZodNumber;
|
|
1627
|
+
assets: z.ZodArray<z.ZodObject<{
|
|
1628
|
+
asset_id: z.ZodString;
|
|
1629
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"text">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">, z.ZodLiteral<"promoted_offerings">]>;
|
|
1630
|
+
asset_role: z.ZodOptional<z.ZodString>;
|
|
1631
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1632
|
+
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1633
|
+
}, z.core.$strip>>;
|
|
1634
|
+
}, z.core.$strip>]>>>;
|
|
1635
|
+
delivery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1636
|
+
supported_macros: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1637
|
+
output_format_ids: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1638
|
+
agent_url: z.ZodString;
|
|
1639
|
+
id: z.ZodString;
|
|
1640
|
+
}, z.core.$strip>>>;
|
|
1641
|
+
}, z.core.$strip>;
|
|
1642
|
+
export declare const ListCreativesRequestSchema: z.ZodObject<{
|
|
1643
|
+
filters: z.ZodOptional<z.ZodObject<{
|
|
1644
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1645
|
+
formats: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1646
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>>;
|
|
1647
|
+
statuses: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>>>;
|
|
1648
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1649
|
+
tags_any: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1650
|
+
name_contains: z.ZodOptional<z.ZodString>;
|
|
1651
|
+
creative_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1652
|
+
created_after: z.ZodOptional<z.ZodString>;
|
|
1653
|
+
created_before: z.ZodOptional<z.ZodString>;
|
|
1654
|
+
updated_after: z.ZodOptional<z.ZodString>;
|
|
1655
|
+
updated_before: z.ZodOptional<z.ZodString>;
|
|
1656
|
+
assigned_to_package: z.ZodOptional<z.ZodString>;
|
|
1657
|
+
assigned_to_packages: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1658
|
+
unassigned: z.ZodOptional<z.ZodBoolean>;
|
|
1659
|
+
has_performance_data: z.ZodOptional<z.ZodBoolean>;
|
|
1660
|
+
}, z.core.$strip>>;
|
|
1661
|
+
sort: z.ZodOptional<z.ZodObject<{
|
|
1662
|
+
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">]>>;
|
|
1663
|
+
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asc">, z.ZodLiteral<"desc">]>>;
|
|
1664
|
+
}, z.core.$strip>>;
|
|
1665
|
+
pagination: z.ZodOptional<z.ZodObject<{
|
|
1666
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
1667
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
1668
|
+
}, z.core.$strip>>;
|
|
1669
|
+
include_assignments: z.ZodOptional<z.ZodBoolean>;
|
|
1670
|
+
include_performance: z.ZodOptional<z.ZodBoolean>;
|
|
1671
|
+
include_sub_assets: z.ZodOptional<z.ZodBoolean>;
|
|
1672
|
+
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">]>>>;
|
|
1673
|
+
}, z.core.$strip>;
|
|
1674
|
+
export declare const UpdateMediaBuyRequestSchema: z.ZodIntersection<z.ZodObject<{
|
|
1675
|
+
media_buy_id: z.ZodOptional<z.ZodString>;
|
|
1676
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
1677
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
1678
|
+
start_time: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>>;
|
|
1679
|
+
end_time: z.ZodOptional<z.ZodString>;
|
|
1680
|
+
budget: z.ZodOptional<z.ZodNumber>;
|
|
1681
|
+
packages: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
|
|
1682
|
+
push_notification_config: z.ZodOptional<z.ZodObject<{
|
|
1683
|
+
url: z.ZodString;
|
|
1684
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1685
|
+
authentication: z.ZodObject<{
|
|
1686
|
+
schemes: z.ZodTuple<[z.ZodUnion<readonly [z.ZodLiteral<"Bearer">, z.ZodLiteral<"HMAC-SHA256">]>], null>;
|
|
1687
|
+
credentials: z.ZodString;
|
|
1688
|
+
}, z.core.$strip>;
|
|
1689
|
+
}, z.core.$strip>>;
|
|
1690
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1691
|
+
export declare const GetMediaBuyDeliveryResponseSchema: z.ZodObject<{
|
|
1692
|
+
notification_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"scheduled">, z.ZodLiteral<"final">, z.ZodLiteral<"delayed">, z.ZodLiteral<"adjusted">]>>;
|
|
1693
|
+
partial_data: z.ZodOptional<z.ZodBoolean>;
|
|
1694
|
+
unavailable_count: z.ZodOptional<z.ZodNumber>;
|
|
1695
|
+
sequence_number: z.ZodOptional<z.ZodNumber>;
|
|
1696
|
+
next_expected_at: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
reporting_period: z.ZodObject<{
|
|
1698
|
+
start: z.ZodString;
|
|
1699
|
+
end: z.ZodString;
|
|
1700
|
+
}, z.core.$strip>;
|
|
1701
|
+
currency: z.ZodString;
|
|
1702
|
+
aggregated_totals: z.ZodOptional<z.ZodObject<{
|
|
1703
|
+
impressions: z.ZodNumber;
|
|
1704
|
+
spend: z.ZodNumber;
|
|
1705
|
+
clicks: z.ZodOptional<z.ZodNumber>;
|
|
1706
|
+
video_completions: z.ZodOptional<z.ZodNumber>;
|
|
1707
|
+
media_buy_count: z.ZodNumber;
|
|
1708
|
+
}, z.core.$strip>>;
|
|
1709
|
+
media_buy_deliveries: z.ZodArray<z.ZodObject<{
|
|
1710
|
+
media_buy_id: z.ZodString;
|
|
1711
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
1712
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"pending">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">, z.ZodLiteral<"failed">, z.ZodLiteral<"reporting_delayed">]>;
|
|
1713
|
+
expected_availability: z.ZodOptional<z.ZodString>;
|
|
1714
|
+
is_adjusted: z.ZodOptional<z.ZodBoolean>;
|
|
1715
|
+
pricing_model: z.ZodOptional<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">]>>;
|
|
1716
|
+
totals: z.ZodIntersection<z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1717
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
1718
|
+
spend: z.ZodOptional<z.ZodNumber>;
|
|
1719
|
+
clicks: z.ZodOptional<z.ZodNumber>;
|
|
1720
|
+
ctr: z.ZodOptional<z.ZodNumber>;
|
|
1721
|
+
views: z.ZodOptional<z.ZodNumber>;
|
|
1722
|
+
completed_views: z.ZodOptional<z.ZodNumber>;
|
|
1723
|
+
completion_rate: z.ZodOptional<z.ZodNumber>;
|
|
1724
|
+
conversions: z.ZodOptional<z.ZodNumber>;
|
|
1725
|
+
leads: z.ZodOptional<z.ZodNumber>;
|
|
1726
|
+
grps: z.ZodOptional<z.ZodNumber>;
|
|
1727
|
+
reach: z.ZodOptional<z.ZodNumber>;
|
|
1728
|
+
frequency: z.ZodOptional<z.ZodNumber>;
|
|
1729
|
+
quartile_data: z.ZodOptional<z.ZodObject<{
|
|
1730
|
+
q1_views: z.ZodOptional<z.ZodNumber>;
|
|
1731
|
+
q2_views: z.ZodOptional<z.ZodNumber>;
|
|
1732
|
+
q3_views: z.ZodOptional<z.ZodNumber>;
|
|
1733
|
+
q4_views: z.ZodOptional<z.ZodNumber>;
|
|
1734
|
+
}, z.core.$strip>>;
|
|
1735
|
+
dooh_metrics: z.ZodOptional<z.ZodObject<{
|
|
1736
|
+
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1737
|
+
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1738
|
+
screen_time_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1739
|
+
sov_achieved: z.ZodOptional<z.ZodNumber>;
|
|
1740
|
+
calculation_notes: z.ZodOptional<z.ZodString>;
|
|
1741
|
+
venue_breakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1742
|
+
venue_id: z.ZodString;
|
|
1743
|
+
venue_name: z.ZodOptional<z.ZodString>;
|
|
1744
|
+
venue_type: z.ZodOptional<z.ZodString>;
|
|
1745
|
+
impressions: z.ZodNumber;
|
|
1746
|
+
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1747
|
+
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1748
|
+
}, z.core.$strip>>>;
|
|
1749
|
+
}, z.core.$strip>>;
|
|
1750
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
1751
|
+
effective_rate: z.ZodOptional<z.ZodNumber>;
|
|
1752
|
+
}, z.core.$strip>>;
|
|
1753
|
+
by_package: z.ZodArray<z.ZodIntersection<z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
1754
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
1755
|
+
spend: z.ZodOptional<z.ZodNumber>;
|
|
1756
|
+
clicks: z.ZodOptional<z.ZodNumber>;
|
|
1757
|
+
ctr: z.ZodOptional<z.ZodNumber>;
|
|
1758
|
+
views: z.ZodOptional<z.ZodNumber>;
|
|
1759
|
+
completed_views: z.ZodOptional<z.ZodNumber>;
|
|
1760
|
+
completion_rate: z.ZodOptional<z.ZodNumber>;
|
|
1761
|
+
conversions: z.ZodOptional<z.ZodNumber>;
|
|
1762
|
+
leads: z.ZodOptional<z.ZodNumber>;
|
|
1763
|
+
grps: z.ZodOptional<z.ZodNumber>;
|
|
1764
|
+
reach: z.ZodOptional<z.ZodNumber>;
|
|
1765
|
+
frequency: z.ZodOptional<z.ZodNumber>;
|
|
1766
|
+
quartile_data: z.ZodOptional<z.ZodObject<{
|
|
1767
|
+
q1_views: z.ZodOptional<z.ZodNumber>;
|
|
1768
|
+
q2_views: z.ZodOptional<z.ZodNumber>;
|
|
1769
|
+
q3_views: z.ZodOptional<z.ZodNumber>;
|
|
1770
|
+
q4_views: z.ZodOptional<z.ZodNumber>;
|
|
1771
|
+
}, z.core.$strip>>;
|
|
1772
|
+
dooh_metrics: z.ZodOptional<z.ZodObject<{
|
|
1773
|
+
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1774
|
+
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1775
|
+
screen_time_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1776
|
+
sov_achieved: z.ZodOptional<z.ZodNumber>;
|
|
1777
|
+
calculation_notes: z.ZodOptional<z.ZodString>;
|
|
1778
|
+
venue_breakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1779
|
+
venue_id: z.ZodString;
|
|
1780
|
+
venue_name: z.ZodOptional<z.ZodString>;
|
|
1781
|
+
venue_type: z.ZodOptional<z.ZodString>;
|
|
1782
|
+
impressions: z.ZodNumber;
|
|
1783
|
+
loop_plays: z.ZodOptional<z.ZodNumber>;
|
|
1784
|
+
screens_used: z.ZodOptional<z.ZodNumber>;
|
|
1785
|
+
}, z.core.$strip>>>;
|
|
1786
|
+
}, z.core.$strip>>;
|
|
1787
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
1788
|
+
package_id: z.ZodString;
|
|
1789
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
1790
|
+
pacing_index: z.ZodOptional<z.ZodNumber>;
|
|
1791
|
+
}, z.core.$strip>>>;
|
|
1792
|
+
daily_breakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1793
|
+
date: z.ZodString;
|
|
1794
|
+
impressions: z.ZodNumber;
|
|
1795
|
+
spend: z.ZodNumber;
|
|
1796
|
+
}, z.core.$strip>>>;
|
|
1797
|
+
}, z.core.$strip>>;
|
|
1798
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1799
|
+
code: z.ZodString;
|
|
1800
|
+
message: z.ZodString;
|
|
1801
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1802
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1803
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1804
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1805
|
+
}, z.core.$strip>>>;
|
|
1806
|
+
}, z.core.$strip>;
|
|
1807
|
+
export declare const ListCreativeFormatsResponseSchema: z.ZodObject<{
|
|
1808
|
+
formats: z.ZodArray<z.ZodObject<{
|
|
1809
|
+
format_id: z.ZodObject<{
|
|
1810
|
+
agent_url: z.ZodString;
|
|
1811
|
+
id: z.ZodString;
|
|
1812
|
+
}, z.core.$strip>;
|
|
1813
|
+
name: z.ZodString;
|
|
1814
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1815
|
+
preview_image: z.ZodOptional<z.ZodString>;
|
|
1816
|
+
example_url: z.ZodOptional<z.ZodString>;
|
|
1817
|
+
type: z.ZodUnion<readonly [z.ZodLiteral<"audio">, z.ZodLiteral<"video">, z.ZodLiteral<"display">, z.ZodLiteral<"native">, z.ZodLiteral<"dooh">, z.ZodLiteral<"rich_media">, z.ZodLiteral<"universal">]>;
|
|
1818
|
+
renders: z.ZodOptional<z.ZodTuple<[z.ZodObject<{
|
|
1819
|
+
role: z.ZodString;
|
|
1820
|
+
dimensions: z.ZodObject<{
|
|
1821
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1822
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1823
|
+
min_width: z.ZodOptional<z.ZodNumber>;
|
|
1824
|
+
min_height: z.ZodOptional<z.ZodNumber>;
|
|
1825
|
+
max_width: z.ZodOptional<z.ZodNumber>;
|
|
1826
|
+
max_height: z.ZodOptional<z.ZodNumber>;
|
|
1827
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1828
|
+
width: z.ZodBoolean;
|
|
1829
|
+
height: z.ZodBoolean;
|
|
1830
|
+
}, z.core.$strip>>;
|
|
1831
|
+
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
1832
|
+
unit: z.ZodUnion<readonly [z.ZodLiteral<"px">, z.ZodLiteral<"dp">, z.ZodLiteral<"inches">, z.ZodLiteral<"cm">]>;
|
|
1833
|
+
}, z.core.$strip>;
|
|
1834
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
1835
|
+
role: z.ZodString;
|
|
1836
|
+
dimensions: z.ZodObject<{
|
|
1837
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1838
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1839
|
+
min_width: z.ZodOptional<z.ZodNumber>;
|
|
1840
|
+
min_height: z.ZodOptional<z.ZodNumber>;
|
|
1841
|
+
max_width: z.ZodOptional<z.ZodNumber>;
|
|
1842
|
+
max_height: z.ZodOptional<z.ZodNumber>;
|
|
1843
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1844
|
+
width: z.ZodBoolean;
|
|
1845
|
+
height: z.ZodBoolean;
|
|
1846
|
+
}, z.core.$strip>>;
|
|
1847
|
+
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
1848
|
+
unit: z.ZodUnion<readonly [z.ZodLiteral<"px">, z.ZodLiteral<"dp">, z.ZodLiteral<"inches">, z.ZodLiteral<"cm">]>;
|
|
1849
|
+
}, z.core.$strip>;
|
|
1850
|
+
}, z.core.$strip>>>;
|
|
1851
|
+
assets_required: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1852
|
+
asset_id: z.ZodString;
|
|
1853
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"text">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">, z.ZodLiteral<"promoted_offerings">]>;
|
|
1854
|
+
asset_role: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1856
|
+
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1857
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1858
|
+
asset_group_id: z.ZodString;
|
|
1859
|
+
repeatable: z.ZodLiteral<true>;
|
|
1860
|
+
min_count: z.ZodNumber;
|
|
1861
|
+
max_count: z.ZodNumber;
|
|
1862
|
+
assets: z.ZodArray<z.ZodObject<{
|
|
1863
|
+
asset_id: z.ZodString;
|
|
1864
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"text">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">, z.ZodLiteral<"promoted_offerings">]>;
|
|
1865
|
+
asset_role: z.ZodOptional<z.ZodString>;
|
|
1866
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1867
|
+
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1868
|
+
}, z.core.$strip>>;
|
|
1869
|
+
}, z.core.$strip>]>>>;
|
|
1870
|
+
delivery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1871
|
+
supported_macros: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1872
|
+
output_format_ids: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1873
|
+
agent_url: z.ZodString;
|
|
1874
|
+
id: z.ZodString;
|
|
1875
|
+
}, z.core.$strip>>>;
|
|
1876
|
+
}, z.core.$strip>>;
|
|
1877
|
+
creative_agents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1878
|
+
agent_url: z.ZodString;
|
|
1879
|
+
agent_name: z.ZodOptional<z.ZodString>;
|
|
1880
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"validation">, z.ZodLiteral<"assembly">, z.ZodLiteral<"generation">, z.ZodLiteral<"preview">]>>>;
|
|
1881
|
+
}, z.core.$strip>>>;
|
|
1882
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1883
|
+
code: z.ZodString;
|
|
1884
|
+
message: z.ZodString;
|
|
1885
|
+
field: z.ZodOptional<z.ZodString>;
|
|
1886
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
1887
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
1888
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1889
|
+
}, z.core.$strip>>>;
|
|
1890
|
+
}, z.core.$strip>;
|
|
1517
1891
|
//# sourceMappingURL=schemas.generated.d.ts.map
|