@adcp/client 3.0.3 → 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/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 +85 -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 +483 -279
- package/dist/lib/types/schemas.generated.d.ts.map +1 -1
- package/dist/lib/types/schemas.generated.js +159 -152
- package/dist/lib/types/schemas.generated.js.map +1 -1
- package/dist/lib/types/tools.generated.d.ts +261 -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/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>;
|
|
@@ -399,9 +366,9 @@ export declare const PropertySchema: z.ZodObject<{
|
|
|
399
366
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
400
367
|
publisher_domain: z.ZodOptional<z.ZodString>;
|
|
401
368
|
}, z.core.$strip>;
|
|
402
|
-
export declare const BrandManifestSchema: z.
|
|
369
|
+
export declare const BrandManifestSchema: z.ZodObject<{
|
|
403
370
|
url: z.ZodOptional<z.ZodString>;
|
|
404
|
-
name: z.
|
|
371
|
+
name: z.ZodString;
|
|
405
372
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
406
373
|
url: z.ZodString;
|
|
407
374
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -424,7 +391,7 @@ export declare const BrandManifestSchema: z.ZodIntersection<z.ZodRecord<z.ZodStr
|
|
|
424
391
|
tagline: z.ZodOptional<z.ZodString>;
|
|
425
392
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
426
393
|
asset_id: z.ZodString;
|
|
427
|
-
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">]>;
|
|
428
395
|
url: z.ZodString;
|
|
429
396
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
430
397
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -459,10 +426,10 @@ export declare const BrandManifestSchema: z.ZodIntersection<z.ZodRecord<z.ZodStr
|
|
|
459
426
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
460
427
|
version: z.ZodOptional<z.ZodString>;
|
|
461
428
|
}, z.core.$strip>>;
|
|
462
|
-
}, z.core.$strip
|
|
463
|
-
export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.
|
|
429
|
+
}, z.core.$strip>;
|
|
430
|
+
export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
464
431
|
url: z.ZodOptional<z.ZodString>;
|
|
465
|
-
name: z.
|
|
432
|
+
name: z.ZodString;
|
|
466
433
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
467
434
|
url: z.ZodString;
|
|
468
435
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -485,7 +452,7 @@ export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.ZodInt
|
|
|
485
452
|
tagline: z.ZodOptional<z.ZodString>;
|
|
486
453
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
487
454
|
asset_id: z.ZodString;
|
|
488
|
-
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">]>;
|
|
489
456
|
url: z.ZodString;
|
|
490
457
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
491
458
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -520,20 +487,34 @@ export declare const BrandManifestReferenceSchema: z.ZodUnion<readonly [z.ZodInt
|
|
|
520
487
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
521
488
|
version: z.ZodOptional<z.ZodString>;
|
|
522
489
|
}, z.core.$strip>>;
|
|
523
|
-
}, z.core.$strip
|
|
490
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
524
491
|
export declare const ProductSchema: z.ZodObject<{
|
|
525
492
|
product_id: z.ZodString;
|
|
526
493
|
name: z.ZodString;
|
|
527
494
|
description: z.ZodString;
|
|
528
|
-
publisher_properties: z.ZodTuple<[z.ZodObject<{
|
|
495
|
+
publisher_properties: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
529
496
|
publisher_domain: z.ZodString;
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
}, z.core.$strip>], z.ZodObject<{
|
|
497
|
+
selection_type: z.ZodLiteral<"all">;
|
|
498
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
533
499
|
publisher_domain: z.ZodString;
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
}, 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>]>>;
|
|
537
518
|
format_ids: z.ZodArray<z.ZodObject<{
|
|
538
519
|
agent_url: z.ZodString;
|
|
539
520
|
id: z.ZodString;
|
|
@@ -567,11 +548,13 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
567
548
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
568
549
|
rate: z.ZodNumber;
|
|
569
550
|
currency: z.ZodString;
|
|
551
|
+
is_fixed: z.ZodLiteral<true>;
|
|
570
552
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
571
553
|
}, z.core.$strip>, z.ZodObject<{
|
|
572
554
|
pricing_option_id: z.ZodString;
|
|
573
555
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
574
556
|
currency: z.ZodString;
|
|
557
|
+
is_fixed: z.ZodLiteral<false>;
|
|
575
558
|
price_guidance: z.ZodObject<{
|
|
576
559
|
floor: z.ZodNumber;
|
|
577
560
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -585,11 +568,13 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
585
568
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
586
569
|
rate: z.ZodNumber;
|
|
587
570
|
currency: z.ZodString;
|
|
571
|
+
is_fixed: z.ZodLiteral<true>;
|
|
588
572
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
589
573
|
}, z.core.$strip>, z.ZodObject<{
|
|
590
574
|
pricing_option_id: z.ZodString;
|
|
591
575
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
592
576
|
currency: z.ZodString;
|
|
577
|
+
is_fixed: z.ZodLiteral<false>;
|
|
593
578
|
price_guidance: z.ZodObject<{
|
|
594
579
|
floor: z.ZodNumber;
|
|
595
580
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -603,18 +588,21 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
603
588
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
604
589
|
rate: z.ZodNumber;
|
|
605
590
|
currency: z.ZodString;
|
|
591
|
+
is_fixed: z.ZodLiteral<true>;
|
|
606
592
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
607
593
|
}, z.core.$strip>, z.ZodObject<{
|
|
608
594
|
pricing_option_id: z.ZodString;
|
|
609
595
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
610
596
|
rate: z.ZodNumber;
|
|
611
597
|
currency: z.ZodString;
|
|
598
|
+
is_fixed: z.ZodLiteral<true>;
|
|
612
599
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
613
600
|
}, z.core.$strip>, z.ZodObject<{
|
|
614
601
|
pricing_option_id: z.ZodString;
|
|
615
602
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
616
603
|
rate: z.ZodNumber;
|
|
617
604
|
currency: z.ZodString;
|
|
605
|
+
is_fixed: z.ZodLiteral<true>;
|
|
618
606
|
parameters: z.ZodObject<{
|
|
619
607
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
620
608
|
duration_seconds: z.ZodNumber;
|
|
@@ -626,6 +614,7 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
626
614
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
627
615
|
rate: z.ZodNumber;
|
|
628
616
|
currency: z.ZodString;
|
|
617
|
+
is_fixed: z.ZodLiteral<true>;
|
|
629
618
|
parameters: z.ZodObject<{
|
|
630
619
|
demographic: z.ZodString;
|
|
631
620
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -652,11 +641,13 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
652
641
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
653
642
|
rate: z.ZodNumber;
|
|
654
643
|
currency: z.ZodString;
|
|
644
|
+
is_fixed: z.ZodLiteral<true>;
|
|
655
645
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
656
646
|
}, z.core.$strip>, z.ZodObject<{
|
|
657
647
|
pricing_option_id: z.ZodString;
|
|
658
648
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
659
649
|
currency: z.ZodString;
|
|
650
|
+
is_fixed: z.ZodLiteral<false>;
|
|
660
651
|
price_guidance: z.ZodObject<{
|
|
661
652
|
floor: z.ZodNumber;
|
|
662
653
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -670,11 +661,13 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
670
661
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
671
662
|
rate: z.ZodNumber;
|
|
672
663
|
currency: z.ZodString;
|
|
664
|
+
is_fixed: z.ZodLiteral<true>;
|
|
673
665
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
674
666
|
}, z.core.$strip>, z.ZodObject<{
|
|
675
667
|
pricing_option_id: z.ZodString;
|
|
676
668
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
677
669
|
currency: z.ZodString;
|
|
670
|
+
is_fixed: z.ZodLiteral<false>;
|
|
678
671
|
price_guidance: z.ZodObject<{
|
|
679
672
|
floor: z.ZodNumber;
|
|
680
673
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -688,18 +681,21 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
688
681
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
689
682
|
rate: z.ZodNumber;
|
|
690
683
|
currency: z.ZodString;
|
|
684
|
+
is_fixed: z.ZodLiteral<true>;
|
|
691
685
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
692
686
|
}, z.core.$strip>, z.ZodObject<{
|
|
693
687
|
pricing_option_id: z.ZodString;
|
|
694
688
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
695
689
|
rate: z.ZodNumber;
|
|
696
690
|
currency: z.ZodString;
|
|
691
|
+
is_fixed: z.ZodLiteral<true>;
|
|
697
692
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
698
693
|
}, z.core.$strip>, z.ZodObject<{
|
|
699
694
|
pricing_option_id: z.ZodString;
|
|
700
695
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
701
696
|
rate: z.ZodNumber;
|
|
702
697
|
currency: z.ZodString;
|
|
698
|
+
is_fixed: z.ZodLiteral<true>;
|
|
703
699
|
parameters: z.ZodObject<{
|
|
704
700
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
705
701
|
duration_seconds: z.ZodNumber;
|
|
@@ -711,6 +707,7 @@ export declare const ProductSchema: z.ZodObject<{
|
|
|
711
707
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
712
708
|
rate: z.ZodNumber;
|
|
713
709
|
currency: z.ZodString;
|
|
710
|
+
is_fixed: z.ZodLiteral<true>;
|
|
714
711
|
parameters: z.ZodObject<{
|
|
715
712
|
demographic: z.ZodString;
|
|
716
713
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -782,26 +779,73 @@ export declare const ErrorSchema: z.ZodObject<{
|
|
|
782
779
|
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
783
780
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
784
781
|
}, z.core.$strip>;
|
|
785
|
-
export declare const
|
|
786
|
-
|
|
787
|
-
agent_url: z.ZodString;
|
|
788
|
-
id: z.ZodString;
|
|
789
|
-
}, z.core.$strip>>>;
|
|
790
|
-
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"audio">, z.ZodLiteral<"video">, z.ZodLiteral<"display">, z.ZodLiteral<"dooh">]>>;
|
|
791
|
-
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">]>>>;
|
|
792
|
-
max_width: z.ZodOptional<z.ZodNumber>;
|
|
793
|
-
max_height: z.ZodOptional<z.ZodNumber>;
|
|
794
|
-
min_width: z.ZodOptional<z.ZodNumber>;
|
|
795
|
-
min_height: z.ZodOptional<z.ZodNumber>;
|
|
796
|
-
is_responsive: z.ZodOptional<z.ZodBoolean>;
|
|
797
|
-
name_search: z.ZodOptional<z.ZodString>;
|
|
798
|
-
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
799
|
-
}, 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">]>;
|
|
800
784
|
export declare const FormatID3Schema: z.ZodObject<{
|
|
801
785
|
agent_url: z.ZodString;
|
|
802
786
|
id: z.ZodString;
|
|
803
787
|
}, z.core.$strip>;
|
|
804
|
-
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]>;
|
|
805
849
|
export declare const StartTimingSchema: z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>;
|
|
806
850
|
export declare const PushNotificationConfigSchema: z.ZodObject<{
|
|
807
851
|
url: z.ZodString;
|
|
@@ -812,9 +856,9 @@ export declare const PushNotificationConfigSchema: z.ZodObject<{
|
|
|
812
856
|
}, z.core.$strip>;
|
|
813
857
|
}, z.core.$strip>;
|
|
814
858
|
export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
815
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
859
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
816
860
|
url: z.ZodOptional<z.ZodString>;
|
|
817
|
-
name: z.
|
|
861
|
+
name: z.ZodString;
|
|
818
862
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
819
863
|
url: z.ZodString;
|
|
820
864
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -837,7 +881,7 @@ export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
|
837
881
|
tagline: z.ZodOptional<z.ZodString>;
|
|
838
882
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
839
883
|
asset_id: z.ZodString;
|
|
840
|
-
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">]>;
|
|
841
885
|
url: z.ZodString;
|
|
842
886
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
843
887
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -872,7 +916,7 @@ export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
|
872
916
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
873
917
|
version: z.ZodOptional<z.ZodString>;
|
|
874
918
|
}, z.core.$strip>>;
|
|
875
|
-
}, z.core.$strip
|
|
919
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
876
920
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
877
921
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
878
922
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -890,33 +934,37 @@ export declare const PromotedOfferingsSchema: z.ZodObject<{
|
|
|
890
934
|
exclude_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
891
935
|
}, z.core.$strip>>;
|
|
892
936
|
}, z.core.$strip>;
|
|
893
|
-
export declare const
|
|
894
|
-
|
|
895
|
-
buyer_ref: z.ZodString
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
message: z.ZodString;
|
|
913
|
-
field: z.ZodOptional<z.ZodString>;
|
|
914
|
-
suggestion: z.ZodOptional<z.ZodString>;
|
|
915
|
-
retry_after: z.ZodOptional<z.ZodNumber>;
|
|
916
|
-
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>>;
|
|
917
956
|
}, z.core.$strip>>;
|
|
918
|
-
|
|
919
|
-
|
|
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>;
|
|
920
968
|
export declare const CreativeAssetSchema: z.ZodObject<{
|
|
921
969
|
creative_id: z.ZodString;
|
|
922
970
|
name: z.ZodString;
|
|
@@ -983,9 +1031,9 @@ export declare const CreativeAssetSchema: z.ZodObject<{
|
|
|
983
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">]>>>;
|
|
984
1032
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
985
1033
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
986
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
1034
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
987
1035
|
url: z.ZodOptional<z.ZodString>;
|
|
988
|
-
name: z.
|
|
1036
|
+
name: z.ZodString;
|
|
989
1037
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
990
1038
|
url: z.ZodString;
|
|
991
1039
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1008,7 +1056,7 @@ export declare const CreativeAssetSchema: z.ZodObject<{
|
|
|
1008
1056
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1009
1057
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1010
1058
|
asset_id: z.ZodString;
|
|
1011
|
-
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">]>;
|
|
1012
1060
|
url: z.ZodString;
|
|
1013
1061
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1014
1062
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1043,7 +1091,7 @@ export declare const CreativeAssetSchema: z.ZodObject<{
|
|
|
1043
1091
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
1044
1092
|
version: z.ZodOptional<z.ZodString>;
|
|
1045
1093
|
}, z.core.$strip>>;
|
|
1046
|
-
}, z.core.$strip
|
|
1094
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
1047
1095
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1048
1096
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1049
1097
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1146,7 +1194,6 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1146
1194
|
status: z.ZodUnion<readonly [z.ZodLiteral<"processing">, z.ZodLiteral<"approved">, z.ZodLiteral<"rejected">, z.ZodLiteral<"pending_review">]>;
|
|
1147
1195
|
created_date: z.ZodString;
|
|
1148
1196
|
updated_date: z.ZodString;
|
|
1149
|
-
media_url: z.ZodOptional<z.ZodString>;
|
|
1150
1197
|
assets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
1151
1198
|
url: z.ZodString;
|
|
1152
1199
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1206,9 +1253,9 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1206
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">]>>>;
|
|
1207
1254
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1208
1255
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
1209
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
1256
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
1210
1257
|
url: z.ZodOptional<z.ZodString>;
|
|
1211
|
-
name: z.
|
|
1258
|
+
name: z.ZodString;
|
|
1212
1259
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1213
1260
|
url: z.ZodString;
|
|
1214
1261
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1231,7 +1278,7 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1231
1278
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1232
1279
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1233
1280
|
asset_id: z.ZodString;
|
|
1234
|
-
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">]>;
|
|
1235
1282
|
url: z.ZodString;
|
|
1236
1283
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1237
1284
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1266,7 +1313,7 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1266
1313
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
1267
1314
|
version: z.ZodOptional<z.ZodString>;
|
|
1268
1315
|
}, z.core.$strip>>;
|
|
1269
|
-
}, z.core.$strip
|
|
1316
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
1270
1317
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1271
1318
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1272
1319
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1288,10 +1335,6 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
|
|
|
1288
1335
|
url_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"clickthrough">, z.ZodLiteral<"tracker_pixel">, z.ZodLiteral<"tracker_script">]>>;
|
|
1289
1336
|
description: z.ZodOptional<z.ZodString>;
|
|
1290
1337
|
}, z.core.$strip>]>>>;
|
|
1291
|
-
click_url: z.ZodOptional<z.ZodString>;
|
|
1292
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
1293
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
1294
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
1295
1338
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1296
1339
|
assignments: z.ZodOptional<z.ZodObject<{
|
|
1297
1340
|
assignment_count: z.ZodNumber;
|
|
@@ -1346,7 +1389,7 @@ export declare const UpdateMediaBuyRequest1Schema: z.ZodObject<{
|
|
|
1346
1389
|
credentials: z.ZodString;
|
|
1347
1390
|
}, z.core.$strip>;
|
|
1348
1391
|
}, z.core.$strip>>;
|
|
1349
|
-
context: z.ZodOptional<z.
|
|
1392
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1350
1393
|
}, z.core.$strip>;
|
|
1351
1394
|
export declare const UpdateMediaBuyRequest2Schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1352
1395
|
export declare const UpdateMediaBuyResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -1355,7 +1398,34 @@ export declare const UpdateMediaBuyResponseSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1355
1398
|
implementation_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1356
1399
|
affected_packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1357
1400
|
package_id: z.ZodString;
|
|
1358
|
-
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">]>;
|
|
1359
1429
|
}, z.core.$strip>>>;
|
|
1360
1430
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
1361
1431
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1382,7 +1452,7 @@ export declare const GetMediaBuyDeliveryRequestSchema: z.ZodObject<{
|
|
|
1382
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">]>>]>>;
|
|
1383
1453
|
start_date: z.ZodOptional<z.ZodString>;
|
|
1384
1454
|
end_date: z.ZodOptional<z.ZodString>;
|
|
1385
|
-
context: z.ZodOptional<z.
|
|
1455
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1386
1456
|
}, z.core.$strip>;
|
|
1387
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">]>;
|
|
1388
1458
|
export declare const DeliveryMetricsSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodObject<{
|
|
@@ -1423,7 +1493,7 @@ export declare const DeliveryMetricsSchema: z.ZodIntersection<z.ZodRecord<z.ZodS
|
|
|
1423
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">]>;
|
|
1424
1494
|
export declare const ListAuthorizedPropertiesRequestSchema: z.ZodObject<{
|
|
1425
1495
|
publisher_domains: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
1426
|
-
context: z.ZodOptional<z.
|
|
1496
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1427
1497
|
}, z.core.$strip>;
|
|
1428
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">]>;
|
|
1429
1499
|
export declare const ProvidePerformanceFeedbackRequestSchema: z.ZodObject<{
|
|
@@ -1437,7 +1507,7 @@ export declare const ProvidePerformanceFeedbackRequestSchema: z.ZodObject<{
|
|
|
1437
1507
|
creative_id: z.ZodOptional<z.ZodString>;
|
|
1438
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">]>>;
|
|
1439
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">]>>;
|
|
1440
|
-
context: z.ZodOptional<z.
|
|
1510
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1441
1511
|
}, z.core.$strip>;
|
|
1442
1512
|
export declare const ProvidePerformanceFeedbackResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1443
1513
|
success: z.ZodLiteral<true>;
|
|
@@ -1554,9 +1624,9 @@ export declare const CreativeManifestSchema: z.ZodObject<{
|
|
|
1554
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">]>>>;
|
|
1555
1625
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1556
1626
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
1557
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
1627
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
1558
1628
|
url: z.ZodOptional<z.ZodString>;
|
|
1559
|
-
name: z.
|
|
1629
|
+
name: z.ZodString;
|
|
1560
1630
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1561
1631
|
url: z.ZodString;
|
|
1562
1632
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1579,7 +1649,7 @@ export declare const CreativeManifestSchema: z.ZodObject<{
|
|
|
1579
1649
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1580
1650
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1581
1651
|
asset_id: z.ZodString;
|
|
1582
|
-
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">]>;
|
|
1583
1653
|
url: z.ZodString;
|
|
1584
1654
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1585
1655
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1614,7 +1684,7 @@ export declare const CreativeManifestSchema: z.ZodObject<{
|
|
|
1614
1684
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
1615
1685
|
version: z.ZodOptional<z.ZodString>;
|
|
1616
1686
|
}, z.core.$strip>>;
|
|
1617
|
-
}, z.core.$strip
|
|
1687
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
1618
1688
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1619
1689
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1620
1690
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1714,9 +1784,9 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1714
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">]>>>;
|
|
1715
1785
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
1716
1786
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
1717
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
1787
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
1718
1788
|
url: z.ZodOptional<z.ZodString>;
|
|
1719
|
-
name: z.
|
|
1789
|
+
name: z.ZodString;
|
|
1720
1790
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1721
1791
|
url: z.ZodString;
|
|
1722
1792
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1739,7 +1809,7 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1739
1809
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1740
1810
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1741
1811
|
asset_id: z.ZodString;
|
|
1742
|
-
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">]>;
|
|
1743
1813
|
url: z.ZodString;
|
|
1744
1814
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1745
1815
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1774,7 +1844,7 @@ export declare const CreativeManifest1Schema: z.ZodObject<{
|
|
|
1774
1844
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
1775
1845
|
version: z.ZodOptional<z.ZodString>;
|
|
1776
1846
|
}, z.core.$strip>>;
|
|
1777
|
-
}, z.core.$strip
|
|
1847
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
1778
1848
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
1779
1849
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1780
1850
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1852,7 +1922,7 @@ export declare const DestinationSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1852
1922
|
export declare const GetSignalsRequestSchema: z.ZodObject<{
|
|
1853
1923
|
signal_spec: z.ZodString;
|
|
1854
1924
|
deliver_to: z.ZodObject<{
|
|
1855
|
-
|
|
1925
|
+
deployments: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
1856
1926
|
type: z.ZodLiteral<"platform">;
|
|
1857
1927
|
platform: z.ZodString;
|
|
1858
1928
|
account: z.ZodOptional<z.ZodString>;
|
|
@@ -1878,7 +1948,7 @@ export declare const GetSignalsRequestSchema: z.ZodObject<{
|
|
|
1878
1948
|
min_coverage_percentage: z.ZodOptional<z.ZodNumber>;
|
|
1879
1949
|
}, z.core.$strip>>;
|
|
1880
1950
|
max_results: z.ZodOptional<z.ZodNumber>;
|
|
1881
|
-
context: z.ZodOptional<z.
|
|
1951
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1882
1952
|
}, z.core.$strip>;
|
|
1883
1953
|
export declare const ActivationKeySchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1884
1954
|
type: z.ZodLiteral<"segment_id">;
|
|
@@ -1929,7 +1999,7 @@ export declare const DeploymentSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1929
1999
|
}, z.core.$strip>]>;
|
|
1930
2000
|
export declare const ActivateSignalRequestSchema: z.ZodObject<{
|
|
1931
2001
|
signal_agent_segment_id: z.ZodString;
|
|
1932
|
-
|
|
2002
|
+
deployments: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
1933
2003
|
type: z.ZodLiteral<"platform">;
|
|
1934
2004
|
platform: z.ZodString;
|
|
1935
2005
|
account: z.ZodOptional<z.ZodString>;
|
|
@@ -1946,7 +2016,7 @@ export declare const ActivateSignalRequestSchema: z.ZodObject<{
|
|
|
1946
2016
|
agent_url: z.ZodString;
|
|
1947
2017
|
account: z.ZodOptional<z.ZodString>;
|
|
1948
2018
|
}, z.core.$strip>]>>;
|
|
1949
|
-
context: z.ZodOptional<z.
|
|
2019
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1950
2020
|
}, z.core.$strip>;
|
|
1951
2021
|
export declare const ActivateSignalResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1952
2022
|
deployments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -1999,42 +2069,52 @@ export declare const ActivateSignalResponseSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1999
2069
|
}, z.core.$strip>>;
|
|
2000
2070
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
2001
2071
|
}, z.core.$strip>]>;
|
|
2002
|
-
export declare const
|
|
2003
|
-
|
|
2072
|
+
export declare const MediaBuySchema: z.ZodObject<{
|
|
2073
|
+
media_buy_id: z.ZodString;
|
|
2004
2074
|
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
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>>;
|
|
2020
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">]>;
|
|
2021
2108
|
}, z.core.$strip>>;
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
placement_ids: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
2026
|
-
}, z.core.$strip>>>;
|
|
2027
|
-
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2028
|
-
agent_url: z.ZodString;
|
|
2029
|
-
id: z.ZodString;
|
|
2030
|
-
}, z.core.$strip>>>;
|
|
2031
|
-
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>;
|
|
2032
2112
|
}, z.core.$strip>;
|
|
2033
2113
|
export declare const GetProductsRequestSchema: z.ZodObject<{
|
|
2034
2114
|
brief: z.ZodOptional<z.ZodString>;
|
|
2035
|
-
brand_manifest: z.ZodOptional<z.ZodUnion<readonly [z.
|
|
2115
|
+
brand_manifest: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2036
2116
|
url: z.ZodOptional<z.ZodString>;
|
|
2037
|
-
name: z.
|
|
2117
|
+
name: z.ZodString;
|
|
2038
2118
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2039
2119
|
url: z.ZodString;
|
|
2040
2120
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2057,7 +2137,7 @@ export declare const GetProductsRequestSchema: z.ZodObject<{
|
|
|
2057
2137
|
tagline: z.ZodOptional<z.ZodString>;
|
|
2058
2138
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2059
2139
|
asset_id: z.ZodString;
|
|
2060
|
-
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">]>;
|
|
2061
2141
|
url: z.ZodString;
|
|
2062
2142
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2063
2143
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2092,7 +2172,7 @@ export declare const GetProductsRequestSchema: z.ZodObject<{
|
|
|
2092
2172
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
2093
2173
|
version: z.ZodOptional<z.ZodString>;
|
|
2094
2174
|
}, z.core.$strip>>;
|
|
2095
|
-
}, z.core.$strip
|
|
2175
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
2096
2176
|
filters: z.ZodOptional<z.ZodObject<{
|
|
2097
2177
|
delivery_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"guaranteed">, z.ZodLiteral<"non_guaranteed">]>>;
|
|
2098
2178
|
is_fixed_price: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2104,22 +2184,36 @@ export declare const GetProductsRequestSchema: z.ZodObject<{
|
|
|
2104
2184
|
standard_formats_only: z.ZodOptional<z.ZodBoolean>;
|
|
2105
2185
|
min_exposures: z.ZodOptional<z.ZodNumber>;
|
|
2106
2186
|
}, z.core.$strip>>;
|
|
2107
|
-
context: z.ZodOptional<z.
|
|
2187
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2108
2188
|
}, z.core.$strip>;
|
|
2109
2189
|
export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
2110
2190
|
products: z.ZodArray<z.ZodObject<{
|
|
2111
2191
|
product_id: z.ZodString;
|
|
2112
2192
|
name: z.ZodString;
|
|
2113
2193
|
description: z.ZodString;
|
|
2114
|
-
publisher_properties: z.ZodTuple<[z.ZodObject<{
|
|
2194
|
+
publisher_properties: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
2115
2195
|
publisher_domain: z.ZodString;
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
}, z.core.$strip>], z.ZodObject<{
|
|
2196
|
+
selection_type: z.ZodLiteral<"all">;
|
|
2197
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2119
2198
|
publisher_domain: z.ZodString;
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
}, 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>]>>;
|
|
2123
2217
|
format_ids: z.ZodArray<z.ZodObject<{
|
|
2124
2218
|
agent_url: z.ZodString;
|
|
2125
2219
|
id: z.ZodString;
|
|
@@ -2153,11 +2247,13 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2153
2247
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
2154
2248
|
rate: z.ZodNumber;
|
|
2155
2249
|
currency: z.ZodString;
|
|
2250
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2156
2251
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2157
2252
|
}, z.core.$strip>, z.ZodObject<{
|
|
2158
2253
|
pricing_option_id: z.ZodString;
|
|
2159
2254
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
2160
2255
|
currency: z.ZodString;
|
|
2256
|
+
is_fixed: z.ZodLiteral<false>;
|
|
2161
2257
|
price_guidance: z.ZodObject<{
|
|
2162
2258
|
floor: z.ZodNumber;
|
|
2163
2259
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2171,11 +2267,13 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2171
2267
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
2172
2268
|
rate: z.ZodNumber;
|
|
2173
2269
|
currency: z.ZodString;
|
|
2270
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2174
2271
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2175
2272
|
}, z.core.$strip>, z.ZodObject<{
|
|
2176
2273
|
pricing_option_id: z.ZodString;
|
|
2177
2274
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
2178
2275
|
currency: z.ZodString;
|
|
2276
|
+
is_fixed: z.ZodLiteral<false>;
|
|
2179
2277
|
price_guidance: z.ZodObject<{
|
|
2180
2278
|
floor: z.ZodNumber;
|
|
2181
2279
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2189,18 +2287,21 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2189
2287
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
2190
2288
|
rate: z.ZodNumber;
|
|
2191
2289
|
currency: z.ZodString;
|
|
2290
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2192
2291
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2193
2292
|
}, z.core.$strip>, z.ZodObject<{
|
|
2194
2293
|
pricing_option_id: z.ZodString;
|
|
2195
2294
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
2196
2295
|
rate: z.ZodNumber;
|
|
2197
2296
|
currency: z.ZodString;
|
|
2297
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2198
2298
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2199
2299
|
}, z.core.$strip>, z.ZodObject<{
|
|
2200
2300
|
pricing_option_id: z.ZodString;
|
|
2201
2301
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
2202
2302
|
rate: z.ZodNumber;
|
|
2203
2303
|
currency: z.ZodString;
|
|
2304
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2204
2305
|
parameters: z.ZodObject<{
|
|
2205
2306
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
2206
2307
|
duration_seconds: z.ZodNumber;
|
|
@@ -2212,6 +2313,7 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2212
2313
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
2213
2314
|
rate: z.ZodNumber;
|
|
2214
2315
|
currency: z.ZodString;
|
|
2316
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2215
2317
|
parameters: z.ZodObject<{
|
|
2216
2318
|
demographic: z.ZodString;
|
|
2217
2319
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2238,11 +2340,13 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2238
2340
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
2239
2341
|
rate: z.ZodNumber;
|
|
2240
2342
|
currency: z.ZodString;
|
|
2343
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2241
2344
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2242
2345
|
}, z.core.$strip>, z.ZodObject<{
|
|
2243
2346
|
pricing_option_id: z.ZodString;
|
|
2244
2347
|
pricing_model: z.ZodLiteral<"cpm">;
|
|
2245
2348
|
currency: z.ZodString;
|
|
2349
|
+
is_fixed: z.ZodLiteral<false>;
|
|
2246
2350
|
price_guidance: z.ZodObject<{
|
|
2247
2351
|
floor: z.ZodNumber;
|
|
2248
2352
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2256,11 +2360,13 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2256
2360
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
2257
2361
|
rate: z.ZodNumber;
|
|
2258
2362
|
currency: z.ZodString;
|
|
2363
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2259
2364
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2260
2365
|
}, z.core.$strip>, z.ZodObject<{
|
|
2261
2366
|
pricing_option_id: z.ZodString;
|
|
2262
2367
|
pricing_model: z.ZodLiteral<"vcpm">;
|
|
2263
2368
|
currency: z.ZodString;
|
|
2369
|
+
is_fixed: z.ZodLiteral<false>;
|
|
2264
2370
|
price_guidance: z.ZodObject<{
|
|
2265
2371
|
floor: z.ZodNumber;
|
|
2266
2372
|
p25: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2274,18 +2380,21 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2274
2380
|
pricing_model: z.ZodLiteral<"cpc">;
|
|
2275
2381
|
rate: z.ZodNumber;
|
|
2276
2382
|
currency: z.ZodString;
|
|
2383
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2277
2384
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2278
2385
|
}, z.core.$strip>, z.ZodObject<{
|
|
2279
2386
|
pricing_option_id: z.ZodString;
|
|
2280
2387
|
pricing_model: z.ZodLiteral<"cpcv">;
|
|
2281
2388
|
rate: z.ZodNumber;
|
|
2282
2389
|
currency: z.ZodString;
|
|
2390
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2283
2391
|
min_spend_per_package: z.ZodOptional<z.ZodNumber>;
|
|
2284
2392
|
}, z.core.$strip>, z.ZodObject<{
|
|
2285
2393
|
pricing_option_id: z.ZodString;
|
|
2286
2394
|
pricing_model: z.ZodLiteral<"cpv">;
|
|
2287
2395
|
rate: z.ZodNumber;
|
|
2288
2396
|
currency: z.ZodString;
|
|
2397
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2289
2398
|
parameters: z.ZodObject<{
|
|
2290
2399
|
view_threshold: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
2291
2400
|
duration_seconds: z.ZodNumber;
|
|
@@ -2297,6 +2406,7 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2297
2406
|
pricing_model: z.ZodLiteral<"cpp">;
|
|
2298
2407
|
rate: z.ZodNumber;
|
|
2299
2408
|
currency: z.ZodString;
|
|
2409
|
+
is_fixed: z.ZodLiteral<true>;
|
|
2300
2410
|
parameters: z.ZodObject<{
|
|
2301
2411
|
demographic: z.ZodString;
|
|
2302
2412
|
min_points: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2370,6 +2480,21 @@ export declare const GetProductsResponseSchema: z.ZodObject<{
|
|
|
2370
2480
|
}, z.core.$strip>>>;
|
|
2371
2481
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
2372
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>;
|
|
2373
2498
|
export declare const FormatSchema: z.ZodObject<{
|
|
2374
2499
|
format_id: z.ZodObject<{
|
|
2375
2500
|
agent_url: z.ZodString;
|
|
@@ -2414,19 +2539,20 @@ export declare const FormatSchema: z.ZodObject<{
|
|
|
2414
2539
|
}, z.core.$strip>;
|
|
2415
2540
|
}, z.core.$strip>>>;
|
|
2416
2541
|
assets_required: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2542
|
+
item_type: z.ZodLiteral<"individual">;
|
|
2417
2543
|
asset_id: z.ZodString;
|
|
2418
|
-
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">]>;
|
|
2419
2545
|
asset_role: z.ZodOptional<z.ZodString>;
|
|
2420
2546
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2421
2547
|
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2422
2548
|
}, z.core.$strip>, z.ZodObject<{
|
|
2549
|
+
item_type: z.ZodLiteral<"repeatable_group">;
|
|
2423
2550
|
asset_group_id: z.ZodString;
|
|
2424
|
-
repeatable: z.ZodLiteral<true>;
|
|
2425
2551
|
min_count: z.ZodNumber;
|
|
2426
2552
|
max_count: z.ZodNumber;
|
|
2427
2553
|
assets: z.ZodArray<z.ZodObject<{
|
|
2428
2554
|
asset_id: z.ZodString;
|
|
2429
|
-
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">]>;
|
|
2430
2556
|
asset_role: z.ZodOptional<z.ZodString>;
|
|
2431
2557
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2432
2558
|
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2545,9 +2671,9 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2545
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">]>>>;
|
|
2546
2672
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2547
2673
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
2548
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
2674
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
2549
2675
|
url: z.ZodOptional<z.ZodString>;
|
|
2550
|
-
name: z.
|
|
2676
|
+
name: z.ZodString;
|
|
2551
2677
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2552
2678
|
url: z.ZodString;
|
|
2553
2679
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2570,7 +2696,7 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2570
2696
|
tagline: z.ZodOptional<z.ZodString>;
|
|
2571
2697
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2572
2698
|
asset_id: z.ZodString;
|
|
2573
|
-
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">]>;
|
|
2574
2700
|
url: z.ZodString;
|
|
2575
2701
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2576
2702
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2605,7 +2731,7 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2605
2731
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
2606
2732
|
version: z.ZodOptional<z.ZodString>;
|
|
2607
2733
|
}, z.core.$strip>>;
|
|
2608
|
-
}, z.core.$strip
|
|
2734
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
2609
2735
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
2610
2736
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2611
2737
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2636,6 +2762,60 @@ export declare const PackageRequestSchema: z.ZodObject<{
|
|
|
2636
2762
|
approved: z.ZodOptional<z.ZodBoolean>;
|
|
2637
2763
|
}, z.core.$strip>>>;
|
|
2638
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>]>;
|
|
2639
2819
|
export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
2640
2820
|
creatives: z.ZodArray<z.ZodObject<{
|
|
2641
2821
|
creative_id: z.ZodString;
|
|
@@ -2703,9 +2883,9 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2703
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">]>>>;
|
|
2704
2884
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
2705
2885
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
2706
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
2886
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
2707
2887
|
url: z.ZodOptional<z.ZodString>;
|
|
2708
|
-
name: z.
|
|
2888
|
+
name: z.ZodString;
|
|
2709
2889
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2710
2890
|
url: z.ZodString;
|
|
2711
2891
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2728,7 +2908,7 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2728
2908
|
tagline: z.ZodOptional<z.ZodString>;
|
|
2729
2909
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2730
2910
|
asset_id: z.ZodString;
|
|
2731
|
-
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">]>;
|
|
2732
2912
|
url: z.ZodString;
|
|
2733
2913
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2734
2914
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2763,7 +2943,7 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2763
2943
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
2764
2944
|
version: z.ZodOptional<z.ZodString>;
|
|
2765
2945
|
}, z.core.$strip>>;
|
|
2766
|
-
}, z.core.$strip
|
|
2946
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
2767
2947
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
2768
2948
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2769
2949
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2806,7 +2986,7 @@ export declare const SyncCreativesRequestSchema: z.ZodObject<{
|
|
|
2806
2986
|
credentials: z.ZodString;
|
|
2807
2987
|
}, z.core.$strip>;
|
|
2808
2988
|
}, z.core.$strip>>;
|
|
2809
|
-
context: z.ZodOptional<z.
|
|
2989
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2810
2990
|
}, z.core.$strip>;
|
|
2811
2991
|
export declare const ListCreativesRequestSchema: z.ZodObject<{
|
|
2812
2992
|
filters: z.ZodOptional<z.ZodObject<{
|
|
@@ -2839,7 +3019,7 @@ export declare const ListCreativesRequestSchema: z.ZodObject<{
|
|
|
2839
3019
|
include_performance: z.ZodOptional<z.ZodBoolean>;
|
|
2840
3020
|
include_sub_assets: z.ZodOptional<z.ZodBoolean>;
|
|
2841
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">]>>>;
|
|
2842
|
-
context: z.ZodOptional<z.
|
|
3022
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2843
3023
|
}, z.core.$strip>;
|
|
2844
3024
|
export declare const UpdateMediaBuyRequestSchema: z.ZodIntersection<z.ZodObject<{
|
|
2845
3025
|
media_buy_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2856,7 +3036,7 @@ export declare const UpdateMediaBuyRequestSchema: z.ZodIntersection<z.ZodObject<
|
|
|
2856
3036
|
credentials: z.ZodString;
|
|
2857
3037
|
}, z.core.$strip>;
|
|
2858
3038
|
}, z.core.$strip>>;
|
|
2859
|
-
context: z.ZodOptional<z.
|
|
3039
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2860
3040
|
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2861
3041
|
export declare const GetMediaBuyDeliveryResponseSchema: z.ZodObject<{
|
|
2862
3042
|
notification_type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"scheduled">, z.ZodLiteral<"final">, z.ZodLiteral<"delayed">, z.ZodLiteral<"adjusted">]>>;
|
|
@@ -3078,9 +3258,9 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
3078
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">]>>>;
|
|
3079
3259
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3080
3260
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3081
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3261
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3082
3262
|
url: z.ZodOptional<z.ZodString>;
|
|
3083
|
-
name: z.
|
|
3263
|
+
name: z.ZodString;
|
|
3084
3264
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3085
3265
|
url: z.ZodString;
|
|
3086
3266
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3103,7 +3283,7 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
3103
3283
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3104
3284
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3105
3285
|
asset_id: z.ZodString;
|
|
3106
|
-
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">]>;
|
|
3107
3287
|
url: z.ZodString;
|
|
3108
3288
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3109
3289
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3138,7 +3318,7 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
3138
3318
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3139
3319
|
version: z.ZodOptional<z.ZodString>;
|
|
3140
3320
|
}, z.core.$strip>>;
|
|
3141
|
-
}, z.core.$strip
|
|
3321
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3142
3322
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3143
3323
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3144
3324
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3161,7 +3341,7 @@ export declare const BuildCreativeRequestSchema: z.ZodObject<{
|
|
|
3161
3341
|
agent_url: z.ZodString;
|
|
3162
3342
|
id: z.ZodString;
|
|
3163
3343
|
}, z.core.$strip>;
|
|
3164
|
-
context: z.ZodOptional<z.
|
|
3344
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3165
3345
|
}, z.core.$strip>;
|
|
3166
3346
|
export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
3167
3347
|
creative_manifest: z.ZodObject<{
|
|
@@ -3245,9 +3425,9 @@ export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObje
|
|
|
3245
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">]>>>;
|
|
3246
3426
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3247
3427
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3248
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3428
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3249
3429
|
url: z.ZodOptional<z.ZodString>;
|
|
3250
|
-
name: z.
|
|
3430
|
+
name: z.ZodString;
|
|
3251
3431
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3252
3432
|
url: z.ZodString;
|
|
3253
3433
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3270,7 +3450,7 @@ export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObje
|
|
|
3270
3450
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3271
3451
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3272
3452
|
asset_id: z.ZodString;
|
|
3273
|
-
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">]>;
|
|
3274
3454
|
url: z.ZodString;
|
|
3275
3455
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3276
3456
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3305,7 +3485,7 @@ export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObje
|
|
|
3305
3485
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3306
3486
|
version: z.ZodOptional<z.ZodString>;
|
|
3307
3487
|
}, z.core.$strip>>;
|
|
3308
|
-
}, z.core.$strip
|
|
3488
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3309
3489
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3310
3490
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3311
3491
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3344,6 +3524,7 @@ export declare const BuildCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObje
|
|
|
3344
3524
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
3345
3525
|
}, z.core.$strip>]>;
|
|
3346
3526
|
export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
3527
|
+
request_type: z.ZodLiteral<"single">;
|
|
3347
3528
|
format_id: z.ZodObject<{
|
|
3348
3529
|
agent_url: z.ZodString;
|
|
3349
3530
|
id: z.ZodString;
|
|
@@ -3429,9 +3610,9 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3429
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">]>>>;
|
|
3430
3611
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3431
3612
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3432
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3613
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3433
3614
|
url: z.ZodOptional<z.ZodString>;
|
|
3434
|
-
name: z.
|
|
3615
|
+
name: z.ZodString;
|
|
3435
3616
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3436
3617
|
url: z.ZodString;
|
|
3437
3618
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3454,7 +3635,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3454
3635
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3455
3636
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3456
3637
|
asset_id: z.ZodString;
|
|
3457
|
-
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">]>;
|
|
3458
3639
|
url: z.ZodString;
|
|
3459
3640
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3460
3641
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3489,7 +3670,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3489
3670
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3490
3671
|
version: z.ZodOptional<z.ZodString>;
|
|
3491
3672
|
}, z.core.$strip>>;
|
|
3492
|
-
}, z.core.$strip
|
|
3673
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3493
3674
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3494
3675
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3495
3676
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3515,8 +3696,9 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3515
3696
|
}, z.core.$strip>>>;
|
|
3516
3697
|
template_id: z.ZodOptional<z.ZodString>;
|
|
3517
3698
|
output_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"url">, z.ZodLiteral<"html">]>>;
|
|
3518
|
-
context: z.ZodOptional<z.
|
|
3699
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3519
3700
|
}, z.core.$strip>, z.ZodObject<{
|
|
3701
|
+
request_type: z.ZodLiteral<"batch">;
|
|
3520
3702
|
requests: z.ZodTuple<[z.ZodObject<{
|
|
3521
3703
|
format_id: z.ZodObject<{
|
|
3522
3704
|
agent_url: z.ZodString;
|
|
@@ -3603,9 +3785,9 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3603
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">]>>>;
|
|
3604
3786
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3605
3787
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3606
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3788
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3607
3789
|
url: z.ZodOptional<z.ZodString>;
|
|
3608
|
-
name: z.
|
|
3790
|
+
name: z.ZodString;
|
|
3609
3791
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3610
3792
|
url: z.ZodString;
|
|
3611
3793
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3628,7 +3810,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3628
3810
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3629
3811
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3630
3812
|
asset_id: z.ZodString;
|
|
3631
|
-
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">]>;
|
|
3632
3814
|
url: z.ZodString;
|
|
3633
3815
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3634
3816
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3663,7 +3845,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3663
3845
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3664
3846
|
version: z.ZodOptional<z.ZodString>;
|
|
3665
3847
|
}, z.core.$strip>>;
|
|
3666
|
-
}, z.core.$strip
|
|
3848
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3667
3849
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3668
3850
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3669
3851
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3775,9 +3957,9 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3775
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">]>>>;
|
|
3776
3958
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
3777
3959
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
3778
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
3960
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3779
3961
|
url: z.ZodOptional<z.ZodString>;
|
|
3780
|
-
name: z.
|
|
3962
|
+
name: z.ZodString;
|
|
3781
3963
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3782
3964
|
url: z.ZodString;
|
|
3783
3965
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3800,7 +3982,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3800
3982
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3801
3983
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3802
3984
|
asset_id: z.ZodString;
|
|
3803
|
-
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">]>;
|
|
3804
3986
|
url: z.ZodString;
|
|
3805
3987
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3806
3988
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3835,7 +4017,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3835
4017
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
3836
4018
|
version: z.ZodOptional<z.ZodString>;
|
|
3837
4019
|
}, z.core.$strip>>;
|
|
3838
|
-
}, z.core.$strip
|
|
4020
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
3839
4021
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
3840
4022
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3841
4023
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3863,9 +4045,10 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
3863
4045
|
output_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"url">, z.ZodLiteral<"html">]>>;
|
|
3864
4046
|
}, z.core.$strip>>;
|
|
3865
4047
|
output_format: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"url">, z.ZodLiteral<"html">]>>;
|
|
3866
|
-
context: z.ZodOptional<z.
|
|
4048
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3867
4049
|
}, z.core.$strip>]>;
|
|
3868
4050
|
export declare const PreviewCreativeResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
4051
|
+
response_type: z.ZodLiteral<"single">;
|
|
3869
4052
|
previews: z.ZodTuple<[z.ZodObject<{
|
|
3870
4053
|
preview_id: z.ZodString;
|
|
3871
4054
|
renders: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -4071,6 +4254,7 @@ export declare const PreviewCreativeResponseSchema: z.ZodUnion<readonly [z.ZodOb
|
|
|
4071
4254
|
expires_at: z.ZodString;
|
|
4072
4255
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
4073
4256
|
}, z.core.$strip>, z.ZodObject<{
|
|
4257
|
+
response_type: z.ZodLiteral<"batch">;
|
|
4074
4258
|
results: z.ZodTuple<[z.ZodUnion<readonly [z.ZodObject<{
|
|
4075
4259
|
success: z.ZodOptional<z.ZodLiteral<true>>;
|
|
4076
4260
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -4136,47 +4320,6 @@ export declare const GetSignalsResponseSchema: z.ZodObject<{
|
|
|
4136
4320
|
}, z.core.$strip>>>;
|
|
4137
4321
|
context: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
4138
4322
|
}, z.core.$strip>;
|
|
4139
|
-
export declare const MediaBuySchema: z.ZodObject<{
|
|
4140
|
-
media_buy_id: z.ZodString;
|
|
4141
|
-
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
4142
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"pending_activation">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
4143
|
-
promoted_offering: z.ZodString;
|
|
4144
|
-
total_budget: z.ZodNumber;
|
|
4145
|
-
packages: z.ZodArray<z.ZodObject<{
|
|
4146
|
-
package_id: z.ZodString;
|
|
4147
|
-
buyer_ref: z.ZodOptional<z.ZodString>;
|
|
4148
|
-
product_id: z.ZodOptional<z.ZodString>;
|
|
4149
|
-
budget: z.ZodOptional<z.ZodNumber>;
|
|
4150
|
-
pacing: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"even">, z.ZodLiteral<"asap">, z.ZodLiteral<"front_loaded">]>>;
|
|
4151
|
-
pricing_option_id: z.ZodOptional<z.ZodString>;
|
|
4152
|
-
bid_price: z.ZodOptional<z.ZodNumber>;
|
|
4153
|
-
impressions: z.ZodOptional<z.ZodNumber>;
|
|
4154
|
-
targeting_overlay: z.ZodOptional<z.ZodObject<{
|
|
4155
|
-
geo_country_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4156
|
-
geo_region_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4157
|
-
geo_metro_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4158
|
-
geo_postal_code_any_of: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4159
|
-
axe_include_segment: z.ZodOptional<z.ZodString>;
|
|
4160
|
-
axe_exclude_segment: z.ZodOptional<z.ZodString>;
|
|
4161
|
-
frequency_cap: z.ZodOptional<z.ZodObject<{
|
|
4162
|
-
suppress_minutes: z.ZodNumber;
|
|
4163
|
-
}, z.core.$strip>>;
|
|
4164
|
-
}, z.core.$strip>>;
|
|
4165
|
-
creative_assignments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4166
|
-
creative_id: z.ZodString;
|
|
4167
|
-
weight: z.ZodOptional<z.ZodNumber>;
|
|
4168
|
-
placement_ids: z.ZodOptional<z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
4169
|
-
}, z.core.$strip>>>;
|
|
4170
|
-
format_ids_to_provide: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4171
|
-
agent_url: z.ZodString;
|
|
4172
|
-
id: z.ZodString;
|
|
4173
|
-
}, z.core.$strip>>>;
|
|
4174
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"draft">, z.ZodLiteral<"active">, z.ZodLiteral<"paused">, z.ZodLiteral<"completed">]>;
|
|
4175
|
-
}, z.core.$strip>>;
|
|
4176
|
-
creative_deadline: z.ZodOptional<z.ZodString>;
|
|
4177
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
4178
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
4179
|
-
}, z.core.$strip>;
|
|
4180
4323
|
export declare const ListCreativeFormatsResponseSchema: z.ZodObject<{
|
|
4181
4324
|
formats: z.ZodArray<z.ZodObject<{
|
|
4182
4325
|
format_id: z.ZodObject<{
|
|
@@ -4222,19 +4365,20 @@ export declare const ListCreativeFormatsResponseSchema: z.ZodObject<{
|
|
|
4222
4365
|
}, z.core.$strip>;
|
|
4223
4366
|
}, z.core.$strip>>>;
|
|
4224
4367
|
assets_required: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4368
|
+
item_type: z.ZodLiteral<"individual">;
|
|
4225
4369
|
asset_id: z.ZodString;
|
|
4226
|
-
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">]>;
|
|
4227
4371
|
asset_role: z.ZodOptional<z.ZodString>;
|
|
4228
4372
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
4229
4373
|
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4230
4374
|
}, z.core.$strip>, z.ZodObject<{
|
|
4375
|
+
item_type: z.ZodLiteral<"repeatable_group">;
|
|
4231
4376
|
asset_group_id: z.ZodString;
|
|
4232
|
-
repeatable: z.ZodLiteral<true>;
|
|
4233
4377
|
min_count: z.ZodNumber;
|
|
4234
4378
|
max_count: z.ZodNumber;
|
|
4235
4379
|
assets: z.ZodArray<z.ZodObject<{
|
|
4236
4380
|
asset_id: z.ZodString;
|
|
4237
|
-
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">]>;
|
|
4238
4382
|
asset_role: z.ZodOptional<z.ZodString>;
|
|
4239
4383
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
4240
4384
|
requirements: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -4370,9 +4514,9 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4370
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">]>>>;
|
|
4371
4515
|
companion_ads: z.ZodOptional<z.ZodBoolean>;
|
|
4372
4516
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
4373
|
-
brand_manifest: z.ZodUnion<readonly [z.
|
|
4517
|
+
brand_manifest: z.ZodUnion<readonly [z.ZodObject<{
|
|
4374
4518
|
url: z.ZodOptional<z.ZodString>;
|
|
4375
|
-
name: z.
|
|
4519
|
+
name: z.ZodString;
|
|
4376
4520
|
logos: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4377
4521
|
url: z.ZodString;
|
|
4378
4522
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -4395,7 +4539,7 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4395
4539
|
tagline: z.ZodOptional<z.ZodString>;
|
|
4396
4540
|
assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4397
4541
|
asset_id: z.ZodString;
|
|
4398
|
-
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">]>;
|
|
4399
4543
|
url: z.ZodString;
|
|
4400
4544
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4401
4545
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4430,7 +4574,7 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4430
4574
|
updated_date: z.ZodOptional<z.ZodString>;
|
|
4431
4575
|
version: z.ZodOptional<z.ZodString>;
|
|
4432
4576
|
}, z.core.$strip>>;
|
|
4433
|
-
}, z.core.$strip
|
|
4577
|
+
}, z.core.$strip>, z.ZodString]>;
|
|
4434
4578
|
product_selectors: z.ZodOptional<z.ZodObject<{
|
|
4435
4579
|
manifest_skus: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4436
4580
|
manifest_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -4461,7 +4605,67 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4461
4605
|
approved: z.ZodOptional<z.ZodBoolean>;
|
|
4462
4606
|
}, z.core.$strip>>>;
|
|
4463
4607
|
}, z.core.$strip>>;
|
|
4464
|
-
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]>;
|
|
4465
4669
|
po_number: z.ZodOptional<z.ZodString>;
|
|
4466
4670
|
start_time: z.ZodUnion<readonly [z.ZodLiteral<"asap">, z.ZodString]>;
|
|
4467
4671
|
end_time: z.ZodString;
|
|
@@ -4476,6 +4680,6 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
|
|
|
4476
4680
|
reporting_frequency: z.ZodUnion<readonly [z.ZodLiteral<"hourly">, z.ZodLiteral<"daily">, z.ZodLiteral<"monthly">]>;
|
|
4477
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">]>>>;
|
|
4478
4682
|
}, z.core.$strip>>>;
|
|
4479
|
-
context: z.ZodOptional<z.
|
|
4683
|
+
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4480
4684
|
}, z.core.$strip>;
|
|
4481
4685
|
//# sourceMappingURL=schemas.generated.d.ts.map
|