@adcp/client 3.0.2 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/auth/index.d.ts +8 -3
- package/dist/lib/auth/index.d.ts.map +1 -1
- package/dist/lib/auth/index.js +32 -6
- package/dist/lib/auth/index.js.map +1 -1
- package/dist/lib/core/AgentClient.d.ts.map +1 -1
- package/dist/lib/core/ConfigurationManager.d.ts.map +1 -1
- package/dist/lib/core/ConfigurationManager.js +14 -1
- package/dist/lib/core/ConfigurationManager.js.map +1 -1
- package/dist/lib/core/SingleAgentClient.d.ts +6 -0
- package/dist/lib/core/SingleAgentClient.d.ts.map +1 -1
- package/dist/lib/core/SingleAgentClient.js +15 -2
- package/dist/lib/core/SingleAgentClient.js.map +1 -1
- package/dist/lib/core/TaskExecutor.d.ts.map +1 -1
- package/dist/lib/core/TaskExecutor.js.map +1 -1
- package/dist/lib/discovery/types.d.ts +7 -6
- package/dist/lib/discovery/types.d.ts.map +1 -1
- package/dist/lib/protocols/a2a.d.ts.map +1 -1
- package/dist/lib/protocols/a2a.js +2 -2
- package/dist/lib/protocols/a2a.js.map +1 -1
- package/dist/lib/types/adcp.d.ts +3 -58
- package/dist/lib/types/adcp.d.ts.map +1 -1
- package/dist/lib/types/core.generated.d.ts +101 -50
- package/dist/lib/types/core.generated.d.ts.map +1 -1
- package/dist/lib/types/core.generated.js +1 -1
- package/dist/lib/types/schemas.generated.d.ts +490 -276
- package/dist/lib/types/schemas.generated.d.ts.map +1 -1
- package/dist/lib/types/schemas.generated.js +161 -152
- package/dist/lib/types/schemas.generated.js.map +1 -1
- package/dist/lib/types/tools.generated.d.ts +269 -150
- package/dist/lib/types/tools.generated.d.ts.map +1 -1
- package/dist/lib/types/tools.generated.js +1 -1
- package/dist/lib/types/tools.generated.js.map +1 -1
- package/dist/lib/utils/preview-utils.d.ts.map +1 -1
- package/dist/lib/utils/preview-utils.js +2 -0
- package/dist/lib/utils/preview-utils.js.map +1 -1
- package/dist/lib/validation/index.d.ts.map +1 -1
- package/dist/lib/validation/index.js.map +1 -1
- package/package.json +3 -2
|
@@ -44,68 +44,6 @@ export declare const DAASTAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
44
44
|
tracking_events: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"start">, z.ZodLiteral<"firstQuartile">, z.ZodLiteral<"midpoint">, z.ZodLiteral<"thirdQuartile">, z.ZodLiteral<"complete">, z.ZodLiteral<"impression">, z.ZodLiteral<"pause">, z.ZodLiteral<"resume">, z.ZodLiteral<"skip">, z.ZodLiteral<"mute">, z.ZodLiteral<"unmute">]>>>;
|
|
45
45
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
46
46
|
}, z.core.$strip>]>;
|
|
47
|
-
export declare const BrandManifest1Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
48
|
-
export declare const BrandManifest2Schema: z.ZodObject<{
|
|
49
|
-
url: z.ZodOptional<z.ZodString>;
|
|
50
|
-
name: z.ZodOptional<z.ZodString>;
|
|
51
|
-
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
52
|
-
url: z.ZodString;
|
|
53
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
54
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
55
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
56
|
-
}, z.core.$strip>>>;
|
|
57
|
-
colors: z.ZodOptional<z.ZodObject<{
|
|
58
|
-
primary: z.ZodOptional<z.ZodString>;
|
|
59
|
-
secondary: z.ZodOptional<z.ZodString>;
|
|
60
|
-
accent: z.ZodOptional<z.ZodString>;
|
|
61
|
-
background: z.ZodOptional<z.ZodString>;
|
|
62
|
-
text: z.ZodOptional<z.ZodString>;
|
|
63
|
-
}, z.core.$strip>>;
|
|
64
|
-
fonts: z.ZodOptional<z.ZodObject<{
|
|
65
|
-
primary: z.ZodOptional<z.ZodString>;
|
|
66
|
-
secondary: z.ZodOptional<z.ZodString>;
|
|
67
|
-
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
68
|
-
}, z.core.$strip>>;
|
|
69
|
-
tone: z.ZodOptional<z.ZodString>;
|
|
70
|
-
tagline: z.ZodOptional<z.ZodString>;
|
|
71
|
-
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
72
|
-
asset_id: z.ZodString;
|
|
73
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
74
|
-
url: z.ZodString;
|
|
75
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
76
|
-
name: z.ZodOptional<z.ZodString>;
|
|
77
|
-
description: z.ZodOptional<z.ZodString>;
|
|
78
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
79
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
80
|
-
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
81
|
-
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
82
|
-
format: z.ZodOptional<z.ZodString>;
|
|
83
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
84
|
-
}, z.core.$strip>>>;
|
|
85
|
-
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
86
|
-
feed_url: z.ZodString;
|
|
87
|
-
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
88
|
-
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
89
|
-
last_updated: z.ZodOptional<z.ZodString>;
|
|
90
|
-
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
91
|
-
}, z.core.$strip>>;
|
|
92
|
-
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
93
|
-
text: z.ZodString;
|
|
94
|
-
context: z.ZodOptional<z.ZodString>;
|
|
95
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
96
|
-
}, z.core.$strip>>>;
|
|
97
|
-
industry: z.ZodOptional<z.ZodString>;
|
|
98
|
-
target_audience: z.ZodOptional<z.ZodString>;
|
|
99
|
-
contact: z.ZodOptional<z.ZodObject<{
|
|
100
|
-
email: z.ZodOptional<z.ZodString>;
|
|
101
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
102
|
-
}, z.core.$strip>>;
|
|
103
|
-
metadata: z.ZodOptional<z.ZodObject<{
|
|
104
|
-
created_date: z.ZodOptional<z.ZodString>;
|
|
105
|
-
updated_date: z.ZodOptional<z.ZodString>;
|
|
106
|
-
version: z.ZodOptional<z.ZodString>;
|
|
107
|
-
}, z.core.$strip>>;
|
|
108
|
-
}, z.core.$strip>;
|
|
109
47
|
export declare const ImageAssetSchema: z.ZodObject<{
|
|
110
48
|
url: z.ZodString;
|
|
111
49
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -154,18 +92,21 @@ export declare const PromotedProductsSchema: z.ZodObject<{
|
|
|
154
92
|
manifest_category: z.ZodOptional<z.ZodString>;
|
|
155
93
|
manifest_query: z.ZodOptional<z.ZodString>;
|
|
156
94
|
}, z.core.$strip>;
|
|
95
|
+
export declare const AssetContentTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
157
96
|
export declare const DeliveryTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"guaranteed">, z.ZodLiteral<"non_guaranteed">]>;
|
|
158
97
|
export declare const CPMFixedRatePricingOptionSchema: z.ZodObject<{
|
|
159
98
|
pricing_option_id: z.ZodString;
|
|
160
99
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
161
100
|
rate: z.ZodNumber;
|
|
162
101
|
currency: z.ZodString;
|
|
102
|
+
is_fixed: z.ZodLiteral<true>;
|
|
163
103
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
164
104
|
}, z.core.$strip>;
|
|
165
105
|
export declare const CPMAuctionPricingOptionSchema: z.ZodObject<{
|
|
166
106
|
pricing_option_id: z.ZodString;
|
|
167
107
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
168
108
|
currency: z.ZodString;
|
|
109
|
+
is_fixed: z.ZodLiteral<false>;
|
|
169
110
|
price_guidance: z.ZodObject<{
|
|
170
111
|
floor: z.ZodNumber;
|
|
171
112
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -180,12 +121,14 @@ export declare const VCPMFixedRatePricingOptionSchema: z.ZodObject<{
|
|
|
180
121
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
181
122
|
rate: z.ZodNumber;
|
|
182
123
|
currency: z.ZodString;
|
|
124
|
+
is_fixed: z.ZodLiteral<true>;
|
|
183
125
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
184
126
|
}, z.core.$strip>;
|
|
185
127
|
export declare const VCPMAuctionPricingOptionSchema: z.ZodObject<{
|
|
186
128
|
pricing_option_id: z.ZodString;
|
|
187
129
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
188
130
|
currency: z.ZodString;
|
|
131
|
+
is_fixed: z.ZodLiteral<false>;
|
|
189
132
|
price_guidance: z.ZodObject<{
|
|
190
133
|
floor: z.ZodNumber;
|
|
191
134
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -200,6 +143,7 @@ export declare const CPCPricingOptionSchema: z.ZodObject<{
|
|
|
200
143
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
201
144
|
rate: z.ZodNumber;
|
|
202
145
|
currency: z.ZodString;
|
|
146
|
+
is_fixed: z.ZodLiteral<true>;
|
|
203
147
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
204
148
|
}, z.core.$strip>;
|
|
205
149
|
export declare const CPCVPricingOptionSchema: z.ZodObject<{
|
|
@@ -207,6 +151,7 @@ export declare const CPCVPricingOptionSchema: z.ZodObject<{
|
|
|
207
151
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
208
152
|
rate: z.ZodNumber;
|
|
209
153
|
currency: z.ZodString;
|
|
154
|
+
is_fixed: z.ZodLiteral<true>;
|
|
210
155
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
211
156
|
}, z.core.$strip>;
|
|
212
157
|
export declare const CPVPricingOptionSchema: z.ZodObject<{
|
|
@@ -214,6 +159,7 @@ export declare const CPVPricingOptionSchema: z.ZodObject<{
|
|
|
214
159
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
215
160
|
rate: z.ZodNumber;
|
|
216
161
|
currency: z.ZodString;
|
|
162
|
+
is_fixed: z.ZodLiteral<true>;
|
|
217
163
|
parameters: z.ZodObject<{
|
|
218
164
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
219
165
|
duration_seconds: z.ZodNumber;
|
|
@@ -226,6 +172,7 @@ export declare const CPPPricingOptionSchema: z.ZodObject<{
|
|
|
226
172
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
227
173
|
rate: z.ZodNumber;
|
|
228
174
|
currency: z.ZodString;
|
|
175
|
+
is_fixed: z.ZodLiteral<true>;
|
|
229
176
|
parameters: z.ZodObject<{
|
|
230
177
|
demographic: z.ZodString;
|
|
231
178
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -249,6 +196,18 @@ export declare const FlatRatePricingOptionSchema: z.ZodObject<{
|
|
|
249
196
|
}, z.core.$strip>>;
|
|
250
197
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
251
198
|
}, z.core.$strip>;
|
|
199
|
+
export declare const PublisherPropertySelectorSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
200
|
+
publisher_domain: z.ZodString;
|
|
201
|
+
selection_type: z.ZodLiteral<"all">;
|
|
202
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
203
|
+
publisher_domain: z.ZodString;
|
|
204
|
+
selection_type: z.ZodLiteral<"by_id">;
|
|
205
|
+
property_ids: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
206
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
207
|
+
publisher_domain: z.ZodString;
|
|
208
|
+
selection_type: z.ZodLiteral<"by_tag">;
|
|
209
|
+
property_tags: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
210
|
+
}, z.core.$strip>]>;
|
|
252
211
|
export declare const PlacementSchema: z.ZodObject<{
|
|
253
212
|
placement_id: z.ZodString;
|
|
254
213
|
name: z.ZodString;
|
|
@@ -266,11 +225,13 @@ export declare const PricingOptionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
266
225
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
267
226
|
rate: z.ZodNumber;
|
|
268
227
|
currency: z.ZodString;
|
|
228
|
+
is_fixed: z.ZodLiteral<true>;
|
|
269
229
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
270
230
|
}, z.core.$strip>, z.ZodObject<{
|
|
271
231
|
pricing_option_id: z.ZodString;
|
|
272
232
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
273
233
|
currency: z.ZodString;
|
|
234
|
+
is_fixed: z.ZodLiteral<false>;
|
|
274
235
|
price_guidance: z.ZodObject<{
|
|
275
236
|
floor: z.ZodNumber;
|
|
276
237
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -284,11 +245,13 @@ export declare const PricingOptionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
284
245
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
285
246
|
rate: z.ZodNumber;
|
|
286
247
|
currency: z.ZodString;
|
|
248
|
+
is_fixed: z.ZodLiteral<true>;
|
|
287
249
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
288
250
|
}, z.core.$strip>, z.ZodObject<{
|
|
289
251
|
pricing_option_id: z.ZodString;
|
|
290
252
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
291
253
|
currency: z.ZodString;
|
|
254
|
+
is_fixed: z.ZodLiteral<false>;
|
|
292
255
|
price_guidance: z.ZodObject<{
|
|
293
256
|
floor: z.ZodNumber;
|
|
294
257
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -302,18 +265,21 @@ export declare const PricingOptionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
302
265
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
303
266
|
rate: z.ZodNumber;
|
|
304
267
|
currency: z.ZodString;
|
|
268
|
+
is_fixed: z.ZodLiteral<true>;
|
|
305
269
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
306
270
|
}, z.core.$strip>, z.ZodObject<{
|
|
307
271
|
pricing_option_id: z.ZodString;
|
|
308
272
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
309
273
|
rate: z.ZodNumber;
|
|
310
274
|
currency: z.ZodString;
|
|
275
|
+
is_fixed: z.ZodLiteral<true>;
|
|
311
276
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
312
277
|
}, z.core.$strip>, z.ZodObject<{
|
|
313
278
|
pricing_option_id: z.ZodString;
|
|
314
279
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
315
280
|
rate: z.ZodNumber;
|
|
316
281
|
currency: z.ZodString;
|
|
282
|
+
is_fixed: z.ZodLiteral<true>;
|
|
317
283
|
parameters: z.ZodObject<{
|
|
318
284
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
319
285
|
duration_seconds: z.ZodNumber;
|
|
@@ -325,6 +291,7 @@ export declare const PricingOptionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
325
291
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
326
292
|
rate: z.ZodNumber;
|
|
327
293
|
currency: z.ZodString;
|
|
294
|
+
is_fixed: z.ZodLiteral<true>;
|
|
328
295
|
parameters: z.ZodObject<{
|
|
329
296
|
demographic: z.ZodString;
|
|
330
297
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -378,6 +345,8 @@ export declare const TargetingOverlaySchema: z.ZodObject<{
|
|
|
378
345
|
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
379
346
|
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
380
347
|
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
348
|
+
axe_include_segment: z.ZodOptional<z.ZodString>;
|
|
349
|
+
axe_exclude_segment: z.ZodOptional<z.ZodString>;
|
|
381
350
|
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
382
351
|
suppress_minutes: z.ZodNumber;
|
|
383
352
|
}, z.core.$strip>>;
|
|
@@ -397,9 +366,9 @@ export declare const PropertySchema: z.ZodObject<{
|
|
|
397
366
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
398
367
|
publisher_domain: z.ZodOptional<z.ZodString>;
|
|
399
368
|
}, z.core.$strip>;
|
|
400
|
-
export declare const BrandManifestSchema: z.
|
|
369
|
+
export declare const BrandManifestSchema: z.ZodObject<{
|
|
401
370
|
url: z.ZodOptional<z.ZodString>;
|
|
402
|
-
name: z.
|
|
371
|
+
name: z.ZodString;
|
|
403
372
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
404
373
|
url: z.ZodString;
|
|
405
374
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -422,7 +391,7 @@ export declare const BrandManifestSchema: z.ZodIntersection<z.ZodRecord<z.ZodStr
|
|
|
422
391
|
tagline: z.ZodOptional<z.ZodString>;
|
|
423
392
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
424
393
|
asset_id: z.ZodString;
|
|
425
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
394
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
426
395
|
url: z.ZodString;
|
|
427
396
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
428
397
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -457,10 +426,10 @@ export declare const BrandManifestSchema: z.ZodIntersection<z.ZodRecord<z.ZodStr
|
|
|
457
426
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
458
427
|
version: z.ZodOptional<z.ZodString>;
|
|
459
428
|
}, z.core.$strip>>;
|
|
460
|
-
}, z.core.$strip
|
|
461
|
-
export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.
|
|
429
|
+
}, z.core.$strip>;
|
|
430
|
+
export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
462
431
|
url: z.ZodOptional<z.ZodString>;
|
|
463
|
-
name: z.
|
|
432
|
+
name: z.ZodString;
|
|
464
433
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
465
434
|
url: z.ZodString;
|
|
466
435
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -483,7 +452,7 @@ export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.ZodInt
|
|
|
483
452
|
tagline: z.ZodOptional<z.ZodString>;
|
|
484
453
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
485
454
|
asset_id: z.ZodString;
|
|
486
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
455
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
487
456
|
url: z.ZodString;
|
|
488
457
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
489
458
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -518,20 +487,34 @@ export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.ZodInt
|
|
|
518
487
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
519
488
|
version: z.ZodOptional<z.ZodString>;
|
|
520
489
|
}, z.core.$strip>>;
|
|
521
|
-
}, z.core.$strip
|
|
490
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
522
491
|
export declare const ProductSchema: z.ZodObject<{
|
|
523
492
|
product_id: z.ZodString;
|
|
524
493
|
name: z.ZodString;
|
|
525
494
|
description: z.ZodString;
|
|
526
|
-
publisher_properties: z.ZodTuple<[z.ZodObject<{
|
|
495
|
+
publisher_properties: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
527
496
|
publisher_domain: z.ZodString;
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
}, z.core.$strip>], z.ZodObject<{
|
|
497
|
+
selection_type: z.ZodLiteral<"all">;
|
|
498
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
531
499
|
publisher_domain: z.ZodString;
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
}, z.core.$strip
|
|
500
|
+
selection_type: z.ZodLiteral<"by_id">;
|
|
501
|
+
property_ids: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
502
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
503
|
+
publisher_domain: z.ZodString;
|
|
504
|
+
selection_type: z.ZodLiteral<"by_tag">;
|
|
505
|
+
property_tags: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
506
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
507
|
+
publisher_domain: z.ZodString;
|
|
508
|
+
selection_type: z.ZodLiteral<"all">;
|
|
509
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
510
|
+
publisher_domain: z.ZodString;
|
|
511
|
+
selection_type: z.ZodLiteral<"by_id">;
|
|
512
|
+
property_ids: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
513
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
514
|
+
publisher_domain: z.ZodString;
|
|
515
|
+
selection_type: z.ZodLiteral<"by_tag">;
|
|
516
|
+
property_tags: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
517
|
+
}, z.core.$strip>]>>;
|
|
535
518
|
format_ids: z.ZodArray<z.ZodObject<{
|
|
536
519
|
agent_url: z.ZodString;
|
|
537
520
|
id: z.ZodString;
|
|
@@ -565,11 +548,13 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
565
548
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
566
549
|
rate: z.ZodNumber;
|
|
567
550
|
currency: z.ZodString;
|
|
551
|
+
is_fixed: z.ZodLiteral<true>;
|
|
568
552
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
569
553
|
}, z.core.$strip>, z.ZodObject<{
|
|
570
554
|
pricing_option_id: z.ZodString;
|
|
571
555
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
572
556
|
currency: z.ZodString;
|
|
557
|
+
is_fixed: z.ZodLiteral<false>;
|
|
573
558
|
price_guidance: z.ZodObject<{
|
|
574
559
|
floor: z.ZodNumber;
|
|
575
560
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -583,11 +568,13 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
583
568
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
584
569
|
rate: z.ZodNumber;
|
|
585
570
|
currency: z.ZodString;
|
|
571
|
+
is_fixed: z.ZodLiteral<true>;
|
|
586
572
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
587
573
|
}, z.core.$strip>, z.ZodObject<{
|
|
588
574
|
pricing_option_id: z.ZodString;
|
|
589
575
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
590
576
|
currency: z.ZodString;
|
|
577
|
+
is_fixed: z.ZodLiteral<false>;
|
|
591
578
|
price_guidance: z.ZodObject<{
|
|
592
579
|
floor: z.ZodNumber;
|
|
593
580
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -601,18 +588,21 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
601
588
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
602
589
|
rate: z.ZodNumber;
|
|
603
590
|
currency: z.ZodString;
|
|
591
|
+
is_fixed: z.ZodLiteral<true>;
|
|
604
592
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
605
593
|
}, z.core.$strip>, z.ZodObject<{
|
|
606
594
|
pricing_option_id: z.ZodString;
|
|
607
595
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
608
596
|
rate: z.ZodNumber;
|
|
609
597
|
currency: z.ZodString;
|
|
598
|
+
is_fixed: z.ZodLiteral<true>;
|
|
610
599
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
611
600
|
}, z.core.$strip>, z.ZodObject<{
|
|
612
601
|
pricing_option_id: z.ZodString;
|
|
613
602
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
614
603
|
rate: z.ZodNumber;
|
|
615
604
|
currency: z.ZodString;
|
|
605
|
+
is_fixed: z.ZodLiteral<true>;
|
|
616
606
|
parameters: z.ZodObject<{
|
|
617
607
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
618
608
|
duration_seconds: z.ZodNumber;
|
|
@@ -624,6 +614,7 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
624
614
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
625
615
|
rate: z.ZodNumber;
|
|
626
616
|
currency: z.ZodString;
|
|
617
|
+
is_fixed: z.ZodLiteral<true>;
|
|
627
618
|
parameters: z.ZodObject<{
|
|
628
619
|
demographic: z.ZodString;
|
|
629
620
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -650,11 +641,13 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
650
641
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
651
642
|
rate: z.ZodNumber;
|
|
652
643
|
currency: z.ZodString;
|
|
644
|
+
is_fixed: z.ZodLiteral<true>;
|
|
653
645
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
654
646
|
}, z.core.$strip>, z.ZodObject<{
|
|
655
647
|
pricing_option_id: z.ZodString;
|
|
656
648
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
657
649
|
currency: z.ZodString;
|
|
650
|
+
is_fixed: z.ZodLiteral<false>;
|
|
658
651
|
price_guidance: z.ZodObject<{
|
|
659
652
|
floor: z.ZodNumber;
|
|
660
653
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -668,11 +661,13 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
668
661
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
669
662
|
rate: z.ZodNumber;
|
|
670
663
|
currency: z.ZodString;
|
|
664
|
+
is_fixed: z.ZodLiteral<true>;
|
|
671
665
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
672
666
|
}, z.core.$strip>, z.ZodObject<{
|
|
673
667
|
pricing_option_id: z.ZodString;
|
|
674
668
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
675
669
|
currency: z.ZodString;
|
|
670
|
+
is_fixed: z.ZodLiteral<false>;
|
|
676
671
|
price_guidance: z.ZodObject<{
|
|
677
672
|
floor: z.ZodNumber;
|
|
678
673
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -686,18 +681,21 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
686
681
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
687
682
|
rate: z.ZodNumber;
|
|
688
683
|
currency: z.ZodString;
|
|
684
|
+
is_fixed: z.ZodLiteral<true>;
|
|
689
685
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
690
686
|
}, z.core.$strip>, z.ZodObject<{
|
|
691
687
|
pricing_option_id: z.ZodString;
|
|
692
688
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
693
689
|
rate: z.ZodNumber;
|
|
694
690
|
currency: z.ZodString;
|
|
691
|
+
is_fixed: z.ZodLiteral<true>;
|
|
695
692
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
696
693
|
}, z.core.$strip>, z.ZodObject<{
|
|
697
694
|
pricing_option_id: z.ZodString;
|
|
698
695
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
699
696
|
rate: z.ZodNumber;
|
|
700
697
|
currency: z.ZodString;
|
|
698
|
+
is_fixed: z.ZodLiteral<true>;
|
|
701
699
|
parameters: z.ZodObject<{
|
|
702
700
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
703
701
|
duration_seconds: z.ZodNumber;
|
|
@@ -709,6 +707,7 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
709
707
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
710
708
|
rate: z.ZodNumber;
|
|
711
709
|
currency: z.ZodString;
|
|
710
|
+
is_fixed: z.ZodLiteral<true>;
|
|
712
711
|
parameters: z.ZodObject<{
|
|
713
712
|
demographic: z.ZodString;
|
|
714
713
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -780,26 +779,73 @@ export declare const ErrorSchema: z.ZodObject<{
|
|
|
780
779
|
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
781
780
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
782
781
|
}, z.core.$strip>;
|
|
783
|
-
export declare const
|
|
784
|
-
|
|
785
|
-
agent_url: z.ZodString;
|
|
786
|
-
id: z.ZodString;
|
|
787
|
-
}, z.core.$strip>>>;
|
|
788
|
-
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"audio">, z.ZodLiteral<"video">, z.ZodLiteral<"display">, z.ZodLiteral<"dooh">]>>;
|
|
789
|
-
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">]>>>;
|
|
790
|
-
max_width: z.ZodOptional<z.ZodNumber>;
|
|
791
|
-
max_height: z.ZodOptional<z.ZodNumber>;
|
|
792
|
-
min_width: z.ZodOptional<z.ZodNumber>;
|
|
793
|
-
min_height: z.ZodOptional<z.ZodNumber>;
|
|
794
|
-
is_responsive: z.ZodOptional<z.ZodBoolean>;
|
|
795
|
-
name_search: z.ZodOptional<z.ZodString>;
|
|
796
|
-
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
797
|
-
}, z.core.$strip>;
|
|
782
|
+
export declare const FormatCategorySchema: 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">]>;
|
|
783
|
+
export declare const AssetContentType1Schema: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
798
784
|
export declare const FormatID3Schema: z.ZodObject<{
|
|
799
785
|
agent_url: z.ZodString;
|
|
800
786
|
id: z.ZodString;
|
|
801
787
|
}, z.core.$strip>;
|
|
802
|
-
export declare const BrandManifestReference1Schema: z.ZodUnion<readonly [z.
|
|
788
|
+
export declare const BrandManifestReference1Schema: z.ZodUnion<readonly [z.ZodObject<{
|
|
789
|
+
url: z.ZodOptional<z.ZodString>;
|
|
790
|
+
name: z.ZodString;
|
|
791
|
+
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
792
|
+
url: z.ZodString;
|
|
793
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
794
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
795
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
796
|
+
}, z.core.$strip>>>;
|
|
797
|
+
colors: z.ZodOptional<z.ZodObject<{
|
|
798
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
799
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
800
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
801
|
+
background: z.ZodOptional<z.ZodString>;
|
|
802
|
+
text: z.ZodOptional<z.ZodString>;
|
|
803
|
+
}, z.core.$strip>>;
|
|
804
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
805
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
806
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
807
|
+
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
808
|
+
}, z.core.$strip>>;
|
|
809
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
810
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
811
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
812
|
+
asset_id: z.ZodString;
|
|
813
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
814
|
+
url: z.ZodString;
|
|
815
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
816
|
+
name: z.ZodOptional<z.ZodString>;
|
|
817
|
+
description: z.ZodOptional<z.ZodString>;
|
|
818
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
819
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
820
|
+
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
821
|
+
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
822
|
+
format: z.ZodOptional<z.ZodString>;
|
|
823
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
824
|
+
}, z.core.$strip>>>;
|
|
825
|
+
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
826
|
+
feed_url: z.ZodString;
|
|
827
|
+
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
828
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
829
|
+
last_updated: z.ZodOptional<z.ZodString>;
|
|
830
|
+
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
831
|
+
}, z.core.$strip>>;
|
|
832
|
+
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
833
|
+
text: z.ZodString;
|
|
834
|
+
context: z.ZodOptional<z.ZodString>;
|
|
835
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
836
|
+
}, z.core.$strip>>>;
|
|
837
|
+
industry: z.ZodOptional<z.ZodString>;
|
|
838
|
+
target_audience: z.ZodOptional<z.ZodString>;
|
|
839
|
+
contact: z.ZodOptional<z.ZodObject<{
|
|
840
|
+
email: z.ZodOptional<z.ZodString>;
|
|
841
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
842
|
+
}, z.core.$strip>>;
|
|
843
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
844
|
+
created_date: z.ZodOptional<z.ZodString>;
|
|
845
|
+
updated_date: z.ZodOptional<z.ZodString>;
|
|
846
|
+
version: z.ZodOptional<z.ZodString>;
|
|
847
|
+
}, z.core.$strip>>;
|
|
848
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
803
849
|
export declare const StartTimingSchema: z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>;
|
|
804
850
|
export declare const PushNotificationConfigSchema: z.ZodObject<{
|
|
805
851
|
url: z.ZodString;
|
|
@@ -810,9 +856,9 @@ export declare const PushNotificationConfigSchema: z.ZodObject<{
|
|
|
810
856
|
}, z.core.$strip>;
|
|
811
857
|
}, z.core.$strip>;
|
|
812
858
|
export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
813
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
859
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
814
860
|
url: z.ZodOptional<z.ZodString>;
|
|
815
|
-
name: z.
|
|
861
|
+
name: z.ZodString;
|
|
816
862
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
817
863
|
url: z.ZodString;
|
|
818
864
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -835,7 +881,7 @@ export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
|
835
881
|
tagline: z.ZodOptional<z.ZodString>;
|
|
836
882
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
837
883
|
asset_id: z.ZodString;
|
|
838
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
884
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
839
885
|
url: z.ZodString;
|
|
840
886
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
841
887
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -870,7 +916,7 @@ export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
|
870
916
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
871
917
|
version: z.ZodOptional<z.ZodString>;
|
|
872
918
|
}, z.core.$strip>>;
|
|
873
|
-
}, z.core.$strip
|
|
919
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
874
920
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
875
921
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
876
922
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -888,33 +934,37 @@ export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
|
888
934
|
exclude_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
889
935
|
}, z.core.$strip>>;
|
|
890
936
|
}, z.core.$strip>;
|
|
891
|
-
export declare const
|
|
892
|
-
|
|
893
|
-
buyer_ref: z.ZodString
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
message: z.ZodString;
|
|
911
|
-
field: z.ZodOptional<z.ZodString>;
|
|
912
|
-
suggestion: z.ZodOptional<z.ZodString>;
|
|
913
|
-
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
914
|
-
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
937
|
+
export declare const PackageSchema: z.ZodObject<{
|
|
938
|
+
package_id: z.ZodString;
|
|
939
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
940
|
+
product_id: z.ZodOptional<z.ZodString>;
|
|
941
|
+
budget: z.ZodOptional<z.ZodNumber>;
|
|
942
|
+
pacing: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>>;
|
|
943
|
+
pricing_option_id: z.ZodOptional<z.ZodString>;
|
|
944
|
+
bid_price: z.ZodOptional<z.ZodNumber>;
|
|
945
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
946
|
+
targeting_overlay: z.ZodOptional<z.ZodObject<{
|
|
947
|
+
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
948
|
+
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
949
|
+
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
950
|
+
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
951
|
+
axe_include_segment: z.ZodOptional<z.ZodString>;
|
|
952
|
+
axe_exclude_segment: z.ZodOptional<z.ZodString>;
|
|
953
|
+
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
954
|
+
suppress_minutes: z.ZodNumber;
|
|
955
|
+
}, z.core.$strip>>;
|
|
915
956
|
}, z.core.$strip>>;
|
|
916
|
-
|
|
917
|
-
|
|
957
|
+
creative_assignments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
958
|
+
creative_id: z.ZodString;
|
|
959
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
960
|
+
placement_ids: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
961
|
+
}, z.core.$strip>>>;
|
|
962
|
+
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
963
|
+
agent_url: z.ZodString;
|
|
964
|
+
id: z.ZodString;
|
|
965
|
+
}, z.core.$strip>>>;
|
|
966
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
967
|
+
}, z.core.$strip>;
|
|
918
968
|
export declare const CreativeAssetSchema: z.ZodObject<{
|
|
919
969
|
creative_id: z.ZodString;
|
|
920
970
|
name: z.ZodString;
|
|
@@ -981,9 +1031,9 @@ export declare const CreativeAssetSchema: z.ZodObject<{
|
|
|
981
1031
|
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">]>>>;
|
|
982
1032
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
983
1033
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
984
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
1034
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
985
1035
|
url: z.ZodOptional<z.ZodString>;
|
|
986
|
-
name: z.
|
|
1036
|
+
name: z.ZodString;
|
|
987
1037
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
988
1038
|
url: z.ZodString;
|
|
989
1039
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1006,7 +1056,7 @@ export declare const CreativeAssetSchema: z.ZodObject<{
|
|
|
1006
1056
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1007
1057
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1008
1058
|
asset_id: z.ZodString;
|
|
1009
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
1059
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
1010
1060
|
url: z.ZodString;
|
|
1011
1061
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1012
1062
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1041,7 +1091,7 @@ export declare const CreativeAssetSchema: z.ZodObject<{
|
|
|
1041
1091
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
1042
1092
|
version: z.ZodOptional<z.ZodString>;
|
|
1043
1093
|
}, z.core.$strip>>;
|
|
1044
|
-
}, z.core.$strip
|
|
1094
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
1045
1095
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1046
1096
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1047
1097
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1144,7 +1194,6 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1144
1194
|
status: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
1145
1195
|
created_date: z.ZodString;
|
|
1146
1196
|
updated_date: z.ZodString;
|
|
1147
|
-
media_url: z.ZodOptional<z.ZodString>;
|
|
1148
1197
|
assets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1149
1198
|
url: z.ZodString;
|
|
1150
1199
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1204,9 +1253,9 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1204
1253
|
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">]>>>;
|
|
1205
1254
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1206
1255
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
1207
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
1256
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
1208
1257
|
url: z.ZodOptional<z.ZodString>;
|
|
1209
|
-
name: z.
|
|
1258
|
+
name: z.ZodString;
|
|
1210
1259
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1211
1260
|
url: z.ZodString;
|
|
1212
1261
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1229,7 +1278,7 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1229
1278
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1230
1279
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1231
1280
|
asset_id: z.ZodString;
|
|
1232
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
1281
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
1233
1282
|
url: z.ZodString;
|
|
1234
1283
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1235
1284
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1264,7 +1313,7 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1264
1313
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
1265
1314
|
version: z.ZodOptional<z.ZodString>;
|
|
1266
1315
|
}, z.core.$strip>>;
|
|
1267
|
-
}, z.core.$strip
|
|
1316
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
1268
1317
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1269
1318
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1270
1319
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1286,10 +1335,6 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1286
1335
|
url_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"clickthrough">, z.ZodLiteral<"tracker_pixel">, z.ZodLiteral<"tracker_script">]>>;
|
|
1287
1336
|
description: z.ZodOptional<z.ZodString>;
|
|
1288
1337
|
}, z.core.$strip>]>>>;
|
|
1289
|
-
click_url: z.ZodOptional<z.ZodString>;
|
|
1290
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
1291
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
1292
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
1293
1338
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1294
1339
|
assignments: z.ZodOptional<z.ZodObject<{
|
|
1295
1340
|
assignment_count: z.ZodNumber;
|
|
@@ -1344,7 +1389,7 @@ export declare const UpdateMediaBuyRequest1Schema: z.ZodObject<{
|
|
|
1344
1389
|
credentials: z.ZodString;
|
|
1345
1390
|
}, z.core.$strip>;
|
|
1346
1391
|
}, z.core.$strip>>;
|
|
1347
|
-
context: z.ZodOptional<z.
|
|
1392
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1348
1393
|
}, z.core.$strip>;
|
|
1349
1394
|
export declare const UpdateMediaBuyRequest2Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1350
1395
|
export declare const UpdateMediaBuyResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -1353,7 +1398,34 @@ export declare const UpdateMediaBuyResponseSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1353
1398
|
implementation_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1354
1399
|
affected_packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1355
1400
|
package_id: z.ZodString;
|
|
1356
|
-
buyer_ref: z.ZodString
|
|
1401
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
1402
|
+
product_id: z.ZodOptional<z.ZodString>;
|
|
1403
|
+
budget: z.ZodOptional<z.ZodNumber>;
|
|
1404
|
+
pacing: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>>;
|
|
1405
|
+
pricing_option_id: z.ZodOptional<z.ZodString>;
|
|
1406
|
+
bid_price: z.ZodOptional<z.ZodNumber>;
|
|
1407
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
1408
|
+
targeting_overlay: z.ZodOptional<z.ZodObject<{
|
|
1409
|
+
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1410
|
+
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1411
|
+
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1412
|
+
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1413
|
+
axe_include_segment: z.ZodOptional<z.ZodString>;
|
|
1414
|
+
axe_exclude_segment: z.ZodOptional<z.ZodString>;
|
|
1415
|
+
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
1416
|
+
suppress_minutes: z.ZodNumber;
|
|
1417
|
+
}, z.core.$strip>>;
|
|
1418
|
+
}, z.core.$strip>>;
|
|
1419
|
+
creative_assignments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1420
|
+
creative_id: z.ZodString;
|
|
1421
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1422
|
+
placement_ids: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
1423
|
+
}, z.core.$strip>>>;
|
|
1424
|
+
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1425
|
+
agent_url: z.ZodString;
|
|
1426
|
+
id: z.ZodString;
|
|
1427
|
+
}, z.core.$strip>>>;
|
|
1428
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
1357
1429
|
}, z.core.$strip>>>;
|
|
1358
1430
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
1359
1431
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1380,7 +1452,7 @@ export declare const GetMediaBuyDeliveryRequestSchema: z.ZodObject<{
|
|
|
1380
1452
|
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">]>>]>>;
|
|
1381
1453
|
start_date: z.ZodOptional<z.ZodString>;
|
|
1382
1454
|
end_date: z.ZodOptional<z.ZodString>;
|
|
1383
|
-
context: z.ZodOptional<z.
|
|
1455
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1384
1456
|
}, z.core.$strip>;
|
|
1385
1457
|
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">]>;
|
|
1386
1458
|
export declare const DeliveryMetricsSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
@@ -1421,7 +1493,7 @@ export declare const DeliveryMetricsSchema: z.ZodIntersection<z.ZodRecord<z.ZodS
|
|
|
1421
1493
|
export declare const PricingModel1Schema: 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">]>;
|
|
1422
1494
|
export declare const ListAuthorizedPropertiesRequestSchema: z.ZodObject<{
|
|
1423
1495
|
publisher_domains: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
1424
|
-
context: z.ZodOptional<z.
|
|
1496
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1425
1497
|
}, z.core.$strip>;
|
|
1426
1498
|
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">]>;
|
|
1427
1499
|
export declare const ProvidePerformanceFeedbackRequestSchema: z.ZodObject<{
|
|
@@ -1435,7 +1507,7 @@ export declare const ProvidePerformanceFeedbackRequestSchema: z.ZodObject<{
|
|
|
1435
1507
|
creative_id: z.ZodOptional<z.ZodString>;
|
|
1436
1508
|
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">]>>;
|
|
1437
1509
|
feedback_source: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"buyer_attribution">, z.ZodLiteral<"third_party_measurement">, z.ZodLiteral<"platform_analytics">, z.ZodLiteral<"verification_partner">]>>;
|
|
1438
|
-
context: z.ZodOptional<z.
|
|
1510
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1439
1511
|
}, z.core.$strip>;
|
|
1440
1512
|
export declare const ProvidePerformanceFeedbackResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1441
1513
|
success: z.ZodLiteral<true>;
|
|
@@ -1552,9 +1624,9 @@ export declare const CreativeManifestSchema: z.ZodObject<{
|
|
|
1552
1624
|
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">]>>>;
|
|
1553
1625
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1554
1626
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
1555
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
1627
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
1556
1628
|
url: z.ZodOptional<z.ZodString>;
|
|
1557
|
-
name: z.
|
|
1629
|
+
name: z.ZodString;
|
|
1558
1630
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1559
1631
|
url: z.ZodString;
|
|
1560
1632
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1577,7 +1649,7 @@ export declare const CreativeManifestSchema: z.ZodObject<{
|
|
|
1577
1649
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1578
1650
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1579
1651
|
asset_id: z.ZodString;
|
|
1580
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
1652
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
1581
1653
|
url: z.ZodString;
|
|
1582
1654
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1583
1655
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1612,7 +1684,7 @@ export declare const CreativeManifestSchema: z.ZodObject<{
|
|
|
1612
1684
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
1613
1685
|
version: z.ZodOptional<z.ZodString>;
|
|
1614
1686
|
}, z.core.$strip>>;
|
|
1615
|
-
}, z.core.$strip
|
|
1687
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
1616
1688
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1617
1689
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1618
1690
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1712,9 +1784,9 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1712
1784
|
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">]>>>;
|
|
1713
1785
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1714
1786
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
1715
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
1787
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
1716
1788
|
url: z.ZodOptional<z.ZodString>;
|
|
1717
|
-
name: z.
|
|
1789
|
+
name: z.ZodString;
|
|
1718
1790
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1719
1791
|
url: z.ZodString;
|
|
1720
1792
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1737,7 +1809,7 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1737
1809
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1738
1810
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1739
1811
|
asset_id: z.ZodString;
|
|
1740
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
1812
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
1741
1813
|
url: z.ZodString;
|
|
1742
1814
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1743
1815
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1772,7 +1844,7 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1772
1844
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
1773
1845
|
version: z.ZodOptional<z.ZodString>;
|
|
1774
1846
|
}, z.core.$strip>>;
|
|
1775
|
-
}, z.core.$strip
|
|
1847
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
1776
1848
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1777
1849
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1778
1850
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1850,7 +1922,7 @@ export declare const DestinationSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1850
1922
|
export declare const GetSignalsRequestSchema: z.ZodObject<{
|
|
1851
1923
|
signal_spec: z.ZodString;
|
|
1852
1924
|
deliver_to: z.ZodObject<{
|
|
1853
|
-
|
|
1925
|
+
deployments: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
1854
1926
|
type: z.ZodLiteral<"platform">;
|
|
1855
1927
|
platform: z.ZodString;
|
|
1856
1928
|
account: z.ZodOptional<z.ZodString>;
|
|
@@ -1876,7 +1948,7 @@ export declare const GetSignalsRequestSchema: z.ZodObject<{
|
|
|
1876
1948
|
min_coverage_percentage: z.ZodOptional<z.ZodNumber>;
|
|
1877
1949
|
}, z.core.$strip>>;
|
|
1878
1950
|
max_results: z.ZodOptional<z.ZodNumber>;
|
|
1879
|
-
context: z.ZodOptional<z.
|
|
1951
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1880
1952
|
}, z.core.$strip>;
|
|
1881
1953
|
export declare const ActivationKeySchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1882
1954
|
type: z.ZodLiteral<"segment_id">;
|
|
@@ -1927,7 +1999,7 @@ export declare const DeploymentSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1927
1999
|
}, z.core.$strip>]>;
|
|
1928
2000
|
export declare const ActivateSignalRequestSchema: z.ZodObject<{
|
|
1929
2001
|
signal_agent_segment_id: z.ZodString;
|
|
1930
|
-
|
|
2002
|
+
deployments: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
1931
2003
|
type: z.ZodLiteral<"platform">;
|
|
1932
2004
|
platform: z.ZodString;
|
|
1933
2005
|
account: z.ZodOptional<z.ZodString>;
|
|
@@ -1944,7 +2016,7 @@ export declare const ActivateSignalRequestSchema: z.ZodObject<{
|
|
|
1944
2016
|
agent_url: z.ZodString;
|
|
1945
2017
|
account: z.ZodOptional<z.ZodString>;
|
|
1946
2018
|
}, z.core.$strip>]>>;
|
|
1947
|
-
context: z.ZodOptional<z.
|
|
2019
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1948
2020
|
}, z.core.$strip>;
|
|
1949
2021
|
export declare const ActivateSignalResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1950
2022
|
deployments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -1997,40 +2069,52 @@ export declare const ActivateSignalResponseSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1997
2069
|
}, z.core.$strip>>;
|
|
1998
2070
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
1999
2071
|
}, z.core.$strip>]>;
|
|
2000
|
-
export declare const
|
|
2001
|
-
|
|
2002
|
-
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2072
|
+
export declare const MediaBuySchema: z.ZodObject<{
|
|
2073
|
+
media_buy_id: z.ZodString;
|
|
2074
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
2075
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"pending_activation">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
2076
|
+
promoted_offering: z.ZodString;
|
|
2077
|
+
total_budget: z.ZodNumber;
|
|
2078
|
+
packages: z.ZodArray<z.ZodObject<{
|
|
2079
|
+
package_id: z.ZodString;
|
|
2080
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
2081
|
+
product_id: z.ZodOptional<z.ZodString>;
|
|
2082
|
+
budget: z.ZodOptional<z.ZodNumber>;
|
|
2083
|
+
pacing: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>>;
|
|
2084
|
+
pricing_option_id: z.ZodOptional<z.ZodString>;
|
|
2085
|
+
bid_price: z.ZodOptional<z.ZodNumber>;
|
|
2086
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
2087
|
+
targeting_overlay: z.ZodOptional<z.ZodObject<{
|
|
2088
|
+
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2089
|
+
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2090
|
+
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2091
|
+
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2092
|
+
axe_include_segment: z.ZodOptional<z.ZodString>;
|
|
2093
|
+
axe_exclude_segment: z.ZodOptional<z.ZodString>;
|
|
2094
|
+
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
2095
|
+
suppress_minutes: z.ZodNumber;
|
|
2096
|
+
}, z.core.$strip>>;
|
|
2016
2097
|
}, z.core.$strip>>;
|
|
2098
|
+
creative_assignments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2099
|
+
creative_id: z.ZodString;
|
|
2100
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2101
|
+
placement_ids: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
2102
|
+
}, z.core.$strip>>>;
|
|
2103
|
+
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2104
|
+
agent_url: z.ZodString;
|
|
2105
|
+
id: z.ZodString;
|
|
2106
|
+
}, z.core.$strip>>>;
|
|
2107
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
2017
2108
|
}, z.core.$strip>>;
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
placement_ids: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
2022
|
-
}, z.core.$strip>>>;
|
|
2023
|
-
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2024
|
-
agent_url: z.ZodString;
|
|
2025
|
-
id: z.ZodString;
|
|
2026
|
-
}, z.core.$strip>>>;
|
|
2027
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
2109
|
+
creative_deadline: z.ZodOptional<z.ZodString>;
|
|
2110
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
2111
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
2028
2112
|
}, z.core.$strip>;
|
|
2029
2113
|
export declare const GetProductsRequestSchema: z.ZodObject<{
|
|
2030
2114
|
brief: z.ZodOptional<z.ZodString>;
|
|
2031
|
-
brand_manifest: z.ZodOptional<z.ZodUnion<readonly [z.
|
|
2115
|
+
brand_manifest: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2032
2116
|
url: z.ZodOptional<z.ZodString>;
|
|
2033
|
-
name: z.
|
|
2117
|
+
name: z.ZodString;
|
|
2034
2118
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2035
2119
|
url: z.ZodString;
|
|
2036
2120
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2053,7 +2137,7 @@ export declare const GetProductsRequestSchema: z.ZodObject<{
|
|
|
2053
2137
|
tagline: z.ZodOptional<z.ZodString>;
|
|
2054
2138
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2055
2139
|
asset_id: z.ZodString;
|
|
2056
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
2140
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
2057
2141
|
url: z.ZodString;
|
|
2058
2142
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2059
2143
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2088,7 +2172,7 @@ export declare const GetProductsRequestSchema: z.ZodObject<{
|
|
|
2088
2172
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
2089
2173
|
version: z.ZodOptional<z.ZodString>;
|
|
2090
2174
|
}, z.core.$strip>>;
|
|
2091
|
-
}, z.core.$strip
|
|
2175
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
2092
2176
|
filters: z.ZodOptional<z.ZodObject<{
|
|
2093
2177
|
delivery_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"guaranteed">, z.ZodLiteral<"non_guaranteed">]>>;
|
|
2094
2178
|
is_fixed_price: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2100,22 +2184,36 @@ export declare const GetProductsRequestSchema: z.ZodObject<{
|
|
|
2100
2184
|
standard_formats_only: z.ZodOptional<z.ZodBoolean>;
|
|
2101
2185
|
min_exposures: z.ZodOptional<z.ZodNumber>;
|
|
2102
2186
|
}, z.core.$strip>>;
|
|
2103
|
-
context: z.ZodOptional<z.
|
|
2187
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2104
2188
|
}, z.core.$strip>;
|
|
2105
2189
|
export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
2106
2190
|
products: z.ZodArray<z.ZodObject<{
|
|
2107
2191
|
product_id: z.ZodString;
|
|
2108
2192
|
name: z.ZodString;
|
|
2109
2193
|
description: z.ZodString;
|
|
2110
|
-
publisher_properties: z.ZodTuple<[z.ZodObject<{
|
|
2194
|
+
publisher_properties: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
2111
2195
|
publisher_domain: z.ZodString;
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
}, z.core.$strip>], z.ZodObject<{
|
|
2196
|
+
selection_type: z.ZodLiteral<"all">;
|
|
2197
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2115
2198
|
publisher_domain: z.ZodString;
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
}, z.core.$strip
|
|
2199
|
+
selection_type: z.ZodLiteral<"by_id">;
|
|
2200
|
+
property_ids: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
2201
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2202
|
+
publisher_domain: z.ZodString;
|
|
2203
|
+
selection_type: z.ZodLiteral<"by_tag">;
|
|
2204
|
+
property_tags: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
2205
|
+
}, z.core.$strip>]>], z.ZodUnion<readonly [z.ZodObject<{
|
|
2206
|
+
publisher_domain: z.ZodString;
|
|
2207
|
+
selection_type: z.ZodLiteral<"all">;
|
|
2208
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2209
|
+
publisher_domain: z.ZodString;
|
|
2210
|
+
selection_type: z.ZodLiteral<"by_id">;
|
|
2211
|
+
property_ids: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
2212
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2213
|
+
publisher_domain: z.ZodString;
|
|
2214
|
+
selection_type: z.ZodLiteral<"by_tag">;
|
|
2215
|
+
property_tags: z.ZodTuple<[z.ZodString], z.ZodString>;
|
|
2216
|
+
}, z.core.$strip>]>>;
|
|
2119
2217
|
format_ids: z.ZodArray<z.ZodObject<{
|
|
2120
2218
|
agent_url: z.ZodString;
|
|
2121
2219
|
id: z.ZodString;
|
|
@@ -2149,11 +2247,13 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2149
2247
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
2150
2248
|
rate: z.ZodNumber;
|
|
2151
2249
|
currency: z.ZodString;
|
|
2250
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2152
2251
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2153
2252
|
}, z.core.$strip>, z.ZodObject<{
|
|
2154
2253
|
pricing_option_id: z.ZodString;
|
|
2155
2254
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
2156
2255
|
currency: z.ZodString;
|
|
2256
|
+
is_fixed: z.ZodLiteral<false>;
|
|
2157
2257
|
price_guidance: z.ZodObject<{
|
|
2158
2258
|
floor: z.ZodNumber;
|
|
2159
2259
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2167,11 +2267,13 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2167
2267
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
2168
2268
|
rate: z.ZodNumber;
|
|
2169
2269
|
currency: z.ZodString;
|
|
2270
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2170
2271
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2171
2272
|
}, z.core.$strip>, z.ZodObject<{
|
|
2172
2273
|
pricing_option_id: z.ZodString;
|
|
2173
2274
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
2174
2275
|
currency: z.ZodString;
|
|
2276
|
+
is_fixed: z.ZodLiteral<false>;
|
|
2175
2277
|
price_guidance: z.ZodObject<{
|
|
2176
2278
|
floor: z.ZodNumber;
|
|
2177
2279
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2185,18 +2287,21 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2185
2287
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
2186
2288
|
rate: z.ZodNumber;
|
|
2187
2289
|
currency: z.ZodString;
|
|
2290
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2188
2291
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2189
2292
|
}, z.core.$strip>, z.ZodObject<{
|
|
2190
2293
|
pricing_option_id: z.ZodString;
|
|
2191
2294
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
2192
2295
|
rate: z.ZodNumber;
|
|
2193
2296
|
currency: z.ZodString;
|
|
2297
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2194
2298
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2195
2299
|
}, z.core.$strip>, z.ZodObject<{
|
|
2196
2300
|
pricing_option_id: z.ZodString;
|
|
2197
2301
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
2198
2302
|
rate: z.ZodNumber;
|
|
2199
2303
|
currency: z.ZodString;
|
|
2304
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2200
2305
|
parameters: z.ZodObject<{
|
|
2201
2306
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
2202
2307
|
duration_seconds: z.ZodNumber;
|
|
@@ -2208,6 +2313,7 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2208
2313
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
2209
2314
|
rate: z.ZodNumber;
|
|
2210
2315
|
currency: z.ZodString;
|
|
2316
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2211
2317
|
parameters: z.ZodObject<{
|
|
2212
2318
|
demographic: z.ZodString;
|
|
2213
2319
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2234,11 +2340,13 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2234
2340
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
2235
2341
|
rate: z.ZodNumber;
|
|
2236
2342
|
currency: z.ZodString;
|
|
2343
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2237
2344
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2238
2345
|
}, z.core.$strip>, z.ZodObject<{
|
|
2239
2346
|
pricing_option_id: z.ZodString;
|
|
2240
2347
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
2241
2348
|
currency: z.ZodString;
|
|
2349
|
+
is_fixed: z.ZodLiteral<false>;
|
|
2242
2350
|
price_guidance: z.ZodObject<{
|
|
2243
2351
|
floor: z.ZodNumber;
|
|
2244
2352
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2252,11 +2360,13 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2252
2360
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
2253
2361
|
rate: z.ZodNumber;
|
|
2254
2362
|
currency: z.ZodString;
|
|
2363
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2255
2364
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2256
2365
|
}, z.core.$strip>, z.ZodObject<{
|
|
2257
2366
|
pricing_option_id: z.ZodString;
|
|
2258
2367
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
2259
2368
|
currency: z.ZodString;
|
|
2369
|
+
is_fixed: z.ZodLiteral<false>;
|
|
2260
2370
|
price_guidance: z.ZodObject<{
|
|
2261
2371
|
floor: z.ZodNumber;
|
|
2262
2372
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2270,18 +2380,21 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2270
2380
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
2271
2381
|
rate: z.ZodNumber;
|
|
2272
2382
|
currency: z.ZodString;
|
|
2383
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2273
2384
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2274
2385
|
}, z.core.$strip>, z.ZodObject<{
|
|
2275
2386
|
pricing_option_id: z.ZodString;
|
|
2276
2387
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
2277
2388
|
rate: z.ZodNumber;
|
|
2278
2389
|
currency: z.ZodString;
|
|
2390
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2279
2391
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2280
2392
|
}, z.core.$strip>, z.ZodObject<{
|
|
2281
2393
|
pricing_option_id: z.ZodString;
|
|
2282
2394
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
2283
2395
|
rate: z.ZodNumber;
|
|
2284
2396
|
currency: z.ZodString;
|
|
2397
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2285
2398
|
parameters: z.ZodObject<{
|
|
2286
2399
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
2287
2400
|
duration_seconds: z.ZodNumber;
|
|
@@ -2293,6 +2406,7 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2293
2406
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
2294
2407
|
rate: z.ZodNumber;
|
|
2295
2408
|
currency: z.ZodString;
|
|
2409
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2296
2410
|
parameters: z.ZodObject<{
|
|
2297
2411
|
demographic: z.ZodString;
|
|
2298
2412
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2366,6 +2480,21 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2366
2480
|
}, z.core.$strip>>>;
|
|
2367
2481
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
2368
2482
|
}, z.core.$strip>;
|
|
2483
|
+
export declare const ListCreativeFormatsRequestSchema: z.ZodObject<{
|
|
2484
|
+
format_ids: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2485
|
+
agent_url: z.ZodString;
|
|
2486
|
+
id: z.ZodString;
|
|
2487
|
+
}, z.core.$strip>>>;
|
|
2488
|
+
type: z.ZodOptional<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">]>>;
|
|
2489
|
+
asset_types: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>>>;
|
|
2490
|
+
max_width: z.ZodOptional<z.ZodNumber>;
|
|
2491
|
+
max_height: z.ZodOptional<z.ZodNumber>;
|
|
2492
|
+
min_width: z.ZodOptional<z.ZodNumber>;
|
|
2493
|
+
min_height: z.ZodOptional<z.ZodNumber>;
|
|
2494
|
+
is_responsive: z.ZodOptional<z.ZodBoolean>;
|
|
2495
|
+
name_search: z.ZodOptional<z.ZodString>;
|
|
2496
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2497
|
+
}, z.core.$strip>;
|
|
2369
2498
|
export declare const FormatSchema: z.ZodObject<{
|
|
2370
2499
|
format_id: z.ZodObject<{
|
|
2371
2500
|
agent_url: z.ZodString;
|
|
@@ -2410,19 +2539,20 @@ export declare const FormatSchema: z.ZodObject<{
|
|
|
2410
2539
|
}, z.core.$strip>;
|
|
2411
2540
|
}, z.core.$strip>>>;
|
|
2412
2541
|
assets_required: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2542
|
+
item_type: z.ZodLiteral<"individual">;
|
|
2413
2543
|
asset_id: z.ZodString;
|
|
2414
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"
|
|
2544
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
2415
2545
|
asset_role: z.ZodOptional<z.ZodString>;
|
|
2416
2546
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2417
2547
|
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2418
2548
|
}, z.core.$strip>, z.ZodObject<{
|
|
2549
|
+
item_type: z.ZodLiteral<"repeatable_group">;
|
|
2419
2550
|
asset_group_id: z.ZodString;
|
|
2420
|
-
repeatable: z.ZodLiteral<true>;
|
|
2421
2551
|
min_count: z.ZodNumber;
|
|
2422
2552
|
max_count: z.ZodNumber;
|
|
2423
2553
|
assets: z.ZodArray<z.ZodObject<{
|
|
2424
2554
|
asset_id: z.ZodString;
|
|
2425
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"
|
|
2555
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
2426
2556
|
asset_role: z.ZodOptional<z.ZodString>;
|
|
2427
2557
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2428
2558
|
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2468,6 +2598,8 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2468
2598
|
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2469
2599
|
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2470
2600
|
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2601
|
+
axe_include_segment: z.ZodOptional<z.ZodString>;
|
|
2602
|
+
axe_exclude_segment: z.ZodOptional<z.ZodString>;
|
|
2471
2603
|
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
2472
2604
|
suppress_minutes: z.ZodNumber;
|
|
2473
2605
|
}, z.core.$strip>>;
|
|
@@ -2539,9 +2671,9 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2539
2671
|
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">]>>>;
|
|
2540
2672
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2541
2673
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
2542
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
2674
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
2543
2675
|
url: z.ZodOptional<z.ZodString>;
|
|
2544
|
-
name: z.
|
|
2676
|
+
name: z.ZodString;
|
|
2545
2677
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2546
2678
|
url: z.ZodString;
|
|
2547
2679
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2564,7 +2696,7 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2564
2696
|
tagline: z.ZodOptional<z.ZodString>;
|
|
2565
2697
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2566
2698
|
asset_id: z.ZodString;
|
|
2567
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
2699
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
2568
2700
|
url: z.ZodString;
|
|
2569
2701
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2570
2702
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2599,7 +2731,7 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2599
2731
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
2600
2732
|
version: z.ZodOptional<z.ZodString>;
|
|
2601
2733
|
}, z.core.$strip>>;
|
|
2602
|
-
}, z.core.$strip
|
|
2734
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
2603
2735
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
2604
2736
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2605
2737
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2630,6 +2762,60 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2630
2762
|
approved: z.ZodOptional<z.ZodBoolean>;
|
|
2631
2763
|
}, z.core.$strip>>>;
|
|
2632
2764
|
}, z.core.$strip>;
|
|
2765
|
+
export declare const CreateMediaBuyResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
2766
|
+
media_buy_id: z.ZodString;
|
|
2767
|
+
buyer_ref: z.ZodString;
|
|
2768
|
+
creative_deadline: z.ZodOptional<z.ZodString>;
|
|
2769
|
+
packages: z.ZodArray<z.ZodObject<{
|
|
2770
|
+
package_id: z.ZodString;
|
|
2771
|
+
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
2772
|
+
product_id: z.ZodOptional<z.ZodString>;
|
|
2773
|
+
budget: z.ZodOptional<z.ZodNumber>;
|
|
2774
|
+
pacing: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>>;
|
|
2775
|
+
pricing_option_id: z.ZodOptional<z.ZodString>;
|
|
2776
|
+
bid_price: z.ZodOptional<z.ZodNumber>;
|
|
2777
|
+
impressions: z.ZodOptional<z.ZodNumber>;
|
|
2778
|
+
targeting_overlay: z.ZodOptional<z.ZodObject<{
|
|
2779
|
+
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2780
|
+
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2781
|
+
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2782
|
+
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2783
|
+
axe_include_segment: z.ZodOptional<z.ZodString>;
|
|
2784
|
+
axe_exclude_segment: z.ZodOptional<z.ZodString>;
|
|
2785
|
+
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
2786
|
+
suppress_minutes: z.ZodNumber;
|
|
2787
|
+
}, z.core.$strip>>;
|
|
2788
|
+
}, z.core.$strip>>;
|
|
2789
|
+
creative_assignments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2790
|
+
creative_id: z.ZodString;
|
|
2791
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
2792
|
+
placement_ids: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
2793
|
+
}, z.core.$strip>>>;
|
|
2794
|
+
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2795
|
+
agent_url: z.ZodString;
|
|
2796
|
+
id: z.ZodString;
|
|
2797
|
+
}, z.core.$strip>>>;
|
|
2798
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
2799
|
+
}, z.core.$strip>>;
|
|
2800
|
+
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
2801
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2802
|
+
errors: z.ZodTuple<[z.ZodObject<{
|
|
2803
|
+
code: z.ZodString;
|
|
2804
|
+
message: z.ZodString;
|
|
2805
|
+
field: z.ZodOptional<z.ZodString>;
|
|
2806
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
2807
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
2808
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2809
|
+
}, z.core.$strip>], z.ZodObject<{
|
|
2810
|
+
code: z.ZodString;
|
|
2811
|
+
message: z.ZodString;
|
|
2812
|
+
field: z.ZodOptional<z.ZodString>;
|
|
2813
|
+
suggestion: z.ZodOptional<z.ZodString>;
|
|
2814
|
+
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
2815
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2816
|
+
}, z.core.$strip>>;
|
|
2817
|
+
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
2818
|
+
}, z.core.$strip>]>;
|
|
2633
2819
|
export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
2634
2820
|
creatives: z.ZodArray<z.ZodObject<{
|
|
2635
2821
|
creative_id: z.ZodString;
|
|
@@ -2697,9 +2883,9 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2697
2883
|
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">]>>>;
|
|
2698
2884
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2699
2885
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
2700
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
2886
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
2701
2887
|
url: z.ZodOptional<z.ZodString>;
|
|
2702
|
-
name: z.
|
|
2888
|
+
name: z.ZodString;
|
|
2703
2889
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2704
2890
|
url: z.ZodString;
|
|
2705
2891
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2722,7 +2908,7 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2722
2908
|
tagline: z.ZodOptional<z.ZodString>;
|
|
2723
2909
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2724
2910
|
asset_id: z.ZodString;
|
|
2725
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
2911
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
2726
2912
|
url: z.ZodString;
|
|
2727
2913
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2728
2914
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2757,7 +2943,7 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2757
2943
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
2758
2944
|
version: z.ZodOptional<z.ZodString>;
|
|
2759
2945
|
}, z.core.$strip>>;
|
|
2760
|
-
}, z.core.$strip
|
|
2946
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
2761
2947
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
2762
2948
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2763
2949
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2800,7 +2986,7 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2800
2986
|
credentials: z.ZodString;
|
|
2801
2987
|
}, z.core.$strip>;
|
|
2802
2988
|
}, z.core.$strip>>;
|
|
2803
|
-
context: z.ZodOptional<z.
|
|
2989
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2804
2990
|
}, z.core.$strip>;
|
|
2805
2991
|
export declare const ListCreativesRequestSchema: z.ZodObject<{
|
|
2806
2992
|
filters: z.ZodOptional<z.ZodObject<{
|
|
@@ -2833,7 +3019,7 @@ export declare const ListCreativesRequestSchema: z.ZodObject<{
|
|
|
2833
3019
|
include_performance: z.ZodOptional<z.ZodBoolean>;
|
|
2834
3020
|
include_sub_assets: z.ZodOptional<z.ZodBoolean>;
|
|
2835
3021
|
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">]>>>;
|
|
2836
|
-
context: z.ZodOptional<z.
|
|
3022
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2837
3023
|
}, z.core.$strip>;
|
|
2838
3024
|
export declare const UpdateMediaBuyRequestSchema: z.ZodIntersection<z.ZodObject<{
|
|
2839
3025
|
media_buy_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2850,7 +3036,7 @@ export declare const UpdateMediaBuyRequestSchema: z.ZodIntersection<z.ZodObject<
|
|
|
2850
3036
|
credentials: z.ZodString;
|
|
2851
3037
|
}, z.core.$strip>;
|
|
2852
3038
|
}, z.core.$strip>>;
|
|
2853
|
-
context: z.ZodOptional<z.
|
|
3039
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2854
3040
|
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2855
3041
|
export declare const GetMediaBuyDeliveryResponseSchema: z.ZodObject<{
|
|
2856
3042
|
notification_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"scheduled">, z.ZodLiteral<"final">, z.ZodLiteral<"delayed">, z.ZodLiteral<"adjusted">]>>;
|
|
@@ -3072,9 +3258,9 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
3072
3258
|
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">]>>>;
|
|
3073
3259
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3074
3260
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3075
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3261
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3076
3262
|
url: z.ZodOptional<z.ZodString>;
|
|
3077
|
-
name: z.
|
|
3263
|
+
name: z.ZodString;
|
|
3078
3264
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3079
3265
|
url: z.ZodString;
|
|
3080
3266
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3097,7 +3283,7 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
3097
3283
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3098
3284
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3099
3285
|
asset_id: z.ZodString;
|
|
3100
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
3286
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
3101
3287
|
url: z.ZodString;
|
|
3102
3288
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3103
3289
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3132,7 +3318,7 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
3132
3318
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3133
3319
|
version: z.ZodOptional<z.ZodString>;
|
|
3134
3320
|
}, z.core.$strip>>;
|
|
3135
|
-
}, z.core.$strip
|
|
3321
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3136
3322
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3137
3323
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3138
3324
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3155,7 +3341,7 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
3155
3341
|
agent_url: z.ZodString;
|
|
3156
3342
|
id: z.ZodString;
|
|
3157
3343
|
}, z.core.$strip>;
|
|
3158
|
-
context: z.ZodOptional<z.
|
|
3344
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3159
3345
|
}, z.core.$strip>;
|
|
3160
3346
|
export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
3161
3347
|
creative_manifest: z.ZodObject<{
|
|
@@ -3239,9 +3425,9 @@ export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObje
|
|
|
3239
3425
|
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">]>>>;
|
|
3240
3426
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3241
3427
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3242
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3428
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3243
3429
|
url: z.ZodOptional<z.ZodString>;
|
|
3244
|
-
name: z.
|
|
3430
|
+
name: z.ZodString;
|
|
3245
3431
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3246
3432
|
url: z.ZodString;
|
|
3247
3433
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3264,7 +3450,7 @@ export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObje
|
|
|
3264
3450
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3265
3451
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3266
3452
|
asset_id: z.ZodString;
|
|
3267
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
3453
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
3268
3454
|
url: z.ZodString;
|
|
3269
3455
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3270
3456
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3299,7 +3485,7 @@ export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObje
|
|
|
3299
3485
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3300
3486
|
version: z.ZodOptional<z.ZodString>;
|
|
3301
3487
|
}, z.core.$strip>>;
|
|
3302
|
-
}, z.core.$strip
|
|
3488
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3303
3489
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3304
3490
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3305
3491
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3338,6 +3524,7 @@ export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObje
|
|
|
3338
3524
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
3339
3525
|
}, z.core.$strip>]>;
|
|
3340
3526
|
export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
3527
|
+
request_type: z.ZodLiteral<"single">;
|
|
3341
3528
|
format_id: z.ZodObject<{
|
|
3342
3529
|
agent_url: z.ZodString;
|
|
3343
3530
|
id: z.ZodString;
|
|
@@ -3423,9 +3610,9 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3423
3610
|
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">]>>>;
|
|
3424
3611
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3425
3612
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3426
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3613
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3427
3614
|
url: z.ZodOptional<z.ZodString>;
|
|
3428
|
-
name: z.
|
|
3615
|
+
name: z.ZodString;
|
|
3429
3616
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3430
3617
|
url: z.ZodString;
|
|
3431
3618
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3448,7 +3635,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3448
3635
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3449
3636
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3450
3637
|
asset_id: z.ZodString;
|
|
3451
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
3638
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
3452
3639
|
url: z.ZodString;
|
|
3453
3640
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3454
3641
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3483,7 +3670,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3483
3670
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3484
3671
|
version: z.ZodOptional<z.ZodString>;
|
|
3485
3672
|
}, z.core.$strip>>;
|
|
3486
|
-
}, z.core.$strip
|
|
3673
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3487
3674
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3488
3675
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3489
3676
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3509,8 +3696,9 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3509
3696
|
}, z.core.$strip>>>;
|
|
3510
3697
|
template_id: z.ZodOptional<z.ZodString>;
|
|
3511
3698
|
output_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"url">, z.ZodLiteral<"html">]>>;
|
|
3512
|
-
context: z.ZodOptional<z.
|
|
3699
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3513
3700
|
}, z.core.$strip>, z.ZodObject<{
|
|
3701
|
+
request_type: z.ZodLiteral<"batch">;
|
|
3514
3702
|
requests: z.ZodTuple<[z.ZodObject<{
|
|
3515
3703
|
format_id: z.ZodObject<{
|
|
3516
3704
|
agent_url: z.ZodString;
|
|
@@ -3597,9 +3785,9 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3597
3785
|
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">]>>>;
|
|
3598
3786
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3599
3787
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3600
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3788
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3601
3789
|
url: z.ZodOptional<z.ZodString>;
|
|
3602
|
-
name: z.
|
|
3790
|
+
name: z.ZodString;
|
|
3603
3791
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3604
3792
|
url: z.ZodString;
|
|
3605
3793
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3622,7 +3810,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3622
3810
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3623
3811
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3624
3812
|
asset_id: z.ZodString;
|
|
3625
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
3813
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
3626
3814
|
url: z.ZodString;
|
|
3627
3815
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3628
3816
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3657,7 +3845,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3657
3845
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3658
3846
|
version: z.ZodOptional<z.ZodString>;
|
|
3659
3847
|
}, z.core.$strip>>;
|
|
3660
|
-
}, z.core.$strip
|
|
3848
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3661
3849
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3662
3850
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3663
3851
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3769,9 +3957,9 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3769
3957
|
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">]>>>;
|
|
3770
3958
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3771
3959
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3772
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3960
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3773
3961
|
url: z.ZodOptional<z.ZodString>;
|
|
3774
|
-
name: z.
|
|
3962
|
+
name: z.ZodString;
|
|
3775
3963
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3776
3964
|
url: z.ZodString;
|
|
3777
3965
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3794,7 +3982,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3794
3982
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3795
3983
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3796
3984
|
asset_id: z.ZodString;
|
|
3797
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
3985
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
3798
3986
|
url: z.ZodString;
|
|
3799
3987
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3800
3988
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3829,7 +4017,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3829
4017
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3830
4018
|
version: z.ZodOptional<z.ZodString>;
|
|
3831
4019
|
}, z.core.$strip>>;
|
|
3832
|
-
}, z.core.$strip
|
|
4020
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3833
4021
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3834
4022
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3835
4023
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3857,9 +4045,10 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3857
4045
|
output_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"url">, z.ZodLiteral<"html">]>>;
|
|
3858
4046
|
}, z.core.$strip>>;
|
|
3859
4047
|
output_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"url">, z.ZodLiteral<"html">]>>;
|
|
3860
|
-
context: z.ZodOptional<z.
|
|
4048
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3861
4049
|
}, z.core.$strip>]>;
|
|
3862
4050
|
export declare const PreviewCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
4051
|
+
response_type: z.ZodLiteral<"single">;
|
|
3863
4052
|
previews: z.ZodTuple<[z.ZodObject<{
|
|
3864
4053
|
preview_id: z.ZodString;
|
|
3865
4054
|
renders: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -4065,6 +4254,7 @@ export declare const PreviewCreativeResponseSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4065
4254
|
expires_at: z.ZodString;
|
|
4066
4255
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
4067
4256
|
}, z.core.$strip>, z.ZodObject<{
|
|
4257
|
+
response_type: z.ZodLiteral<"batch">;
|
|
4068
4258
|
results: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
4069
4259
|
success: z.ZodOptional<z.ZodLiteral<true>>;
|
|
4070
4260
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -4130,45 +4320,6 @@ export declare const GetSignalsResponseSchema: z.ZodObject<{
|
|
|
4130
4320
|
}, z.core.$strip>>>;
|
|
4131
4321
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
4132
4322
|
}, z.core.$strip>;
|
|
4133
|
-
export declare const MediaBuySchema: z.ZodObject<{
|
|
4134
|
-
media_buy_id: z.ZodString;
|
|
4135
|
-
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
4136
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"pending_activation">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
4137
|
-
promoted_offering: z.ZodString;
|
|
4138
|
-
total_budget: z.ZodNumber;
|
|
4139
|
-
packages: z.ZodArray<z.ZodObject<{
|
|
4140
|
-
package_id: z.ZodString;
|
|
4141
|
-
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
4142
|
-
product_id: z.ZodOptional<z.ZodString>;
|
|
4143
|
-
budget: z.ZodOptional<z.ZodNumber>;
|
|
4144
|
-
pacing: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>>;
|
|
4145
|
-
pricing_option_id: z.ZodOptional<z.ZodString>;
|
|
4146
|
-
bid_price: z.ZodOptional<z.ZodNumber>;
|
|
4147
|
-
impressions: z.ZodOptional<z.ZodNumber>;
|
|
4148
|
-
targeting_overlay: z.ZodOptional<z.ZodObject<{
|
|
4149
|
-
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4150
|
-
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4151
|
-
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4152
|
-
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4153
|
-
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
4154
|
-
suppress_minutes: z.ZodNumber;
|
|
4155
|
-
}, z.core.$strip>>;
|
|
4156
|
-
}, z.core.$strip>>;
|
|
4157
|
-
creative_assignments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4158
|
-
creative_id: z.ZodString;
|
|
4159
|
-
weight: z.ZodOptional<z.ZodNumber>;
|
|
4160
|
-
placement_ids: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
4161
|
-
}, z.core.$strip>>>;
|
|
4162
|
-
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4163
|
-
agent_url: z.ZodString;
|
|
4164
|
-
id: z.ZodString;
|
|
4165
|
-
}, z.core.$strip>>>;
|
|
4166
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
4167
|
-
}, z.core.$strip>>;
|
|
4168
|
-
creative_deadline: z.ZodOptional<z.ZodString>;
|
|
4169
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
4170
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
4171
|
-
}, z.core.$strip>;
|
|
4172
4323
|
export declare const ListCreativeFormatsResponseSchema: z.ZodObject<{
|
|
4173
4324
|
formats: z.ZodArray<z.ZodObject<{
|
|
4174
4325
|
format_id: z.ZodObject<{
|
|
@@ -4214,19 +4365,20 @@ export declare const ListCreativeFormatsResponseSchema: z.ZodObject<{
|
|
|
4214
4365
|
}, z.core.$strip>;
|
|
4215
4366
|
}, z.core.$strip>>>;
|
|
4216
4367
|
assets_required: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4368
|
+
item_type: z.ZodLiteral<"individual">;
|
|
4217
4369
|
asset_id: z.ZodString;
|
|
4218
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"
|
|
4370
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
4219
4371
|
asset_role: z.ZodOptional<z.ZodString>;
|
|
4220
4372
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
4221
4373
|
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4222
4374
|
}, z.core.$strip>, z.ZodObject<{
|
|
4375
|
+
item_type: z.ZodLiteral<"repeatable_group">;
|
|
4223
4376
|
asset_group_id: z.ZodString;
|
|
4224
|
-
repeatable: z.ZodLiteral<true>;
|
|
4225
4377
|
min_count: z.ZodNumber;
|
|
4226
4378
|
max_count: z.ZodNumber;
|
|
4227
4379
|
assets: z.ZodArray<z.ZodObject<{
|
|
4228
4380
|
asset_id: z.ZodString;
|
|
4229
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"
|
|
4381
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
4230
4382
|
asset_role: z.ZodOptional<z.ZodString>;
|
|
4231
4383
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
4232
4384
|
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -4289,6 +4441,8 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4289
4441
|
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4290
4442
|
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4291
4443
|
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4444
|
+
axe_include_segment: z.ZodOptional<z.ZodString>;
|
|
4445
|
+
axe_exclude_segment: z.ZodOptional<z.ZodString>;
|
|
4292
4446
|
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
4293
4447
|
suppress_minutes: z.ZodNumber;
|
|
4294
4448
|
}, z.core.$strip>>;
|
|
@@ -4360,9 +4514,9 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4360
4514
|
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">]>>>;
|
|
4361
4515
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
4362
4516
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
4363
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
4517
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
4364
4518
|
url: z.ZodOptional<z.ZodString>;
|
|
4365
|
-
name: z.
|
|
4519
|
+
name: z.ZodString;
|
|
4366
4520
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4367
4521
|
url: z.ZodString;
|
|
4368
4522
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -4385,7 +4539,7 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4385
4539
|
tagline: z.ZodOptional<z.ZodString>;
|
|
4386
4540
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4387
4541
|
asset_id: z.ZodString;
|
|
4388
|
-
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">]>;
|
|
4542
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
4389
4543
|
url: z.ZodString;
|
|
4390
4544
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4391
4545
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4420,7 +4574,7 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4420
4574
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
4421
4575
|
version: z.ZodOptional<z.ZodString>;
|
|
4422
4576
|
}, z.core.$strip>>;
|
|
4423
|
-
}, z.core.$strip
|
|
4577
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
4424
4578
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
4425
4579
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4426
4580
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -4451,7 +4605,67 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4451
4605
|
approved: z.ZodOptional<z.ZodBoolean>;
|
|
4452
4606
|
}, z.core.$strip>>>;
|
|
4453
4607
|
}, z.core.$strip>>;
|
|
4454
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
4608
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
4609
|
+
url: z.ZodOptional<z.ZodString>;
|
|
4610
|
+
name: z.ZodString;
|
|
4611
|
+
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4612
|
+
url: z.ZodString;
|
|
4613
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4614
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
4615
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
4616
|
+
}, z.core.$strip>>>;
|
|
4617
|
+
colors: z.ZodOptional<z.ZodObject<{
|
|
4618
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
4619
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
4620
|
+
accent: z.ZodOptional<z.ZodString>;
|
|
4621
|
+
background: z.ZodOptional<z.ZodString>;
|
|
4622
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4623
|
+
}, z.core.$strip>>;
|
|
4624
|
+
fonts: z.ZodOptional<z.ZodObject<{
|
|
4625
|
+
primary: z.ZodOptional<z.ZodString>;
|
|
4626
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
4627
|
+
font_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4628
|
+
}, z.core.$strip>>;
|
|
4629
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
4630
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
4631
|
+
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4632
|
+
asset_id: z.ZodString;
|
|
4633
|
+
asset_type: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"promoted_offerings">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">]>;
|
|
4634
|
+
url: z.ZodString;
|
|
4635
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4636
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4637
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4638
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
4639
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
4640
|
+
duration_seconds: z.ZodOptional<z.ZodNumber>;
|
|
4641
|
+
file_size_bytes: z.ZodOptional<z.ZodNumber>;
|
|
4642
|
+
format: z.ZodOptional<z.ZodString>;
|
|
4643
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4644
|
+
}, z.core.$strip>>>;
|
|
4645
|
+
product_catalog: z.ZodOptional<z.ZodObject<{
|
|
4646
|
+
feed_url: z.ZodString;
|
|
4647
|
+
feed_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"google_merchant_center">, z.ZodLiteral<"facebook_catalog">, z.ZodLiteral<"custom">]>>;
|
|
4648
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4649
|
+
last_updated: z.ZodOptional<z.ZodString>;
|
|
4650
|
+
update_frequency: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"realtime">, z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
4651
|
+
}, z.core.$strip>>;
|
|
4652
|
+
disclaimers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4653
|
+
text: z.ZodString;
|
|
4654
|
+
context: z.ZodOptional<z.ZodString>;
|
|
4655
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
4656
|
+
}, z.core.$strip>>>;
|
|
4657
|
+
industry: z.ZodOptional<z.ZodString>;
|
|
4658
|
+
target_audience: z.ZodOptional<z.ZodString>;
|
|
4659
|
+
contact: z.ZodOptional<z.ZodObject<{
|
|
4660
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4661
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4662
|
+
}, z.core.$strip>>;
|
|
4663
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
4664
|
+
created_date: z.ZodOptional<z.ZodString>;
|
|
4665
|
+
updated_date: z.ZodOptional<z.ZodString>;
|
|
4666
|
+
version: z.ZodOptional<z.ZodString>;
|
|
4667
|
+
}, z.core.$strip>>;
|
|
4668
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
4455
4669
|
po_number: z.ZodOptional<z.ZodString>;
|
|
4456
4670
|
start_time: z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>;
|
|
4457
4671
|
end_time: z.ZodString;
|
|
@@ -4466,6 +4680,6 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4466
4680
|
reporting_frequency: z.ZodUnion<readonly [z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"monthly">]>;
|
|
4467
4681
|
requested_metrics: z.ZodOptional<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">]>>>;
|
|
4468
4682
|
}, z.core.$strip>>>;
|
|
4469
|
-
context: z.ZodOptional<z.
|
|
4683
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4470
4684
|
}, z.core.$strip>;
|
|
4471
4685
|
//# sourceMappingURL=schemas.generated.d.ts.map
|