@postrun/js 0.1.0 → 0.2.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.
@@ -16,13 +16,15 @@ declare const zErrorCode: z.ZodEnum<{
16
16
  idempotency_key_invalid: "idempotency_key_invalid";
17
17
  idempotency_key_reused: "idempotency_key_reused";
18
18
  idempotency_request_in_progress: "idempotency_request_in_progress";
19
- source_url_unsupported: "source_url_unsupported";
20
19
  account_not_available: "account_not_available";
21
20
  connection_reauth_required: "connection_reauth_required";
22
21
  connection_not_pending: "connection_not_pending";
22
+ connection_in_use: "connection_in_use";
23
23
  not_implemented: "not_implemented";
24
+ connection_discovery_failed: "connection_discovery_failed";
24
25
  media_processing: "media_processing";
25
26
  not_publishable: "not_publishable";
27
+ profile_scope_invalid: "profile_scope_invalid";
26
28
  media_unprobeable: "media_unprobeable";
27
29
  media_too_large: "media_too_large";
28
30
  media_aspect_ratio_unsupported: "media_aspect_ratio_unsupported";
@@ -42,9 +44,12 @@ declare const zErrorCode: z.ZodEnum<{
42
44
  video_aspect_unsupported: "video_aspect_unsupported";
43
45
  video_duration_too_short: "video_duration_too_short";
44
46
  video_duration_exceeds_max: "video_duration_exceeds_max";
47
+ video_transform_failed: "video_transform_failed";
48
+ media_fetch_failed: "media_fetch_failed";
45
49
  document_format_unsupported: "document_format_unsupported";
46
50
  document_too_large: "document_too_large";
47
51
  document_too_many_pages: "document_too_many_pages";
52
+ media_format_indeterminate: "media_format_indeterminate";
48
53
  media_count_invalid: "media_count_invalid";
49
54
  body_too_long: "body_too_long";
50
55
  content_missing: "content_missing";
@@ -54,6 +59,7 @@ declare const zErrorCode: z.ZodEnum<{
54
59
  media_type_mismatch: "media_type_mismatch";
55
60
  tag_limit_exceeded: "tag_limit_exceeded";
56
61
  reel_field_on_non_reel: "reel_field_on_non_reel";
62
+ field_placement_invalid: "field_placement_invalid";
57
63
  media_not_ready: "media_not_ready";
58
64
  media_failed: "media_failed";
59
65
  media_unsupported: "media_unsupported";
@@ -81,6 +87,12 @@ declare const zErrorCode: z.ZodEnum<{
81
87
  facebook_rate_limited: "facebook_rate_limited";
82
88
  facebook_not_authorized: "facebook_not_authorized";
83
89
  facebook_publish_failed: "facebook_publish_failed";
90
+ tiktok_privacy_not_allowed: "tiktok_privacy_not_allowed";
91
+ tiktok_duration_exceeds_max: "tiktok_duration_exceeds_max";
92
+ tiktok_media_processing: "tiktok_media_processing";
93
+ tiktok_not_authorized: "tiktok_not_authorized";
94
+ tiktok_rate_limited: "tiktok_rate_limited";
95
+ tiktok_publish_failed: "tiktok_publish_failed";
84
96
  connection_platform_mismatch: "connection_platform_mismatch";
85
97
  }>;
86
98
  declare const zProfilesListQuery: z.ZodObject<{
@@ -179,6 +191,16 @@ declare const zConnectionsListByProfilePath: z.ZodObject<{
179
191
  declare const zConnectionsListByProfileQuery: z.ZodObject<{
180
192
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
181
193
  offset: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
194
+ nango_connection_id: z.ZodOptional<z.ZodString>;
195
+ kind: z.ZodOptional<z.ZodEnum<{
196
+ posting: "posting";
197
+ ads: "ads";
198
+ }>>;
199
+ status: z.ZodOptional<z.ZodEnum<{
200
+ pending: "pending";
201
+ active: "active";
202
+ needs_reauth: "needs_reauth";
203
+ }>>;
182
204
  }, z.core.$strip>;
183
205
  /**
184
206
  * OK
@@ -198,8 +220,21 @@ declare const zConnectionsListByProfileResponse: z.ZodObject<{
198
220
  instagram: "instagram";
199
221
  tiktok: "tiktok";
200
222
  }>;
223
+ kind: z.ZodEnum<{
224
+ posting: "posting";
225
+ ads: "ads";
226
+ }>;
227
+ status: z.ZodEnum<{
228
+ pending: "pending";
229
+ active: "active";
230
+ needs_reauth: "needs_reauth";
231
+ }>;
201
232
  external_account_id: z.ZodNullable<z.ZodString>;
202
233
  external_account_name: z.ZodNullable<z.ZodString>;
234
+ username: z.ZodNullable<z.ZodString>;
235
+ avatar_url: z.ZodNullable<z.ZodString>;
236
+ profile_url: z.ZodNullable<z.ZodString>;
237
+ reauth_at: z.ZodNullable<z.ZodString>;
203
238
  currency: z.ZodNullable<z.ZodString>;
204
239
  created_at: z.ZodNullable<z.ZodString>;
205
240
  updated_at: z.ZodNullable<z.ZodString>;
@@ -239,8 +274,21 @@ declare const zConnectionsGetResponse: z.ZodObject<{
239
274
  instagram: "instagram";
240
275
  tiktok: "tiktok";
241
276
  }>;
277
+ kind: z.ZodEnum<{
278
+ posting: "posting";
279
+ ads: "ads";
280
+ }>;
281
+ status: z.ZodEnum<{
282
+ pending: "pending";
283
+ active: "active";
284
+ needs_reauth: "needs_reauth";
285
+ }>;
242
286
  external_account_id: z.ZodNullable<z.ZodString>;
243
287
  external_account_name: z.ZodNullable<z.ZodString>;
288
+ username: z.ZodNullable<z.ZodString>;
289
+ avatar_url: z.ZodNullable<z.ZodString>;
290
+ profile_url: z.ZodNullable<z.ZodString>;
291
+ reauth_at: z.ZodNullable<z.ZodString>;
244
292
  currency: z.ZodNullable<z.ZodString>;
245
293
  created_at: z.ZodNullable<z.ZodString>;
246
294
  updated_at: z.ZodNullable<z.ZodString>;
@@ -267,8 +315,21 @@ declare const zConnectionsSelectResponse: z.ZodObject<{
267
315
  instagram: "instagram";
268
316
  tiktok: "tiktok";
269
317
  }>;
318
+ kind: z.ZodEnum<{
319
+ posting: "posting";
320
+ ads: "ads";
321
+ }>;
322
+ status: z.ZodEnum<{
323
+ pending: "pending";
324
+ active: "active";
325
+ needs_reauth: "needs_reauth";
326
+ }>;
270
327
  external_account_id: z.ZodNullable<z.ZodString>;
271
328
  external_account_name: z.ZodNullable<z.ZodString>;
329
+ username: z.ZodNullable<z.ZodString>;
330
+ avatar_url: z.ZodNullable<z.ZodString>;
331
+ profile_url: z.ZodNullable<z.ZodString>;
332
+ reauth_at: z.ZodNullable<z.ZodString>;
272
333
  currency: z.ZodNullable<z.ZodString>;
273
334
  created_at: z.ZodNullable<z.ZodString>;
274
335
  updated_at: z.ZodNullable<z.ZodString>;
@@ -285,9 +346,15 @@ declare const zConnectionsListAccountsResponse: z.ZodObject<{
285
346
  external_account_id: z.ZodString;
286
347
  name: z.ZodNullable<z.ZodString>;
287
348
  currency: z.ZodNullable<z.ZodString>;
349
+ username: z.ZodOptional<z.ZodNullable<z.ZodString>>;
350
+ avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
351
+ profile_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
288
352
  instagram: z.ZodOptional<z.ZodNullable<z.ZodObject<{
289
353
  external_account_id: z.ZodString;
290
354
  name: z.ZodNullable<z.ZodString>;
355
+ username: z.ZodOptional<z.ZodNullable<z.ZodString>>;
356
+ avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
357
+ profile_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
291
358
  }, z.core.$strip>>>;
292
359
  }, z.core.$strip>>;
293
360
  }, z.core.$strip>;
@@ -295,7 +362,6 @@ declare const zConnectionsConnectBody: z.ZodObject<{
295
362
  platform: z.ZodEnum<{
296
363
  meta_ads: "meta_ads";
297
364
  google_ads: "google_ads";
298
- tiktok_ads: "tiktok_ads";
299
365
  x: "x";
300
366
  linkedin: "linkedin";
301
367
  facebook_page: "facebook_page";
@@ -309,21 +375,194 @@ declare const zConnectionsConnectPath: z.ZodObject<{
309
375
  * OK
310
376
  */
311
377
  declare const zConnectionsConnectResponse: z.ZodObject<{
312
- connect_session_token: z.ZodString;
313
- connect_url: z.ZodString;
378
+ hosted_connect_url: z.ZodString;
379
+ connect_token: z.ZodString;
314
380
  expires_at: z.ZodString;
315
381
  }, z.core.$strip>;
382
+ declare const zMediaListQuery: z.ZodObject<{
383
+ limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
384
+ offset: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
385
+ profile_id: z.ZodOptional<z.ZodString>;
386
+ status: z.ZodOptional<z.ZodEnum<{
387
+ uploading: "uploading";
388
+ processing: "processing";
389
+ ready: "ready";
390
+ failed: "failed";
391
+ }>>;
392
+ kind: z.ZodOptional<z.ZodEnum<{
393
+ image: "image";
394
+ video: "video";
395
+ gif: "gif";
396
+ document: "document";
397
+ }>>;
398
+ external_id: z.ZodOptional<z.ZodString>;
399
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
400
+ }, z.core.$strip>;
401
+ /**
402
+ * OK
403
+ */
404
+ declare const zMediaListResponse: z.ZodObject<{
405
+ object: z.ZodLiteral<"list">;
406
+ data: z.ZodArray<z.ZodObject<{
407
+ id: z.ZodString;
408
+ object: z.ZodLiteral<"media">;
409
+ profile_id: z.ZodString;
410
+ kind: z.ZodNullable<z.ZodEnum<{
411
+ image: "image";
412
+ video: "video";
413
+ gif: "gif";
414
+ document: "document";
415
+ }>>;
416
+ content_type: z.ZodNullable<z.ZodString>;
417
+ status: z.ZodEnum<{
418
+ uploading: "uploading";
419
+ processing: "processing";
420
+ ready: "ready";
421
+ failed: "failed";
422
+ }>;
423
+ raw: z.ZodBoolean;
424
+ error: z.ZodNullable<z.ZodObject<{
425
+ code: z.ZodEnum<{
426
+ media_unprobeable: "media_unprobeable";
427
+ media_too_large: "media_too_large";
428
+ media_aspect_ratio_unsupported: "media_aspect_ratio_unsupported";
429
+ media_resolution_too_low: "media_resolution_too_low";
430
+ media_gif_unsupported: "media_gif_unsupported";
431
+ media_format_recompressed: "media_format_recompressed";
432
+ media_resolution_downscaled: "media_resolution_downscaled";
433
+ video_container_unsupported: "video_container_unsupported";
434
+ video_codec_unsupported: "video_codec_unsupported";
435
+ video_audio_codec_unsupported: "video_audio_codec_unsupported";
436
+ video_too_large: "video_too_large";
437
+ video_too_small: "video_too_small";
438
+ video_dimensions_unsupported: "video_dimensions_unsupported";
439
+ video_dimensions_too_large: "video_dimensions_too_large";
440
+ video_fps_unsupported: "video_fps_unsupported";
441
+ video_fps_too_low: "video_fps_too_low";
442
+ video_aspect_unsupported: "video_aspect_unsupported";
443
+ video_duration_too_short: "video_duration_too_short";
444
+ video_duration_exceeds_max: "video_duration_exceeds_max";
445
+ video_transform_failed: "video_transform_failed";
446
+ media_fetch_failed: "media_fetch_failed";
447
+ document_format_unsupported: "document_format_unsupported";
448
+ document_too_large: "document_too_large";
449
+ document_too_many_pages: "document_too_many_pages";
450
+ media_format_indeterminate: "media_format_indeterminate";
451
+ media_unsupported: "media_unsupported";
452
+ }>;
453
+ message: z.ZodString;
454
+ hint: z.ZodOptional<z.ZodString>;
455
+ allowed: z.ZodOptional<z.ZodArray<z.ZodString>>;
456
+ got: z.ZodOptional<z.ZodString>;
457
+ }, z.core.$strip>>;
458
+ source: z.ZodNullable<z.ZodObject<{
459
+ format: z.ZodString;
460
+ bytes: z.ZodInt;
461
+ width: z.ZodNullable<z.ZodInt>;
462
+ height: z.ZodNullable<z.ZodInt>;
463
+ duration_ms: z.ZodNullable<z.ZodInt>;
464
+ }, z.core.$strip>>;
465
+ alt_text: z.ZodNullable<z.ZodString>;
466
+ per_platform: z.ZodRecord<z.ZodString, z.ZodObject<{
467
+ status: z.ZodEnum<{
468
+ processing: "processing";
469
+ ready: "ready";
470
+ failed: "failed";
471
+ }>;
472
+ url: z.ZodNullable<z.ZodString>;
473
+ width: z.ZodNullable<z.ZodInt>;
474
+ height: z.ZodNullable<z.ZodInt>;
475
+ bytes: z.ZodNullable<z.ZodInt>;
476
+ warnings: z.ZodArray<z.ZodObject<{
477
+ code: z.ZodEnum<{
478
+ media_unprobeable: "media_unprobeable";
479
+ media_too_large: "media_too_large";
480
+ media_aspect_ratio_unsupported: "media_aspect_ratio_unsupported";
481
+ media_resolution_too_low: "media_resolution_too_low";
482
+ media_gif_unsupported: "media_gif_unsupported";
483
+ media_format_recompressed: "media_format_recompressed";
484
+ media_resolution_downscaled: "media_resolution_downscaled";
485
+ video_container_unsupported: "video_container_unsupported";
486
+ video_codec_unsupported: "video_codec_unsupported";
487
+ video_audio_codec_unsupported: "video_audio_codec_unsupported";
488
+ video_too_large: "video_too_large";
489
+ video_too_small: "video_too_small";
490
+ video_dimensions_unsupported: "video_dimensions_unsupported";
491
+ video_dimensions_too_large: "video_dimensions_too_large";
492
+ video_fps_unsupported: "video_fps_unsupported";
493
+ video_fps_too_low: "video_fps_too_low";
494
+ video_aspect_unsupported: "video_aspect_unsupported";
495
+ video_duration_too_short: "video_duration_too_short";
496
+ video_duration_exceeds_max: "video_duration_exceeds_max";
497
+ video_transform_failed: "video_transform_failed";
498
+ media_fetch_failed: "media_fetch_failed";
499
+ document_format_unsupported: "document_format_unsupported";
500
+ document_too_large: "document_too_large";
501
+ document_too_many_pages: "document_too_many_pages";
502
+ media_format_indeterminate: "media_format_indeterminate";
503
+ media_unsupported: "media_unsupported";
504
+ }>;
505
+ message: z.ZodString;
506
+ hint: z.ZodOptional<z.ZodString>;
507
+ allowed: z.ZodOptional<z.ZodArray<z.ZodString>>;
508
+ got: z.ZodOptional<z.ZodString>;
509
+ }, z.core.$strip>>;
510
+ errors: z.ZodArray<z.ZodObject<{
511
+ code: z.ZodEnum<{
512
+ media_unprobeable: "media_unprobeable";
513
+ media_too_large: "media_too_large";
514
+ media_aspect_ratio_unsupported: "media_aspect_ratio_unsupported";
515
+ media_resolution_too_low: "media_resolution_too_low";
516
+ media_gif_unsupported: "media_gif_unsupported";
517
+ media_format_recompressed: "media_format_recompressed";
518
+ media_resolution_downscaled: "media_resolution_downscaled";
519
+ video_container_unsupported: "video_container_unsupported";
520
+ video_codec_unsupported: "video_codec_unsupported";
521
+ video_audio_codec_unsupported: "video_audio_codec_unsupported";
522
+ video_too_large: "video_too_large";
523
+ video_too_small: "video_too_small";
524
+ video_dimensions_unsupported: "video_dimensions_unsupported";
525
+ video_dimensions_too_large: "video_dimensions_too_large";
526
+ video_fps_unsupported: "video_fps_unsupported";
527
+ video_fps_too_low: "video_fps_too_low";
528
+ video_aspect_unsupported: "video_aspect_unsupported";
529
+ video_duration_too_short: "video_duration_too_short";
530
+ video_duration_exceeds_max: "video_duration_exceeds_max";
531
+ video_transform_failed: "video_transform_failed";
532
+ media_fetch_failed: "media_fetch_failed";
533
+ document_format_unsupported: "document_format_unsupported";
534
+ document_too_large: "document_too_large";
535
+ document_too_many_pages: "document_too_many_pages";
536
+ media_format_indeterminate: "media_format_indeterminate";
537
+ media_unsupported: "media_unsupported";
538
+ }>;
539
+ message: z.ZodString;
540
+ hint: z.ZodOptional<z.ZodString>;
541
+ allowed: z.ZodOptional<z.ZodArray<z.ZodString>>;
542
+ got: z.ZodOptional<z.ZodString>;
543
+ }, z.core.$strip>>;
544
+ }, z.core.$strip>>;
545
+ external_id: z.ZodNullable<z.ZodString>;
546
+ metadata: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
547
+ created_at: z.ZodString;
548
+ updated_at: z.ZodString;
549
+ }, z.core.$strip>>;
550
+ total: z.ZodInt;
551
+ limit: z.ZodInt;
552
+ offset: z.ZodInt;
553
+ has_more: z.ZodBoolean;
554
+ }, z.core.$strip>;
316
555
  /**
317
- * Create a media asset via the signed direct upload target (source_url is reserved/unsupported in v1).
556
+ * Create a media asset — either via the signed direct upload target (omit source_url) or by importing from a public https source_url (we fetch + validate + transform + store). Size limits: a direct-upload video may be up to 5 GB; all other direct uploads and any source_url import must be 1 GB or smaller. A file over its limit is rejected with `media_too_large`.
318
557
  */
319
558
  declare const zMediaCreateBody: z.ZodObject<{
320
559
  profile_id: z.ZodString;
321
- kind: z.ZodEnum<{
560
+ kind: z.ZodOptional<z.ZodEnum<{
322
561
  image: "image";
323
562
  video: "video";
324
563
  gif: "gif";
325
564
  document: "document";
326
- }>;
565
+ }>>;
327
566
  content_type: z.ZodOptional<z.ZodString>;
328
567
  source_url: z.ZodOptional<z.ZodURL>;
329
568
  targets: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -346,12 +585,13 @@ declare const zMediaCreateResponse: z.ZodObject<{
346
585
  id: z.ZodString;
347
586
  object: z.ZodLiteral<"media">;
348
587
  profile_id: z.ZodString;
349
- kind: z.ZodEnum<{
588
+ kind: z.ZodNullable<z.ZodEnum<{
350
589
  image: "image";
351
590
  video: "video";
352
591
  gif: "gif";
353
592
  document: "document";
354
- }>;
593
+ }>>;
594
+ content_type: z.ZodNullable<z.ZodString>;
355
595
  status: z.ZodEnum<{
356
596
  uploading: "uploading";
357
597
  processing: "processing";
@@ -380,9 +620,12 @@ declare const zMediaCreateResponse: z.ZodObject<{
380
620
  video_aspect_unsupported: "video_aspect_unsupported";
381
621
  video_duration_too_short: "video_duration_too_short";
382
622
  video_duration_exceeds_max: "video_duration_exceeds_max";
623
+ video_transform_failed: "video_transform_failed";
624
+ media_fetch_failed: "media_fetch_failed";
383
625
  document_format_unsupported: "document_format_unsupported";
384
626
  document_too_large: "document_too_large";
385
627
  document_too_many_pages: "document_too_many_pages";
628
+ media_format_indeterminate: "media_format_indeterminate";
386
629
  media_unsupported: "media_unsupported";
387
630
  }>;
388
631
  message: z.ZodString;
@@ -429,9 +672,12 @@ declare const zMediaCreateResponse: z.ZodObject<{
429
672
  video_aspect_unsupported: "video_aspect_unsupported";
430
673
  video_duration_too_short: "video_duration_too_short";
431
674
  video_duration_exceeds_max: "video_duration_exceeds_max";
675
+ video_transform_failed: "video_transform_failed";
676
+ media_fetch_failed: "media_fetch_failed";
432
677
  document_format_unsupported: "document_format_unsupported";
433
678
  document_too_large: "document_too_large";
434
679
  document_too_many_pages: "document_too_many_pages";
680
+ media_format_indeterminate: "media_format_indeterminate";
435
681
  media_unsupported: "media_unsupported";
436
682
  }>;
437
683
  message: z.ZodString;
@@ -460,9 +706,12 @@ declare const zMediaCreateResponse: z.ZodObject<{
460
706
  video_aspect_unsupported: "video_aspect_unsupported";
461
707
  video_duration_too_short: "video_duration_too_short";
462
708
  video_duration_exceeds_max: "video_duration_exceeds_max";
709
+ video_transform_failed: "video_transform_failed";
710
+ media_fetch_failed: "media_fetch_failed";
463
711
  document_format_unsupported: "document_format_unsupported";
464
712
  document_too_large: "document_too_large";
465
713
  document_too_many_pages: "document_too_many_pages";
714
+ media_format_indeterminate: "media_format_indeterminate";
466
715
  media_unsupported: "media_unsupported";
467
716
  }>;
468
717
  message: z.ZodString;
@@ -503,12 +752,13 @@ declare const zMediaGetResponse: z.ZodObject<{
503
752
  id: z.ZodString;
504
753
  object: z.ZodLiteral<"media">;
505
754
  profile_id: z.ZodString;
506
- kind: z.ZodEnum<{
755
+ kind: z.ZodNullable<z.ZodEnum<{
507
756
  image: "image";
508
757
  video: "video";
509
758
  gif: "gif";
510
759
  document: "document";
511
- }>;
760
+ }>>;
761
+ content_type: z.ZodNullable<z.ZodString>;
512
762
  status: z.ZodEnum<{
513
763
  uploading: "uploading";
514
764
  processing: "processing";
@@ -537,9 +787,12 @@ declare const zMediaGetResponse: z.ZodObject<{
537
787
  video_aspect_unsupported: "video_aspect_unsupported";
538
788
  video_duration_too_short: "video_duration_too_short";
539
789
  video_duration_exceeds_max: "video_duration_exceeds_max";
790
+ video_transform_failed: "video_transform_failed";
791
+ media_fetch_failed: "media_fetch_failed";
540
792
  document_format_unsupported: "document_format_unsupported";
541
793
  document_too_large: "document_too_large";
542
794
  document_too_many_pages: "document_too_many_pages";
795
+ media_format_indeterminate: "media_format_indeterminate";
543
796
  media_unsupported: "media_unsupported";
544
797
  }>;
545
798
  message: z.ZodString;
@@ -586,9 +839,12 @@ declare const zMediaGetResponse: z.ZodObject<{
586
839
  video_aspect_unsupported: "video_aspect_unsupported";
587
840
  video_duration_too_short: "video_duration_too_short";
588
841
  video_duration_exceeds_max: "video_duration_exceeds_max";
842
+ video_transform_failed: "video_transform_failed";
843
+ media_fetch_failed: "media_fetch_failed";
589
844
  document_format_unsupported: "document_format_unsupported";
590
845
  document_too_large: "document_too_large";
591
846
  document_too_many_pages: "document_too_many_pages";
847
+ media_format_indeterminate: "media_format_indeterminate";
592
848
  media_unsupported: "media_unsupported";
593
849
  }>;
594
850
  message: z.ZodString;
@@ -617,9 +873,12 @@ declare const zMediaGetResponse: z.ZodObject<{
617
873
  video_aspect_unsupported: "video_aspect_unsupported";
618
874
  video_duration_too_short: "video_duration_too_short";
619
875
  video_duration_exceeds_max: "video_duration_exceeds_max";
876
+ video_transform_failed: "video_transform_failed";
877
+ media_fetch_failed: "media_fetch_failed";
620
878
  document_format_unsupported: "document_format_unsupported";
621
879
  document_too_large: "document_too_large";
622
880
  document_too_many_pages: "document_too_many_pages";
881
+ media_format_indeterminate: "media_format_indeterminate";
623
882
  media_unsupported: "media_unsupported";
624
883
  }>;
625
884
  message: z.ZodString;
@@ -656,12 +915,13 @@ declare const zMediaUpdateResponse: z.ZodObject<{
656
915
  id: z.ZodString;
657
916
  object: z.ZodLiteral<"media">;
658
917
  profile_id: z.ZodString;
659
- kind: z.ZodEnum<{
918
+ kind: z.ZodNullable<z.ZodEnum<{
660
919
  image: "image";
661
920
  video: "video";
662
921
  gif: "gif";
663
922
  document: "document";
664
- }>;
923
+ }>>;
924
+ content_type: z.ZodNullable<z.ZodString>;
665
925
  status: z.ZodEnum<{
666
926
  uploading: "uploading";
667
927
  processing: "processing";
@@ -690,9 +950,12 @@ declare const zMediaUpdateResponse: z.ZodObject<{
690
950
  video_aspect_unsupported: "video_aspect_unsupported";
691
951
  video_duration_too_short: "video_duration_too_short";
692
952
  video_duration_exceeds_max: "video_duration_exceeds_max";
953
+ video_transform_failed: "video_transform_failed";
954
+ media_fetch_failed: "media_fetch_failed";
693
955
  document_format_unsupported: "document_format_unsupported";
694
956
  document_too_large: "document_too_large";
695
957
  document_too_many_pages: "document_too_many_pages";
958
+ media_format_indeterminate: "media_format_indeterminate";
696
959
  media_unsupported: "media_unsupported";
697
960
  }>;
698
961
  message: z.ZodString;
@@ -739,9 +1002,12 @@ declare const zMediaUpdateResponse: z.ZodObject<{
739
1002
  video_aspect_unsupported: "video_aspect_unsupported";
740
1003
  video_duration_too_short: "video_duration_too_short";
741
1004
  video_duration_exceeds_max: "video_duration_exceeds_max";
1005
+ video_transform_failed: "video_transform_failed";
1006
+ media_fetch_failed: "media_fetch_failed";
742
1007
  document_format_unsupported: "document_format_unsupported";
743
1008
  document_too_large: "document_too_large";
744
1009
  document_too_many_pages: "document_too_many_pages";
1010
+ media_format_indeterminate: "media_format_indeterminate";
745
1011
  media_unsupported: "media_unsupported";
746
1012
  }>;
747
1013
  message: z.ZodString;
@@ -770,9 +1036,12 @@ declare const zMediaUpdateResponse: z.ZodObject<{
770
1036
  video_aspect_unsupported: "video_aspect_unsupported";
771
1037
  video_duration_too_short: "video_duration_too_short";
772
1038
  video_duration_exceeds_max: "video_duration_exceeds_max";
1039
+ video_transform_failed: "video_transform_failed";
1040
+ media_fetch_failed: "media_fetch_failed";
773
1041
  document_format_unsupported: "document_format_unsupported";
774
1042
  document_too_large: "document_too_large";
775
1043
  document_too_many_pages: "document_too_many_pages";
1044
+ media_format_indeterminate: "media_format_indeterminate";
776
1045
  media_unsupported: "media_unsupported";
777
1046
  }>;
778
1047
  message: z.ZodString;
@@ -1047,6 +1316,37 @@ declare const zPostsCreateBody: z.ZodObject<{
1047
1316
  settings: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1048
1317
  link: z.ZodOptional<z.ZodURL>;
1049
1318
  }, z.core.$strip>>>;
1319
+ }, z.core.$strip>, z.ZodObject<{
1320
+ platform: z.ZodLiteral<"tiktok">;
1321
+ post_type: z.ZodEnum<{
1322
+ video: "video";
1323
+ single_image: "single_image";
1324
+ carousel: "carousel";
1325
+ }>;
1326
+ connection_id: z.ZodString;
1327
+ body: z.ZodOptional<z.ZodString>;
1328
+ media: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1329
+ media_id: z.ZodString;
1330
+ crop_box: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1331
+ alt_text_override: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1332
+ }, z.core.$strip>>>>;
1333
+ settings: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1334
+ privacy_level: z.ZodOptional<z.ZodEnum<{
1335
+ PUBLIC_TO_EVERYONE: "PUBLIC_TO_EVERYONE";
1336
+ MUTUAL_FOLLOW_FRIENDS: "MUTUAL_FOLLOW_FRIENDS";
1337
+ FOLLOWER_OF_CREATOR: "FOLLOWER_OF_CREATOR";
1338
+ SELF_ONLY: "SELF_ONLY";
1339
+ }>>;
1340
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
1341
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
1342
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
1343
+ video_cover_timestamp_ms: z.ZodOptional<z.ZodInt>;
1344
+ photo_cover_index: z.ZodOptional<z.ZodInt>;
1345
+ auto_add_music: z.ZodOptional<z.ZodBoolean>;
1346
+ brand_content_toggle: z.ZodOptional<z.ZodBoolean>;
1347
+ brand_organic_toggle: z.ZodOptional<z.ZodBoolean>;
1348
+ is_aigc: z.ZodOptional<z.ZodBoolean>;
1349
+ }, z.core.$strip>>>;
1050
1350
  }, z.core.$strip>]>>;
1051
1351
  }, z.core.$strip>;
1052
1352
  /**
@@ -1368,6 +1668,37 @@ declare const zPostsUpdateBody: z.ZodObject<{
1368
1668
  settings: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1369
1669
  link: z.ZodOptional<z.ZodURL>;
1370
1670
  }, z.core.$strip>>>;
1671
+ }, z.core.$strip>, z.ZodObject<{
1672
+ platform: z.ZodLiteral<"tiktok">;
1673
+ post_type: z.ZodEnum<{
1674
+ video: "video";
1675
+ single_image: "single_image";
1676
+ carousel: "carousel";
1677
+ }>;
1678
+ connection_id: z.ZodString;
1679
+ body: z.ZodOptional<z.ZodString>;
1680
+ media: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1681
+ media_id: z.ZodString;
1682
+ crop_box: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1683
+ alt_text_override: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1684
+ }, z.core.$strip>>>>;
1685
+ settings: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1686
+ privacy_level: z.ZodOptional<z.ZodEnum<{
1687
+ PUBLIC_TO_EVERYONE: "PUBLIC_TO_EVERYONE";
1688
+ MUTUAL_FOLLOW_FRIENDS: "MUTUAL_FOLLOW_FRIENDS";
1689
+ FOLLOWER_OF_CREATOR: "FOLLOWER_OF_CREATOR";
1690
+ SELF_ONLY: "SELF_ONLY";
1691
+ }>>;
1692
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
1693
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
1694
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
1695
+ video_cover_timestamp_ms: z.ZodOptional<z.ZodInt>;
1696
+ photo_cover_index: z.ZodOptional<z.ZodInt>;
1697
+ auto_add_music: z.ZodOptional<z.ZodBoolean>;
1698
+ brand_content_toggle: z.ZodOptional<z.ZodBoolean>;
1699
+ brand_organic_toggle: z.ZodOptional<z.ZodBoolean>;
1700
+ is_aigc: z.ZodOptional<z.ZodBoolean>;
1701
+ }, z.core.$strip>>>;
1371
1702
  }, z.core.$strip>]>>>;
1372
1703
  }, z.core.$strip>;
1373
1704
  declare const zPostsUpdatePath: z.ZodObject<{
@@ -3389,4 +3720,4 @@ declare const zTokensMintResponse: z.ZodObject<{
3389
3720
  expires_at: z.ZodString;
3390
3721
  }, z.core.$strip>;
3391
3722
 
3392
- export { zConnectionsConnectBody, zConnectionsConnectPath, zConnectionsConnectResponse, zConnectionsDeletePath, zConnectionsDeleteResponse, zConnectionsGetPath, zConnectionsGetResponse, zConnectionsListAccountsPath, zConnectionsListAccountsResponse, zConnectionsListByProfilePath, zConnectionsListByProfileQuery, zConnectionsListByProfileResponse, zConnectionsSelectBody, zConnectionsSelectPath, zConnectionsSelectResponse, zErrorCode, zGoogleCreateAdBody, zGoogleCreateAdGroupBody, zGoogleCreateAdGroupPath, zGoogleCreateAdGroupResponse, zGoogleCreateAdPath, zGoogleCreateAdResponse, zGoogleCreateBudgetBody, zGoogleCreateBudgetPath, zGoogleCreateBudgetResponse, zGoogleCreateCampaignBody, zGoogleCreateCampaignPath, zGoogleCreateCampaignResponse, zGoogleCreateConversionActionBody, zGoogleCreateConversionActionPath, zGoogleCreateConversionActionResponse, zGoogleCreateDisplayAdBody, zGoogleCreateDisplayAdPath, zGoogleCreateDisplayAdResponse, zGoogleCreateKeywordBody, zGoogleCreateKeywordPath, zGoogleCreateKeywordResponse, zGoogleDeleteAdBody, zGoogleDeleteAdGroupBody, zGoogleDeleteAdGroupPath, zGoogleDeleteAdGroupResponse, zGoogleDeleteAdPath, zGoogleDeleteAdResponse, zGoogleDeleteBudgetBody, zGoogleDeleteBudgetPath, zGoogleDeleteBudgetResponse, zGoogleDeleteCampaignBody, zGoogleDeleteCampaignPath, zGoogleDeleteCampaignResponse, zGoogleDeleteKeywordBody, zGoogleDeleteKeywordPath, zGoogleDeleteKeywordResponse, zGoogleEditAdGroupBody, zGoogleEditAdGroupPath, zGoogleEditAdGroupResponse, zGoogleEditBudgetBody, zGoogleEditBudgetPath, zGoogleEditBudgetResponse, zGoogleEditCampaignBody, zGoogleEditCampaignPath, zGoogleEditCampaignResponse, zGoogleEnableAdBody, zGoogleEnableAdGroupBody, zGoogleEnableAdGroupPath, zGoogleEnableAdGroupResponse, zGoogleEnableAdPath, zGoogleEnableAdResponse, zGoogleEnableCampaignBody, zGoogleEnableCampaignPath, zGoogleEnableCampaignResponse, zGoogleEnableKeywordBody, zGoogleEnableKeywordPath, zGoogleEnableKeywordResponse, zGoogleGetAccountPath, zGoogleGetAccountResponse, zGoogleGetAdGroupPath, zGoogleGetAdGroupResponse, zGoogleGetAdPath, zGoogleGetAdResponse, zGoogleGetCampaignPath, zGoogleGetCampaignResponse, zGoogleGetConversionActionPath, zGoogleGetConversionActionResponse, zGoogleGetInsightsBody, zGoogleGetInsightsPath, zGoogleGetInsightsResponse, zGoogleGetKeywordPath, zGoogleGetKeywordResponse, zGoogleListAdGroupsPath, zGoogleListAdGroupsResponse, zGoogleListAdsPath, zGoogleListAdsResponse, zGoogleListCampaignsPath, zGoogleListCampaignsResponse, zGoogleListConversionActionsPath, zGoogleListConversionActionsResponse, zGoogleListConversionGoalsPath, zGoogleListConversionGoalsResponse, zGoogleListKeywordsPath, zGoogleListKeywordsResponse, zGooglePauseAdBody, zGooglePauseAdGroupBody, zGooglePauseAdGroupPath, zGooglePauseAdGroupResponse, zGooglePauseAdPath, zGooglePauseAdResponse, zGooglePauseCampaignBody, zGooglePauseCampaignPath, zGooglePauseCampaignResponse, zGooglePauseKeywordBody, zGooglePauseKeywordPath, zGooglePauseKeywordResponse, zGoogleRunGaqlBody, zGoogleRunGaqlPath, zGoogleRunGaqlResponse, zGoogleSetAdGroupBidsBody, zGoogleSetAdGroupBidsPath, zGoogleSetAdGroupBidsResponse, zGoogleSetConversionGoalBody, zGoogleSetConversionGoalPath, zGoogleSetConversionGoalResponse, zGoogleSetKeywordBidBody, zGoogleSetKeywordBidPath, zGoogleSetKeywordBidResponse, zGoogleUploadConversionsBody, zGoogleUploadConversionsPath, zGoogleUploadConversionsResponse, zGoogleUploadImageAssetBody, zGoogleUploadImageAssetPath, zGoogleUploadImageAssetResponse, zLogsGetPath, zLogsGetResponse, zLogsListQuery, zLogsListResponse, zMediaCreateBody, zMediaCreateResponse, zMediaDeletePath, zMediaDeleteResponse, zMediaGetPath, zMediaGetResponse, zMediaUpdateBody, zMediaUpdatePath, zMediaUpdateResponse, zMetaAccountPath, zMetaAccountResponse, zMetaAdPath, zMetaAdResponse, zMetaAdsPath, zMetaAdsResponse, zMetaAdsetPath, zMetaAdsetResponse, zMetaAdsetsPath, zMetaAdsetsResponse, zMetaCampaignPath, zMetaCampaignResponse, zMetaCampaignsPath, zMetaCampaignsResponse, zMetaInsightsPath, zMetaInsightsQuery, zMetaInsightsResponse, zPostsCreateBody, zPostsCreateResponse, zPostsDeletePath, zPostsDeleteResponse, zPostsGetPath, zPostsGetResponse, zPostsListQuery, zPostsListResponse, zPostsUpdateBody, zPostsUpdatePath, zPostsUpdateResponse, zProfilesCreateBody, zProfilesCreateResponse, zProfilesDeletePath, zProfilesDeleteResponse, zProfilesGetPath, zProfilesGetResponse, zProfilesListQuery, zProfilesListResponse, zProfilesUpdateBody, zProfilesUpdatePath, zProfilesUpdateResponse, zTokensMintBody, zTokensMintResponse, zWebhooksCreateEndpointBody, zWebhooksCreateEndpointResponse, zWebhooksCreatePortalResponse, zWebhooksDeleteEndpointPath, zWebhooksDeleteEndpointResponse, zWebhooksGetEndpointPath, zWebhooksGetEndpointResponse, zWebhooksListEndpointsQuery, zWebhooksListEndpointsResponse, zWebhooksListEventTypesResponse, zWebhooksPingBody, zWebhooksPingResponse, zWebhooksUpdateEndpointBody, zWebhooksUpdateEndpointPath, zWebhooksUpdateEndpointResponse };
3723
+ export { zConnectionsConnectBody, zConnectionsConnectPath, zConnectionsConnectResponse, zConnectionsDeletePath, zConnectionsDeleteResponse, zConnectionsGetPath, zConnectionsGetResponse, zConnectionsListAccountsPath, zConnectionsListAccountsResponse, zConnectionsListByProfilePath, zConnectionsListByProfileQuery, zConnectionsListByProfileResponse, zConnectionsSelectBody, zConnectionsSelectPath, zConnectionsSelectResponse, zErrorCode, zGoogleCreateAdBody, zGoogleCreateAdGroupBody, zGoogleCreateAdGroupPath, zGoogleCreateAdGroupResponse, zGoogleCreateAdPath, zGoogleCreateAdResponse, zGoogleCreateBudgetBody, zGoogleCreateBudgetPath, zGoogleCreateBudgetResponse, zGoogleCreateCampaignBody, zGoogleCreateCampaignPath, zGoogleCreateCampaignResponse, zGoogleCreateConversionActionBody, zGoogleCreateConversionActionPath, zGoogleCreateConversionActionResponse, zGoogleCreateDisplayAdBody, zGoogleCreateDisplayAdPath, zGoogleCreateDisplayAdResponse, zGoogleCreateKeywordBody, zGoogleCreateKeywordPath, zGoogleCreateKeywordResponse, zGoogleDeleteAdBody, zGoogleDeleteAdGroupBody, zGoogleDeleteAdGroupPath, zGoogleDeleteAdGroupResponse, zGoogleDeleteAdPath, zGoogleDeleteAdResponse, zGoogleDeleteBudgetBody, zGoogleDeleteBudgetPath, zGoogleDeleteBudgetResponse, zGoogleDeleteCampaignBody, zGoogleDeleteCampaignPath, zGoogleDeleteCampaignResponse, zGoogleDeleteKeywordBody, zGoogleDeleteKeywordPath, zGoogleDeleteKeywordResponse, zGoogleEditAdGroupBody, zGoogleEditAdGroupPath, zGoogleEditAdGroupResponse, zGoogleEditBudgetBody, zGoogleEditBudgetPath, zGoogleEditBudgetResponse, zGoogleEditCampaignBody, zGoogleEditCampaignPath, zGoogleEditCampaignResponse, zGoogleEnableAdBody, zGoogleEnableAdGroupBody, zGoogleEnableAdGroupPath, zGoogleEnableAdGroupResponse, zGoogleEnableAdPath, zGoogleEnableAdResponse, zGoogleEnableCampaignBody, zGoogleEnableCampaignPath, zGoogleEnableCampaignResponse, zGoogleEnableKeywordBody, zGoogleEnableKeywordPath, zGoogleEnableKeywordResponse, zGoogleGetAccountPath, zGoogleGetAccountResponse, zGoogleGetAdGroupPath, zGoogleGetAdGroupResponse, zGoogleGetAdPath, zGoogleGetAdResponse, zGoogleGetCampaignPath, zGoogleGetCampaignResponse, zGoogleGetConversionActionPath, zGoogleGetConversionActionResponse, zGoogleGetInsightsBody, zGoogleGetInsightsPath, zGoogleGetInsightsResponse, zGoogleGetKeywordPath, zGoogleGetKeywordResponse, zGoogleListAdGroupsPath, zGoogleListAdGroupsResponse, zGoogleListAdsPath, zGoogleListAdsResponse, zGoogleListCampaignsPath, zGoogleListCampaignsResponse, zGoogleListConversionActionsPath, zGoogleListConversionActionsResponse, zGoogleListConversionGoalsPath, zGoogleListConversionGoalsResponse, zGoogleListKeywordsPath, zGoogleListKeywordsResponse, zGooglePauseAdBody, zGooglePauseAdGroupBody, zGooglePauseAdGroupPath, zGooglePauseAdGroupResponse, zGooglePauseAdPath, zGooglePauseAdResponse, zGooglePauseCampaignBody, zGooglePauseCampaignPath, zGooglePauseCampaignResponse, zGooglePauseKeywordBody, zGooglePauseKeywordPath, zGooglePauseKeywordResponse, zGoogleRunGaqlBody, zGoogleRunGaqlPath, zGoogleRunGaqlResponse, zGoogleSetAdGroupBidsBody, zGoogleSetAdGroupBidsPath, zGoogleSetAdGroupBidsResponse, zGoogleSetConversionGoalBody, zGoogleSetConversionGoalPath, zGoogleSetConversionGoalResponse, zGoogleSetKeywordBidBody, zGoogleSetKeywordBidPath, zGoogleSetKeywordBidResponse, zGoogleUploadConversionsBody, zGoogleUploadConversionsPath, zGoogleUploadConversionsResponse, zGoogleUploadImageAssetBody, zGoogleUploadImageAssetPath, zGoogleUploadImageAssetResponse, zLogsGetPath, zLogsGetResponse, zLogsListQuery, zLogsListResponse, zMediaCreateBody, zMediaCreateResponse, zMediaDeletePath, zMediaDeleteResponse, zMediaGetPath, zMediaGetResponse, zMediaListQuery, zMediaListResponse, zMediaUpdateBody, zMediaUpdatePath, zMediaUpdateResponse, zMetaAccountPath, zMetaAccountResponse, zMetaAdPath, zMetaAdResponse, zMetaAdsPath, zMetaAdsResponse, zMetaAdsetPath, zMetaAdsetResponse, zMetaAdsetsPath, zMetaAdsetsResponse, zMetaCampaignPath, zMetaCampaignResponse, zMetaCampaignsPath, zMetaCampaignsResponse, zMetaInsightsPath, zMetaInsightsQuery, zMetaInsightsResponse, zPostsCreateBody, zPostsCreateResponse, zPostsDeletePath, zPostsDeleteResponse, zPostsGetPath, zPostsGetResponse, zPostsListQuery, zPostsListResponse, zPostsUpdateBody, zPostsUpdatePath, zPostsUpdateResponse, zProfilesCreateBody, zProfilesCreateResponse, zProfilesDeletePath, zProfilesDeleteResponse, zProfilesGetPath, zProfilesGetResponse, zProfilesListQuery, zProfilesListResponse, zProfilesUpdateBody, zProfilesUpdatePath, zProfilesUpdateResponse, zTokensMintBody, zTokensMintResponse, zWebhooksCreateEndpointBody, zWebhooksCreateEndpointResponse, zWebhooksCreatePortalResponse, zWebhooksDeleteEndpointPath, zWebhooksDeleteEndpointResponse, zWebhooksGetEndpointPath, zWebhooksGetEndpointResponse, zWebhooksListEndpointsQuery, zWebhooksListEndpointsResponse, zWebhooksListEventTypesResponse, zWebhooksPingBody, zWebhooksPingResponse, zWebhooksUpdateEndpointBody, zWebhooksUpdateEndpointPath, zWebhooksUpdateEndpointResponse };
@@ -1,3 +1,3 @@
1
- export { zConnectionsConnectBody, zConnectionsConnectPath, zConnectionsConnectResponse, zConnectionsDeletePath, zConnectionsDeleteResponse, zConnectionsGetPath, zConnectionsGetResponse, zConnectionsListAccountsPath, zConnectionsListAccountsResponse, zConnectionsListByProfilePath, zConnectionsListByProfileQuery, zConnectionsListByProfileResponse, zConnectionsSelectBody, zConnectionsSelectPath, zConnectionsSelectResponse, zErrorCode, zGoogleCreateAdBody, zGoogleCreateAdGroupBody, zGoogleCreateAdGroupPath, zGoogleCreateAdGroupResponse, zGoogleCreateAdPath, zGoogleCreateAdResponse, zGoogleCreateBudgetBody, zGoogleCreateBudgetPath, zGoogleCreateBudgetResponse, zGoogleCreateCampaignBody, zGoogleCreateCampaignPath, zGoogleCreateCampaignResponse, zGoogleCreateConversionActionBody, zGoogleCreateConversionActionPath, zGoogleCreateConversionActionResponse, zGoogleCreateDisplayAdBody, zGoogleCreateDisplayAdPath, zGoogleCreateDisplayAdResponse, zGoogleCreateKeywordBody, zGoogleCreateKeywordPath, zGoogleCreateKeywordResponse, zGoogleDeleteAdBody, zGoogleDeleteAdGroupBody, zGoogleDeleteAdGroupPath, zGoogleDeleteAdGroupResponse, zGoogleDeleteAdPath, zGoogleDeleteAdResponse, zGoogleDeleteBudgetBody, zGoogleDeleteBudgetPath, zGoogleDeleteBudgetResponse, zGoogleDeleteCampaignBody, zGoogleDeleteCampaignPath, zGoogleDeleteCampaignResponse, zGoogleDeleteKeywordBody, zGoogleDeleteKeywordPath, zGoogleDeleteKeywordResponse, zGoogleEditAdGroupBody, zGoogleEditAdGroupPath, zGoogleEditAdGroupResponse, zGoogleEditBudgetBody, zGoogleEditBudgetPath, zGoogleEditBudgetResponse, zGoogleEditCampaignBody, zGoogleEditCampaignPath, zGoogleEditCampaignResponse, zGoogleEnableAdBody, zGoogleEnableAdGroupBody, zGoogleEnableAdGroupPath, zGoogleEnableAdGroupResponse, zGoogleEnableAdPath, zGoogleEnableAdResponse, zGoogleEnableCampaignBody, zGoogleEnableCampaignPath, zGoogleEnableCampaignResponse, zGoogleEnableKeywordBody, zGoogleEnableKeywordPath, zGoogleEnableKeywordResponse, zGoogleGetAccountPath, zGoogleGetAccountResponse, zGoogleGetAdGroupPath, zGoogleGetAdGroupResponse, zGoogleGetAdPath, zGoogleGetAdResponse, zGoogleGetCampaignPath, zGoogleGetCampaignResponse, zGoogleGetConversionActionPath, zGoogleGetConversionActionResponse, zGoogleGetInsightsBody, zGoogleGetInsightsPath, zGoogleGetInsightsResponse, zGoogleGetKeywordPath, zGoogleGetKeywordResponse, zGoogleListAdGroupsPath, zGoogleListAdGroupsResponse, zGoogleListAdsPath, zGoogleListAdsResponse, zGoogleListCampaignsPath, zGoogleListCampaignsResponse, zGoogleListConversionActionsPath, zGoogleListConversionActionsResponse, zGoogleListConversionGoalsPath, zGoogleListConversionGoalsResponse, zGoogleListKeywordsPath, zGoogleListKeywordsResponse, zGooglePauseAdBody, zGooglePauseAdGroupBody, zGooglePauseAdGroupPath, zGooglePauseAdGroupResponse, zGooglePauseAdPath, zGooglePauseAdResponse, zGooglePauseCampaignBody, zGooglePauseCampaignPath, zGooglePauseCampaignResponse, zGooglePauseKeywordBody, zGooglePauseKeywordPath, zGooglePauseKeywordResponse, zGoogleRunGaqlBody, zGoogleRunGaqlPath, zGoogleRunGaqlResponse, zGoogleSetAdGroupBidsBody, zGoogleSetAdGroupBidsPath, zGoogleSetAdGroupBidsResponse, zGoogleSetConversionGoalBody, zGoogleSetConversionGoalPath, zGoogleSetConversionGoalResponse, zGoogleSetKeywordBidBody, zGoogleSetKeywordBidPath, zGoogleSetKeywordBidResponse, zGoogleUploadConversionsBody, zGoogleUploadConversionsPath, zGoogleUploadConversionsResponse, zGoogleUploadImageAssetBody, zGoogleUploadImageAssetPath, zGoogleUploadImageAssetResponse, zLogsGetPath, zLogsGetResponse, zLogsListQuery, zLogsListResponse, zMediaCreateBody, zMediaCreateResponse, zMediaDeletePath, zMediaDeleteResponse, zMediaGetPath, zMediaGetResponse, zMediaUpdateBody, zMediaUpdatePath, zMediaUpdateResponse, zMetaAccountPath, zMetaAccountResponse, zMetaAdPath, zMetaAdResponse, zMetaAdsPath, zMetaAdsResponse, zMetaAdsetPath, zMetaAdsetResponse, zMetaAdsetsPath, zMetaAdsetsResponse, zMetaCampaignPath, zMetaCampaignResponse, zMetaCampaignsPath, zMetaCampaignsResponse, zMetaInsightsPath, zMetaInsightsQuery, zMetaInsightsResponse, zPostsCreateBody, zPostsCreateResponse, zPostsDeletePath, zPostsDeleteResponse, zPostsGetPath, zPostsGetResponse, zPostsListQuery, zPostsListResponse, zPostsUpdateBody, zPostsUpdatePath, zPostsUpdateResponse, zProfilesCreateBody, zProfilesCreateResponse, zProfilesDeletePath, zProfilesDeleteResponse, zProfilesGetPath, zProfilesGetResponse, zProfilesListQuery, zProfilesListResponse, zProfilesUpdateBody, zProfilesUpdatePath, zProfilesUpdateResponse, zTokensMintBody, zTokensMintResponse, zWebhooksCreateEndpointBody, zWebhooksCreateEndpointResponse, zWebhooksCreatePortalResponse, zWebhooksDeleteEndpointPath, zWebhooksDeleteEndpointResponse, zWebhooksGetEndpointPath, zWebhooksGetEndpointResponse, zWebhooksListEndpointsQuery, zWebhooksListEndpointsResponse, zWebhooksListEventTypesResponse, zWebhooksPingBody, zWebhooksPingResponse, zWebhooksUpdateEndpointBody, zWebhooksUpdateEndpointPath, zWebhooksUpdateEndpointResponse } from '../chunk-IMU3SG45.js';
1
+ export { zConnectionsConnectBody, zConnectionsConnectPath, zConnectionsConnectResponse, zConnectionsDeletePath, zConnectionsDeleteResponse, zConnectionsGetPath, zConnectionsGetResponse, zConnectionsListAccountsPath, zConnectionsListAccountsResponse, zConnectionsListByProfilePath, zConnectionsListByProfileQuery, zConnectionsListByProfileResponse, zConnectionsSelectBody, zConnectionsSelectPath, zConnectionsSelectResponse, zErrorCode, zGoogleCreateAdBody, zGoogleCreateAdGroupBody, zGoogleCreateAdGroupPath, zGoogleCreateAdGroupResponse, zGoogleCreateAdPath, zGoogleCreateAdResponse, zGoogleCreateBudgetBody, zGoogleCreateBudgetPath, zGoogleCreateBudgetResponse, zGoogleCreateCampaignBody, zGoogleCreateCampaignPath, zGoogleCreateCampaignResponse, zGoogleCreateConversionActionBody, zGoogleCreateConversionActionPath, zGoogleCreateConversionActionResponse, zGoogleCreateDisplayAdBody, zGoogleCreateDisplayAdPath, zGoogleCreateDisplayAdResponse, zGoogleCreateKeywordBody, zGoogleCreateKeywordPath, zGoogleCreateKeywordResponse, zGoogleDeleteAdBody, zGoogleDeleteAdGroupBody, zGoogleDeleteAdGroupPath, zGoogleDeleteAdGroupResponse, zGoogleDeleteAdPath, zGoogleDeleteAdResponse, zGoogleDeleteBudgetBody, zGoogleDeleteBudgetPath, zGoogleDeleteBudgetResponse, zGoogleDeleteCampaignBody, zGoogleDeleteCampaignPath, zGoogleDeleteCampaignResponse, zGoogleDeleteKeywordBody, zGoogleDeleteKeywordPath, zGoogleDeleteKeywordResponse, zGoogleEditAdGroupBody, zGoogleEditAdGroupPath, zGoogleEditAdGroupResponse, zGoogleEditBudgetBody, zGoogleEditBudgetPath, zGoogleEditBudgetResponse, zGoogleEditCampaignBody, zGoogleEditCampaignPath, zGoogleEditCampaignResponse, zGoogleEnableAdBody, zGoogleEnableAdGroupBody, zGoogleEnableAdGroupPath, zGoogleEnableAdGroupResponse, zGoogleEnableAdPath, zGoogleEnableAdResponse, zGoogleEnableCampaignBody, zGoogleEnableCampaignPath, zGoogleEnableCampaignResponse, zGoogleEnableKeywordBody, zGoogleEnableKeywordPath, zGoogleEnableKeywordResponse, zGoogleGetAccountPath, zGoogleGetAccountResponse, zGoogleGetAdGroupPath, zGoogleGetAdGroupResponse, zGoogleGetAdPath, zGoogleGetAdResponse, zGoogleGetCampaignPath, zGoogleGetCampaignResponse, zGoogleGetConversionActionPath, zGoogleGetConversionActionResponse, zGoogleGetInsightsBody, zGoogleGetInsightsPath, zGoogleGetInsightsResponse, zGoogleGetKeywordPath, zGoogleGetKeywordResponse, zGoogleListAdGroupsPath, zGoogleListAdGroupsResponse, zGoogleListAdsPath, zGoogleListAdsResponse, zGoogleListCampaignsPath, zGoogleListCampaignsResponse, zGoogleListConversionActionsPath, zGoogleListConversionActionsResponse, zGoogleListConversionGoalsPath, zGoogleListConversionGoalsResponse, zGoogleListKeywordsPath, zGoogleListKeywordsResponse, zGooglePauseAdBody, zGooglePauseAdGroupBody, zGooglePauseAdGroupPath, zGooglePauseAdGroupResponse, zGooglePauseAdPath, zGooglePauseAdResponse, zGooglePauseCampaignBody, zGooglePauseCampaignPath, zGooglePauseCampaignResponse, zGooglePauseKeywordBody, zGooglePauseKeywordPath, zGooglePauseKeywordResponse, zGoogleRunGaqlBody, zGoogleRunGaqlPath, zGoogleRunGaqlResponse, zGoogleSetAdGroupBidsBody, zGoogleSetAdGroupBidsPath, zGoogleSetAdGroupBidsResponse, zGoogleSetConversionGoalBody, zGoogleSetConversionGoalPath, zGoogleSetConversionGoalResponse, zGoogleSetKeywordBidBody, zGoogleSetKeywordBidPath, zGoogleSetKeywordBidResponse, zGoogleUploadConversionsBody, zGoogleUploadConversionsPath, zGoogleUploadConversionsResponse, zGoogleUploadImageAssetBody, zGoogleUploadImageAssetPath, zGoogleUploadImageAssetResponse, zLogsGetPath, zLogsGetResponse, zLogsListQuery, zLogsListResponse, zMediaCreateBody, zMediaCreateResponse, zMediaDeletePath, zMediaDeleteResponse, zMediaGetPath, zMediaGetResponse, zMediaListQuery, zMediaListResponse, zMediaUpdateBody, zMediaUpdatePath, zMediaUpdateResponse, zMetaAccountPath, zMetaAccountResponse, zMetaAdPath, zMetaAdResponse, zMetaAdsPath, zMetaAdsResponse, zMetaAdsetPath, zMetaAdsetResponse, zMetaAdsetsPath, zMetaAdsetsResponse, zMetaCampaignPath, zMetaCampaignResponse, zMetaCampaignsPath, zMetaCampaignsResponse, zMetaInsightsPath, zMetaInsightsQuery, zMetaInsightsResponse, zPostsCreateBody, zPostsCreateResponse, zPostsDeletePath, zPostsDeleteResponse, zPostsGetPath, zPostsGetResponse, zPostsListQuery, zPostsListResponse, zPostsUpdateBody, zPostsUpdatePath, zPostsUpdateResponse, zProfilesCreateBody, zProfilesCreateResponse, zProfilesDeletePath, zProfilesDeleteResponse, zProfilesGetPath, zProfilesGetResponse, zProfilesListQuery, zProfilesListResponse, zProfilesUpdateBody, zProfilesUpdatePath, zProfilesUpdateResponse, zTokensMintBody, zTokensMintResponse, zWebhooksCreateEndpointBody, zWebhooksCreateEndpointResponse, zWebhooksCreatePortalResponse, zWebhooksDeleteEndpointPath, zWebhooksDeleteEndpointResponse, zWebhooksGetEndpointPath, zWebhooksGetEndpointResponse, zWebhooksListEndpointsQuery, zWebhooksListEndpointsResponse, zWebhooksListEventTypesResponse, zWebhooksPingBody, zWebhooksPingResponse, zWebhooksUpdateEndpointBody, zWebhooksUpdateEndpointPath, zWebhooksUpdateEndpointResponse } from '../chunk-VGR3BQCT.js';
2
2
  //# sourceMappingURL=index.js.map
3
3
  //# sourceMappingURL=index.js.map