@rolino/contracts 0.5.0-beta.0 → 0.5.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/index.d.cts CHANGED
@@ -159,6 +159,7 @@ declare const CapabilityIdSchema: z.ZodEnum<{
159
159
  "blog:read": "blog:read";
160
160
  "blog:write": "blog:write";
161
161
  "blog:manage": "blog:manage";
162
+ "blog:approve": "blog:approve";
162
163
  "blog:publish": "blog:publish";
163
164
  }>;
164
165
  type CapabilityId = z.infer<typeof CapabilityIdSchema>;
@@ -184,6 +185,39 @@ declare const AgentBlogArticleSchema: z.ZodObject<{
184
185
  scheduledPublishAt: z.ZodNullable<z.ZodString>;
185
186
  updatedAt: z.ZodString;
186
187
  }, z.core.$strip>;
188
+ declare const AgentBlogImageSchema: z.ZodObject<{
189
+ id: z.ZodString;
190
+ revisionId: z.ZodNullable<z.ZodString>;
191
+ version: z.ZodNumber;
192
+ purpose: z.ZodEnum<{
193
+ FEATURED: "FEATURED";
194
+ SECTION: "SECTION";
195
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
196
+ }>;
197
+ source: z.ZodEnum<{
198
+ GENERATED: "GENERATED";
199
+ AGENT_UPLOAD: "AGENT_UPLOAD";
200
+ }>;
201
+ state: z.ZodEnum<{
202
+ QUEUED: "QUEUED";
203
+ GENERATING: "GENERATING";
204
+ READY_FOR_REVIEW: "READY_FOR_REVIEW";
205
+ APPROVED: "APPROVED";
206
+ REJECTED: "REJECTED";
207
+ FAILED: "FAILED";
208
+ }>;
209
+ publicUrl: z.ZodNullable<z.ZodString>;
210
+ mimeType: z.ZodNullable<z.ZodEnum<{
211
+ "image/jpeg": "image/jpeg";
212
+ "image/png": "image/png";
213
+ "image/webp": "image/webp";
214
+ }>>;
215
+ width: z.ZodNullable<z.ZodNumber>;
216
+ height: z.ZodNullable<z.ZodNumber>;
217
+ altText: z.ZodNullable<z.ZodString>;
218
+ caption: z.ZodNullable<z.ZodString>;
219
+ createdAt: z.ZodString;
220
+ }, z.core.$strict>;
187
221
  declare const AgentBlogArticleDetailSchema: z.ZodObject<{
188
222
  id: z.ZodString;
189
223
  state: z.ZodString;
@@ -216,6 +250,39 @@ declare const AgentBlogArticleDetailSchema: z.ZodObject<{
216
250
  approvedAt: z.ZodNullable<z.ZodString>;
217
251
  createdAt: z.ZodString;
218
252
  }, z.core.$strip>>;
253
+ images: z.ZodArray<z.ZodObject<{
254
+ id: z.ZodString;
255
+ revisionId: z.ZodNullable<z.ZodString>;
256
+ version: z.ZodNumber;
257
+ purpose: z.ZodEnum<{
258
+ FEATURED: "FEATURED";
259
+ SECTION: "SECTION";
260
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
261
+ }>;
262
+ source: z.ZodEnum<{
263
+ GENERATED: "GENERATED";
264
+ AGENT_UPLOAD: "AGENT_UPLOAD";
265
+ }>;
266
+ state: z.ZodEnum<{
267
+ QUEUED: "QUEUED";
268
+ GENERATING: "GENERATING";
269
+ READY_FOR_REVIEW: "READY_FOR_REVIEW";
270
+ APPROVED: "APPROVED";
271
+ REJECTED: "REJECTED";
272
+ FAILED: "FAILED";
273
+ }>;
274
+ publicUrl: z.ZodNullable<z.ZodString>;
275
+ mimeType: z.ZodNullable<z.ZodEnum<{
276
+ "image/jpeg": "image/jpeg";
277
+ "image/png": "image/png";
278
+ "image/webp": "image/webp";
279
+ }>>;
280
+ width: z.ZodNullable<z.ZodNumber>;
281
+ height: z.ZodNullable<z.ZodNumber>;
282
+ altText: z.ZodNullable<z.ZodString>;
283
+ caption: z.ZodNullable<z.ZodString>;
284
+ createdAt: z.ZodString;
285
+ }, z.core.$strict>>;
219
286
  }, z.core.$strip>;
220
287
  declare const AgentBlogJobSchema: z.ZodObject<{
221
288
  id: z.ZodString;
@@ -252,7 +319,235 @@ declare const AgentBlogDraftUpdateSchema: z.ZodObject<{
252
319
  declare const AgentBlogGenerateRequestSchema: z.ZodObject<{
253
320
  idempotencyKey: z.ZodString;
254
321
  }, z.core.$strip>;
322
+ declare const AgentBlogImageGenerateRequestSchema: z.ZodObject<{
323
+ revisionId: z.ZodString;
324
+ idempotencyKey: z.ZodString;
325
+ editorialBrief: z.ZodOptional<z.ZodString>;
326
+ }, z.core.$strict>;
327
+ declare const AgentBlogImageUploadPrepareRequestSchema: z.ZodObject<{
328
+ revisionId: z.ZodString;
329
+ fileName: z.ZodString;
330
+ contentType: z.ZodEnum<{
331
+ "image/jpeg": "image/jpeg";
332
+ "image/png": "image/png";
333
+ "image/webp": "image/webp";
334
+ }>;
335
+ fileSize: z.ZodNumber;
336
+ }, z.core.$strict>;
337
+ declare const AgentBlogImageUploadCompleteRequestSchema: z.ZodObject<{
338
+ revisionId: z.ZodString;
339
+ fileName: z.ZodString;
340
+ contentType: z.ZodEnum<{
341
+ "image/jpeg": "image/jpeg";
342
+ "image/png": "image/png";
343
+ "image/webp": "image/webp";
344
+ }>;
345
+ fileSize: z.ZodNumber;
346
+ storageKey: z.ZodString;
347
+ altText: z.ZodString;
348
+ }, z.core.$strict>;
349
+ declare const AgentBlogImageReviewRequestSchema: z.ZodObject<{
350
+ expectedVersion: z.ZodNumber;
351
+ decision: z.ZodEnum<{
352
+ APPROVED: "APPROVED";
353
+ REJECTED: "REJECTED";
354
+ }>;
355
+ altText: z.ZodString;
356
+ idempotencyKey: z.ZodString;
357
+ }, z.core.$strict>;
358
+ declare const AgentBlogApprovalPreviewRequestSchema: z.ZodObject<{
359
+ revisionId: z.ZodString;
360
+ }, z.core.$strict>;
361
+ declare const AgentBlogApprovalExecuteRequestSchema: z.ZodObject<{
362
+ revisionId: z.ZodString;
363
+ confirmationToken: z.ZodString;
364
+ idempotencyKey: z.ZodString;
365
+ }, z.core.$strict>;
366
+ declare const AgentBlogApprovalImageSummarySchema: z.ZodObject<{
367
+ id: z.ZodString;
368
+ purpose: z.ZodEnum<{
369
+ FEATURED: "FEATURED";
370
+ SECTION: "SECTION";
371
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
372
+ }>;
373
+ contentPosition: z.ZodNullable<z.ZodString>;
374
+ width: z.ZodNumber;
375
+ height: z.ZodNumber;
376
+ mimeType: z.ZodEnum<{
377
+ "image/jpeg": "image/jpeg";
378
+ "image/png": "image/png";
379
+ "image/webp": "image/webp";
380
+ }>;
381
+ altText: z.ZodString;
382
+ caption: z.ZodNullable<z.ZodString>;
383
+ version: z.ZodNumber;
384
+ }, z.core.$strict>;
385
+ declare const AgentBlogApprovalLinkSummarySchema: z.ZodObject<{
386
+ pageId: z.ZodString;
387
+ liveState: z.ZodEnum<{
388
+ LIVE: "LIVE";
389
+ REDIRECT: "REDIRECT";
390
+ }>;
391
+ }, z.core.$strict>;
392
+ declare const AgentBlogApprovalPreviewSchema: z.ZodObject<{
393
+ articleId: z.ZodString;
394
+ revisionId: z.ZodString;
395
+ title: z.ZodString;
396
+ slug: z.ZodString;
397
+ revisionNumber: z.ZodNumber;
398
+ contentHash: z.ZodString;
399
+ images: z.ZodArray<z.ZodObject<{
400
+ id: z.ZodString;
401
+ purpose: z.ZodEnum<{
402
+ FEATURED: "FEATURED";
403
+ SECTION: "SECTION";
404
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
405
+ }>;
406
+ contentPosition: z.ZodNullable<z.ZodString>;
407
+ width: z.ZodNumber;
408
+ height: z.ZodNumber;
409
+ mimeType: z.ZodEnum<{
410
+ "image/jpeg": "image/jpeg";
411
+ "image/png": "image/png";
412
+ "image/webp": "image/webp";
413
+ }>;
414
+ altText: z.ZodString;
415
+ caption: z.ZodNullable<z.ZodString>;
416
+ version: z.ZodNumber;
417
+ }, z.core.$strict>>;
418
+ links: z.ZodArray<z.ZodObject<{
419
+ pageId: z.ZodString;
420
+ liveState: z.ZodEnum<{
421
+ LIVE: "LIVE";
422
+ REDIRECT: "REDIRECT";
423
+ }>;
424
+ }, z.core.$strict>>;
425
+ warnings: z.ZodArray<z.ZodString>;
426
+ bundleHash: z.ZodString;
427
+ confirmation: z.ZodObject<{
428
+ token: z.ZodString;
429
+ expiresAt: z.ZodString;
430
+ }, z.core.$strict>;
431
+ }, z.core.$strict>;
432
+ declare const AgentBlogApprovalExecuteSchema: z.ZodObject<{
433
+ revisionId: z.ZodString;
434
+ revisionNumber: z.ZodNumber;
435
+ slug: z.ZodString;
436
+ title: z.ZodString;
437
+ images: z.ZodArray<z.ZodObject<{
438
+ id: z.ZodString;
439
+ purpose: z.ZodEnum<{
440
+ FEATURED: "FEATURED";
441
+ SECTION: "SECTION";
442
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
443
+ }>;
444
+ contentPosition: z.ZodNullable<z.ZodString>;
445
+ width: z.ZodNumber;
446
+ height: z.ZodNumber;
447
+ mimeType: z.ZodEnum<{
448
+ "image/jpeg": "image/jpeg";
449
+ "image/png": "image/png";
450
+ "image/webp": "image/webp";
451
+ }>;
452
+ altText: z.ZodString;
453
+ caption: z.ZodNullable<z.ZodString>;
454
+ version: z.ZodNumber;
455
+ }, z.core.$strict>>;
456
+ contentHash: z.ZodString;
457
+ articleId: z.ZodString;
458
+ links: z.ZodArray<z.ZodObject<{
459
+ pageId: z.ZodString;
460
+ liveState: z.ZodEnum<{
461
+ LIVE: "LIVE";
462
+ REDIRECT: "REDIRECT";
463
+ }>;
464
+ }, z.core.$strict>>;
465
+ warnings: z.ZodArray<z.ZodString>;
466
+ bundleHash: z.ZodString;
467
+ approvalSource: z.ZodLiteral<"AGENT">;
468
+ approvedAt: z.ZodString;
469
+ }, z.core.$strict>;
255
470
  declare const AgentBlogDestinationSelectionSchema: z.ZodArray<z.ZodString>;
471
+ declare const AgentBlogSchedulePreviewRequestSchema: z.ZodObject<{
472
+ revisionId: z.ZodString;
473
+ destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
474
+ scheduledAt: z.ZodString;
475
+ timezone: z.ZodString;
476
+ }, z.core.$strict>;
477
+ declare const AgentBlogScheduleExecuteRequestSchema: z.ZodObject<{
478
+ revisionId: z.ZodString;
479
+ destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
480
+ scheduledAt: z.ZodString;
481
+ timezone: z.ZodString;
482
+ confirmationToken: z.ZodString;
483
+ idempotencyKey: z.ZodString;
484
+ }, z.core.$strict>;
485
+ declare const AgentBlogScheduleCancelPreviewRequestSchema: z.ZodObject<{}, z.core.$strict>;
486
+ declare const AgentBlogScheduleCancelExecuteRequestSchema: z.ZodObject<{
487
+ confirmationToken: z.ZodString;
488
+ idempotencyKey: z.ZodString;
489
+ }, z.core.$strict>;
490
+ declare const AgentBlogSchedulePreviewSchema: z.ZodObject<{
491
+ articleId: z.ZodString;
492
+ revisionId: z.ZodString;
493
+ contentHash: z.ZodString;
494
+ approvalBundleHash: z.ZodString;
495
+ approvalSource: z.ZodNullable<z.ZodEnum<{
496
+ AGENT: "AGENT";
497
+ USER: "USER";
498
+ }>>;
499
+ destinationIds: z.ZodArray<z.ZodString>;
500
+ scheduledAt: z.ZodString;
501
+ timezone: z.ZodString;
502
+ currentScheduleVersion: z.ZodString;
503
+ previousScheduledAt: z.ZodNullable<z.ZodString>;
504
+ confirmation: z.ZodObject<{
505
+ token: z.ZodString;
506
+ expiresAt: z.ZodString;
507
+ }, z.core.$strict>;
508
+ }, z.core.$strict>;
509
+ declare const AgentBlogScheduleExecuteSchema: z.ZodObject<{
510
+ revisionId: z.ZodString;
511
+ contentHash: z.ZodString;
512
+ articleId: z.ZodString;
513
+ approvalSource: z.ZodNullable<z.ZodEnum<{
514
+ AGENT: "AGENT";
515
+ USER: "USER";
516
+ }>>;
517
+ timezone: z.ZodString;
518
+ destinationIds: z.ZodArray<z.ZodString>;
519
+ scheduledAt: z.ZodString;
520
+ approvalBundleHash: z.ZodString;
521
+ currentScheduleVersion: z.ZodString;
522
+ previousScheduledAt: z.ZodNullable<z.ZodString>;
523
+ jobId: z.ZodString;
524
+ scheduleVersion: z.ZodString;
525
+ state: z.ZodLiteral<"SCHEDULED">;
526
+ }, z.core.$strict>;
527
+ declare const AgentBlogScheduleCancelPreviewSchema: z.ZodObject<{
528
+ articleId: z.ZodString;
529
+ revisionId: z.ZodString;
530
+ approvalBundleHash: z.ZodString;
531
+ destinationIds: z.ZodArray<z.ZodString>;
532
+ scheduledAt: z.ZodString;
533
+ timezone: z.ZodString;
534
+ scheduleVersion: z.ZodString;
535
+ confirmation: z.ZodObject<{
536
+ token: z.ZodString;
537
+ expiresAt: z.ZodString;
538
+ }, z.core.$strict>;
539
+ }, z.core.$strict>;
540
+ declare const AgentBlogScheduleCancelExecuteSchema: z.ZodObject<{
541
+ revisionId: z.ZodString;
542
+ articleId: z.ZodString;
543
+ timezone: z.ZodString;
544
+ destinationIds: z.ZodArray<z.ZodString>;
545
+ scheduledAt: z.ZodString;
546
+ approvalBundleHash: z.ZodString;
547
+ scheduleVersion: z.ZodString;
548
+ state: z.ZodLiteral<"APPROVED">;
549
+ canceledAt: z.ZodString;
550
+ }, z.core.$strict>;
256
551
  declare const AgentBlogPublishPreviewRequestSchema: z.ZodObject<{
257
552
  revisionId: z.ZodString;
258
553
  destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -311,6 +606,11 @@ declare const AgentBlogPublishPreviewSchema: z.ZodObject<{
311
606
  articleId: z.ZodString;
312
607
  revisionId: z.ZodString;
313
608
  contentHash: z.ZodString;
609
+ approvalBundleHash: z.ZodString;
610
+ approvalSource: z.ZodNullable<z.ZodEnum<{
611
+ AGENT: "AGENT";
612
+ USER: "USER";
613
+ }>>;
314
614
  title: z.ZodString;
315
615
  slug: z.ZodString;
316
616
  publicUrl: z.ZodString;
@@ -344,9 +644,9 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
344
644
  siteId: z.ZodNullable<z.ZodString>;
345
645
  blogBasePath: z.ZodNullable<z.ZodString>;
346
646
  siteImport: z.ZodEnum<{
647
+ QUEUED: "QUEUED";
347
648
  MISSING: "MISSING";
348
649
  NOT_STARTED: "NOT_STARTED";
349
- QUEUED: "QUEUED";
350
650
  RUNNING: "RUNNING";
351
651
  READY: "READY";
352
652
  USED: "USED";
@@ -356,9 +656,9 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
356
656
  }>;
357
657
  activeJobId: z.ZodNullable<z.ZodString>;
358
658
  plan: z.ZodEnum<{
659
+ QUEUED: "QUEUED";
359
660
  MISSING: "MISSING";
360
661
  NOT_STARTED: "NOT_STARTED";
361
- QUEUED: "QUEUED";
362
662
  RUNNING: "RUNNING";
363
663
  READY: "READY";
364
664
  USED: "USED";
@@ -368,9 +668,9 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
368
668
  }>;
369
669
  activePlanId: z.ZodNullable<z.ZodString>;
370
670
  deliveryCredential: z.ZodEnum<{
671
+ QUEUED: "QUEUED";
371
672
  MISSING: "MISSING";
372
673
  NOT_STARTED: "NOT_STARTED";
373
- QUEUED: "QUEUED";
374
674
  RUNNING: "RUNNING";
375
675
  READY: "READY";
376
676
  USED: "USED";
@@ -379,9 +679,9 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
379
679
  NEEDS_ATTENTION: "NEEDS_ATTENTION";
380
680
  }>;
381
681
  revalidation: z.ZodEnum<{
682
+ QUEUED: "QUEUED";
382
683
  MISSING: "MISSING";
383
684
  NOT_STARTED: "NOT_STARTED";
384
- QUEUED: "QUEUED";
385
685
  RUNNING: "RUNNING";
386
686
  READY: "READY";
387
687
  USED: "USED";
@@ -592,74 +892,383 @@ declare const AgentBlogPlanListResponseSchema: z.ZodObject<{
592
892
  requestId: z.ZodString;
593
893
  }, z.core.$strip>;
594
894
  }, z.core.$strip>;
595
- declare const AgentBlogArticleListResponseSchema: z.ZodObject<{
895
+ declare const AgentBlogArticleListResponseSchema: z.ZodObject<{
896
+ data: z.ZodObject<{
897
+ articles: z.ZodArray<z.ZodObject<{
898
+ id: z.ZodString;
899
+ state: z.ZodString;
900
+ title: z.ZodString;
901
+ slug: z.ZodString;
902
+ currentDraftId: z.ZodNullable<z.ZodString>;
903
+ approvedRevisionId: z.ZodNullable<z.ZodString>;
904
+ publishedRevisionId: z.ZodNullable<z.ZodString>;
905
+ scheduledPublishAt: z.ZodNullable<z.ZodString>;
906
+ updatedAt: z.ZodString;
907
+ }, z.core.$strip>>;
908
+ }, z.core.$strip>;
909
+ meta: z.ZodObject<{
910
+ requestId: z.ZodString;
911
+ }, z.core.$strip>;
912
+ }, z.core.$strip>;
913
+ declare const AgentBlogArticleResponseSchema: z.ZodObject<{
914
+ data: z.ZodObject<{
915
+ id: z.ZodString;
916
+ state: z.ZodString;
917
+ title: z.ZodString;
918
+ slug: z.ZodString;
919
+ currentDraftId: z.ZodNullable<z.ZodString>;
920
+ approvedRevisionId: z.ZodNullable<z.ZodString>;
921
+ publishedRevisionId: z.ZodNullable<z.ZodString>;
922
+ scheduledPublishAt: z.ZodNullable<z.ZodString>;
923
+ updatedAt: z.ZodString;
924
+ draft: z.ZodNullable<z.ZodObject<{
925
+ id: z.ZodString;
926
+ version: z.ZodNumber;
927
+ title: z.ZodString;
928
+ slug: z.ZodString;
929
+ description: z.ZodNullable<z.ZodString>;
930
+ excerpt: z.ZodNullable<z.ZodString>;
931
+ canonicalPath: z.ZodString;
932
+ tags: z.ZodArray<z.ZodString>;
933
+ author: z.ZodString;
934
+ language: z.ZodString;
935
+ markdown: z.ZodString;
936
+ callToAction: z.ZodNullable<z.ZodUnknown>;
937
+ internalLinks: z.ZodUnknown;
938
+ }, z.core.$strip>>;
939
+ revisions: z.ZodArray<z.ZodObject<{
940
+ id: z.ZodString;
941
+ revisionNumber: z.ZodNumber;
942
+ contentHash: z.ZodString;
943
+ approvedAt: z.ZodNullable<z.ZodString>;
944
+ createdAt: z.ZodString;
945
+ }, z.core.$strip>>;
946
+ images: z.ZodArray<z.ZodObject<{
947
+ id: z.ZodString;
948
+ revisionId: z.ZodNullable<z.ZodString>;
949
+ version: z.ZodNumber;
950
+ purpose: z.ZodEnum<{
951
+ FEATURED: "FEATURED";
952
+ SECTION: "SECTION";
953
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
954
+ }>;
955
+ source: z.ZodEnum<{
956
+ GENERATED: "GENERATED";
957
+ AGENT_UPLOAD: "AGENT_UPLOAD";
958
+ }>;
959
+ state: z.ZodEnum<{
960
+ QUEUED: "QUEUED";
961
+ GENERATING: "GENERATING";
962
+ READY_FOR_REVIEW: "READY_FOR_REVIEW";
963
+ APPROVED: "APPROVED";
964
+ REJECTED: "REJECTED";
965
+ FAILED: "FAILED";
966
+ }>;
967
+ publicUrl: z.ZodNullable<z.ZodString>;
968
+ mimeType: z.ZodNullable<z.ZodEnum<{
969
+ "image/jpeg": "image/jpeg";
970
+ "image/png": "image/png";
971
+ "image/webp": "image/webp";
972
+ }>>;
973
+ width: z.ZodNullable<z.ZodNumber>;
974
+ height: z.ZodNullable<z.ZodNumber>;
975
+ altText: z.ZodNullable<z.ZodString>;
976
+ caption: z.ZodNullable<z.ZodString>;
977
+ createdAt: z.ZodString;
978
+ }, z.core.$strict>>;
979
+ }, z.core.$strip>;
980
+ meta: z.ZodObject<{
981
+ requestId: z.ZodString;
982
+ }, z.core.$strip>;
983
+ }, z.core.$strip>;
984
+ declare const AgentBlogJobResponseSchema: z.ZodObject<{
985
+ data: z.ZodObject<{
986
+ id: z.ZodString;
987
+ type: z.ZodString;
988
+ state: z.ZodString;
989
+ attemptCount: z.ZodNumber;
990
+ availableAt: z.ZodString;
991
+ startedAt: z.ZodNullable<z.ZodString>;
992
+ completedAt: z.ZodNullable<z.ZodString>;
993
+ lastErrorCode: z.ZodNullable<z.ZodString>;
994
+ lastErrorMessage: z.ZodNullable<z.ZodString>;
995
+ }, z.core.$strip>;
996
+ meta: z.ZodObject<{
997
+ requestId: z.ZodString;
998
+ }, z.core.$strip>;
999
+ }, z.core.$strip>;
1000
+ declare const AgentBlogImageGenerationResponseSchema: z.ZodObject<{
1001
+ data: z.ZodObject<{
1002
+ image: z.ZodObject<{
1003
+ id: z.ZodString;
1004
+ revisionId: z.ZodNullable<z.ZodString>;
1005
+ version: z.ZodNumber;
1006
+ purpose: z.ZodEnum<{
1007
+ FEATURED: "FEATURED";
1008
+ SECTION: "SECTION";
1009
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
1010
+ }>;
1011
+ source: z.ZodEnum<{
1012
+ GENERATED: "GENERATED";
1013
+ AGENT_UPLOAD: "AGENT_UPLOAD";
1014
+ }>;
1015
+ state: z.ZodEnum<{
1016
+ QUEUED: "QUEUED";
1017
+ GENERATING: "GENERATING";
1018
+ READY_FOR_REVIEW: "READY_FOR_REVIEW";
1019
+ APPROVED: "APPROVED";
1020
+ REJECTED: "REJECTED";
1021
+ FAILED: "FAILED";
1022
+ }>;
1023
+ publicUrl: z.ZodNullable<z.ZodString>;
1024
+ mimeType: z.ZodNullable<z.ZodEnum<{
1025
+ "image/jpeg": "image/jpeg";
1026
+ "image/png": "image/png";
1027
+ "image/webp": "image/webp";
1028
+ }>>;
1029
+ width: z.ZodNullable<z.ZodNumber>;
1030
+ height: z.ZodNullable<z.ZodNumber>;
1031
+ altText: z.ZodNullable<z.ZodString>;
1032
+ caption: z.ZodNullable<z.ZodString>;
1033
+ createdAt: z.ZodString;
1034
+ }, z.core.$strict>;
1035
+ job: z.ZodObject<{
1036
+ id: z.ZodString;
1037
+ type: z.ZodString;
1038
+ state: z.ZodString;
1039
+ attemptCount: z.ZodNumber;
1040
+ availableAt: z.ZodString;
1041
+ startedAt: z.ZodNullable<z.ZodString>;
1042
+ completedAt: z.ZodNullable<z.ZodString>;
1043
+ lastErrorCode: z.ZodNullable<z.ZodString>;
1044
+ lastErrorMessage: z.ZodNullable<z.ZodString>;
1045
+ }, z.core.$strip>;
1046
+ }, z.core.$strict>;
1047
+ meta: z.ZodObject<{
1048
+ requestId: z.ZodString;
1049
+ }, z.core.$strip>;
1050
+ }, z.core.$strip>;
1051
+ declare const AgentBlogImageUploadPreparationResponseSchema: z.ZodObject<{
1052
+ data: z.ZodObject<{
1053
+ uploadUrl: z.ZodString;
1054
+ storageKey: z.ZodString;
1055
+ expiresAt: z.ZodString;
1056
+ headers: z.ZodObject<{
1057
+ "Content-Type": z.ZodEnum<{
1058
+ "image/jpeg": "image/jpeg";
1059
+ "image/png": "image/png";
1060
+ "image/webp": "image/webp";
1061
+ }>;
1062
+ }, z.core.$strict>;
1063
+ maxFileSize: z.ZodNumber;
1064
+ }, z.core.$strict>;
1065
+ meta: z.ZodObject<{
1066
+ requestId: z.ZodString;
1067
+ }, z.core.$strip>;
1068
+ }, z.core.$strip>;
1069
+ declare const AgentBlogImageResponseSchema: z.ZodObject<{
1070
+ data: z.ZodObject<{
1071
+ id: z.ZodString;
1072
+ revisionId: z.ZodNullable<z.ZodString>;
1073
+ version: z.ZodNumber;
1074
+ purpose: z.ZodEnum<{
1075
+ FEATURED: "FEATURED";
1076
+ SECTION: "SECTION";
1077
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
1078
+ }>;
1079
+ source: z.ZodEnum<{
1080
+ GENERATED: "GENERATED";
1081
+ AGENT_UPLOAD: "AGENT_UPLOAD";
1082
+ }>;
1083
+ state: z.ZodEnum<{
1084
+ QUEUED: "QUEUED";
1085
+ GENERATING: "GENERATING";
1086
+ READY_FOR_REVIEW: "READY_FOR_REVIEW";
1087
+ APPROVED: "APPROVED";
1088
+ REJECTED: "REJECTED";
1089
+ FAILED: "FAILED";
1090
+ }>;
1091
+ publicUrl: z.ZodNullable<z.ZodString>;
1092
+ mimeType: z.ZodNullable<z.ZodEnum<{
1093
+ "image/jpeg": "image/jpeg";
1094
+ "image/png": "image/png";
1095
+ "image/webp": "image/webp";
1096
+ }>>;
1097
+ width: z.ZodNullable<z.ZodNumber>;
1098
+ height: z.ZodNullable<z.ZodNumber>;
1099
+ altText: z.ZodNullable<z.ZodString>;
1100
+ caption: z.ZodNullable<z.ZodString>;
1101
+ createdAt: z.ZodString;
1102
+ }, z.core.$strict>;
1103
+ meta: z.ZodObject<{
1104
+ requestId: z.ZodString;
1105
+ }, z.core.$strip>;
1106
+ }, z.core.$strip>;
1107
+ declare const AgentBlogApprovalPreviewResponseSchema: z.ZodObject<{
1108
+ data: z.ZodObject<{
1109
+ articleId: z.ZodString;
1110
+ revisionId: z.ZodString;
1111
+ title: z.ZodString;
1112
+ slug: z.ZodString;
1113
+ revisionNumber: z.ZodNumber;
1114
+ contentHash: z.ZodString;
1115
+ images: z.ZodArray<z.ZodObject<{
1116
+ id: z.ZodString;
1117
+ purpose: z.ZodEnum<{
1118
+ FEATURED: "FEATURED";
1119
+ SECTION: "SECTION";
1120
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
1121
+ }>;
1122
+ contentPosition: z.ZodNullable<z.ZodString>;
1123
+ width: z.ZodNumber;
1124
+ height: z.ZodNumber;
1125
+ mimeType: z.ZodEnum<{
1126
+ "image/jpeg": "image/jpeg";
1127
+ "image/png": "image/png";
1128
+ "image/webp": "image/webp";
1129
+ }>;
1130
+ altText: z.ZodString;
1131
+ caption: z.ZodNullable<z.ZodString>;
1132
+ version: z.ZodNumber;
1133
+ }, z.core.$strict>>;
1134
+ links: z.ZodArray<z.ZodObject<{
1135
+ pageId: z.ZodString;
1136
+ liveState: z.ZodEnum<{
1137
+ LIVE: "LIVE";
1138
+ REDIRECT: "REDIRECT";
1139
+ }>;
1140
+ }, z.core.$strict>>;
1141
+ warnings: z.ZodArray<z.ZodString>;
1142
+ bundleHash: z.ZodString;
1143
+ confirmation: z.ZodObject<{
1144
+ token: z.ZodString;
1145
+ expiresAt: z.ZodString;
1146
+ }, z.core.$strict>;
1147
+ }, z.core.$strict>;
1148
+ meta: z.ZodObject<{
1149
+ requestId: z.ZodString;
1150
+ }, z.core.$strip>;
1151
+ }, z.core.$strip>;
1152
+ declare const AgentBlogApprovalExecuteResponseSchema: z.ZodObject<{
1153
+ data: z.ZodObject<{
1154
+ revisionId: z.ZodString;
1155
+ revisionNumber: z.ZodNumber;
1156
+ slug: z.ZodString;
1157
+ title: z.ZodString;
1158
+ images: z.ZodArray<z.ZodObject<{
1159
+ id: z.ZodString;
1160
+ purpose: z.ZodEnum<{
1161
+ FEATURED: "FEATURED";
1162
+ SECTION: "SECTION";
1163
+ SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
1164
+ }>;
1165
+ contentPosition: z.ZodNullable<z.ZodString>;
1166
+ width: z.ZodNumber;
1167
+ height: z.ZodNumber;
1168
+ mimeType: z.ZodEnum<{
1169
+ "image/jpeg": "image/jpeg";
1170
+ "image/png": "image/png";
1171
+ "image/webp": "image/webp";
1172
+ }>;
1173
+ altText: z.ZodString;
1174
+ caption: z.ZodNullable<z.ZodString>;
1175
+ version: z.ZodNumber;
1176
+ }, z.core.$strict>>;
1177
+ contentHash: z.ZodString;
1178
+ articleId: z.ZodString;
1179
+ links: z.ZodArray<z.ZodObject<{
1180
+ pageId: z.ZodString;
1181
+ liveState: z.ZodEnum<{
1182
+ LIVE: "LIVE";
1183
+ REDIRECT: "REDIRECT";
1184
+ }>;
1185
+ }, z.core.$strict>>;
1186
+ warnings: z.ZodArray<z.ZodString>;
1187
+ bundleHash: z.ZodString;
1188
+ approvalSource: z.ZodLiteral<"AGENT">;
1189
+ approvedAt: z.ZodString;
1190
+ }, z.core.$strict>;
1191
+ meta: z.ZodObject<{
1192
+ requestId: z.ZodString;
1193
+ }, z.core.$strip>;
1194
+ }, z.core.$strip>;
1195
+ declare const AgentBlogSchedulePreviewResponseSchema: z.ZodObject<{
1196
+ data: z.ZodObject<{
1197
+ articleId: z.ZodString;
1198
+ revisionId: z.ZodString;
1199
+ contentHash: z.ZodString;
1200
+ approvalBundleHash: z.ZodString;
1201
+ approvalSource: z.ZodNullable<z.ZodEnum<{
1202
+ AGENT: "AGENT";
1203
+ USER: "USER";
1204
+ }>>;
1205
+ destinationIds: z.ZodArray<z.ZodString>;
1206
+ scheduledAt: z.ZodString;
1207
+ timezone: z.ZodString;
1208
+ currentScheduleVersion: z.ZodString;
1209
+ previousScheduledAt: z.ZodNullable<z.ZodString>;
1210
+ confirmation: z.ZodObject<{
1211
+ token: z.ZodString;
1212
+ expiresAt: z.ZodString;
1213
+ }, z.core.$strict>;
1214
+ }, z.core.$strict>;
1215
+ meta: z.ZodObject<{
1216
+ requestId: z.ZodString;
1217
+ }, z.core.$strip>;
1218
+ }, z.core.$strip>;
1219
+ declare const AgentBlogScheduleExecuteResponseSchema: z.ZodObject<{
596
1220
  data: z.ZodObject<{
597
- articles: z.ZodArray<z.ZodObject<{
598
- id: z.ZodString;
599
- state: z.ZodString;
600
- title: z.ZodString;
601
- slug: z.ZodString;
602
- currentDraftId: z.ZodNullable<z.ZodString>;
603
- approvedRevisionId: z.ZodNullable<z.ZodString>;
604
- publishedRevisionId: z.ZodNullable<z.ZodString>;
605
- scheduledPublishAt: z.ZodNullable<z.ZodString>;
606
- updatedAt: z.ZodString;
607
- }, z.core.$strip>>;
608
- }, z.core.$strip>;
1221
+ revisionId: z.ZodString;
1222
+ contentHash: z.ZodString;
1223
+ articleId: z.ZodString;
1224
+ approvalSource: z.ZodNullable<z.ZodEnum<{
1225
+ AGENT: "AGENT";
1226
+ USER: "USER";
1227
+ }>>;
1228
+ timezone: z.ZodString;
1229
+ destinationIds: z.ZodArray<z.ZodString>;
1230
+ scheduledAt: z.ZodString;
1231
+ approvalBundleHash: z.ZodString;
1232
+ currentScheduleVersion: z.ZodString;
1233
+ previousScheduledAt: z.ZodNullable<z.ZodString>;
1234
+ jobId: z.ZodString;
1235
+ scheduleVersion: z.ZodString;
1236
+ state: z.ZodLiteral<"SCHEDULED">;
1237
+ }, z.core.$strict>;
609
1238
  meta: z.ZodObject<{
610
1239
  requestId: z.ZodString;
611
1240
  }, z.core.$strip>;
612
1241
  }, z.core.$strip>;
613
- declare const AgentBlogArticleResponseSchema: z.ZodObject<{
1242
+ declare const AgentBlogScheduleCancelPreviewResponseSchema: z.ZodObject<{
614
1243
  data: z.ZodObject<{
615
- id: z.ZodString;
616
- state: z.ZodString;
617
- title: z.ZodString;
618
- slug: z.ZodString;
619
- currentDraftId: z.ZodNullable<z.ZodString>;
620
- approvedRevisionId: z.ZodNullable<z.ZodString>;
621
- publishedRevisionId: z.ZodNullable<z.ZodString>;
622
- scheduledPublishAt: z.ZodNullable<z.ZodString>;
623
- updatedAt: z.ZodString;
624
- draft: z.ZodNullable<z.ZodObject<{
625
- id: z.ZodString;
626
- version: z.ZodNumber;
627
- title: z.ZodString;
628
- slug: z.ZodString;
629
- description: z.ZodNullable<z.ZodString>;
630
- excerpt: z.ZodNullable<z.ZodString>;
631
- canonicalPath: z.ZodString;
632
- tags: z.ZodArray<z.ZodString>;
633
- author: z.ZodString;
634
- language: z.ZodString;
635
- markdown: z.ZodString;
636
- callToAction: z.ZodNullable<z.ZodUnknown>;
637
- internalLinks: z.ZodUnknown;
638
- }, z.core.$strip>>;
639
- revisions: z.ZodArray<z.ZodObject<{
640
- id: z.ZodString;
641
- revisionNumber: z.ZodNumber;
642
- contentHash: z.ZodString;
643
- approvedAt: z.ZodNullable<z.ZodString>;
644
- createdAt: z.ZodString;
645
- }, z.core.$strip>>;
646
- }, z.core.$strip>;
1244
+ articleId: z.ZodString;
1245
+ revisionId: z.ZodString;
1246
+ approvalBundleHash: z.ZodString;
1247
+ destinationIds: z.ZodArray<z.ZodString>;
1248
+ scheduledAt: z.ZodString;
1249
+ timezone: z.ZodString;
1250
+ scheduleVersion: z.ZodString;
1251
+ confirmation: z.ZodObject<{
1252
+ token: z.ZodString;
1253
+ expiresAt: z.ZodString;
1254
+ }, z.core.$strict>;
1255
+ }, z.core.$strict>;
647
1256
  meta: z.ZodObject<{
648
1257
  requestId: z.ZodString;
649
1258
  }, z.core.$strip>;
650
1259
  }, z.core.$strip>;
651
- declare const AgentBlogJobResponseSchema: z.ZodObject<{
1260
+ declare const AgentBlogScheduleCancelExecuteResponseSchema: z.ZodObject<{
652
1261
  data: z.ZodObject<{
653
- id: z.ZodString;
654
- type: z.ZodString;
655
- state: z.ZodString;
656
- attemptCount: z.ZodNumber;
657
- availableAt: z.ZodString;
658
- startedAt: z.ZodNullable<z.ZodString>;
659
- completedAt: z.ZodNullable<z.ZodString>;
660
- lastErrorCode: z.ZodNullable<z.ZodString>;
661
- lastErrorMessage: z.ZodNullable<z.ZodString>;
662
- }, z.core.$strip>;
1262
+ revisionId: z.ZodString;
1263
+ articleId: z.ZodString;
1264
+ timezone: z.ZodString;
1265
+ destinationIds: z.ZodArray<z.ZodString>;
1266
+ scheduledAt: z.ZodString;
1267
+ approvalBundleHash: z.ZodString;
1268
+ scheduleVersion: z.ZodString;
1269
+ state: z.ZodLiteral<"APPROVED">;
1270
+ canceledAt: z.ZodString;
1271
+ }, z.core.$strict>;
663
1272
  meta: z.ZodObject<{
664
1273
  requestId: z.ZodString;
665
1274
  }, z.core.$strip>;
@@ -669,6 +1278,11 @@ declare const AgentBlogPublishPreviewResponseSchema: z.ZodObject<{
669
1278
  articleId: z.ZodString;
670
1279
  revisionId: z.ZodString;
671
1280
  contentHash: z.ZodString;
1281
+ approvalBundleHash: z.ZodString;
1282
+ approvalSource: z.ZodNullable<z.ZodEnum<{
1283
+ AGENT: "AGENT";
1284
+ USER: "USER";
1285
+ }>>;
672
1286
  title: z.ZodString;
673
1287
  slug: z.ZodString;
674
1288
  publicUrl: z.ZodString;
@@ -700,6 +1314,11 @@ declare const AgentBlogPublishExecuteResponseSchema: z.ZodObject<{
700
1314
  publicationId: z.ZodString;
701
1315
  articleId: z.ZodString;
702
1316
  revisionId: z.ZodString;
1317
+ approvalBundleHash: z.ZodString;
1318
+ approvalSource: z.ZodNullable<z.ZodEnum<{
1319
+ AGENT: "AGENT";
1320
+ USER: "USER";
1321
+ }>>;
703
1322
  publicUrl: z.ZodString;
704
1323
  publishedAt: z.ZodString;
705
1324
  }, z.core.$strip>;
@@ -784,9 +1403,9 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
784
1403
  siteId: z.ZodNullable<z.ZodString>;
785
1404
  blogBasePath: z.ZodNullable<z.ZodString>;
786
1405
  siteImport: z.ZodEnum<{
1406
+ QUEUED: "QUEUED";
787
1407
  MISSING: "MISSING";
788
1408
  NOT_STARTED: "NOT_STARTED";
789
- QUEUED: "QUEUED";
790
1409
  RUNNING: "RUNNING";
791
1410
  READY: "READY";
792
1411
  USED: "USED";
@@ -796,9 +1415,9 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
796
1415
  }>;
797
1416
  activeJobId: z.ZodNullable<z.ZodString>;
798
1417
  plan: z.ZodEnum<{
1418
+ QUEUED: "QUEUED";
799
1419
  MISSING: "MISSING";
800
1420
  NOT_STARTED: "NOT_STARTED";
801
- QUEUED: "QUEUED";
802
1421
  RUNNING: "RUNNING";
803
1422
  READY: "READY";
804
1423
  USED: "USED";
@@ -808,9 +1427,9 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
808
1427
  }>;
809
1428
  activePlanId: z.ZodNullable<z.ZodString>;
810
1429
  deliveryCredential: z.ZodEnum<{
1430
+ QUEUED: "QUEUED";
811
1431
  MISSING: "MISSING";
812
1432
  NOT_STARTED: "NOT_STARTED";
813
- QUEUED: "QUEUED";
814
1433
  RUNNING: "RUNNING";
815
1434
  READY: "READY";
816
1435
  USED: "USED";
@@ -819,9 +1438,9 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
819
1438
  NEEDS_ATTENTION: "NEEDS_ATTENTION";
820
1439
  }>;
821
1440
  revalidation: z.ZodEnum<{
1441
+ QUEUED: "QUEUED";
822
1442
  MISSING: "MISSING";
823
1443
  NOT_STARTED: "NOT_STARTED";
824
- QUEUED: "QUEUED";
825
1444
  RUNNING: "RUNNING";
826
1445
  READY: "READY";
827
1446
  USED: "USED";
@@ -1065,6 +1684,7 @@ declare const CapabilitySchema: z.ZodObject<{
1065
1684
  "blog:read": "blog:read";
1066
1685
  "blog:write": "blog:write";
1067
1686
  "blog:manage": "blog:manage";
1687
+ "blog:approve": "blog:approve";
1068
1688
  "blog:publish": "blog:publish";
1069
1689
  }>;
1070
1690
  available: z.ZodBoolean;
@@ -1110,6 +1730,7 @@ declare const ApiMetaSchema: z.ZodObject<{
1110
1730
  "blog:read": "blog:read";
1111
1731
  "blog:write": "blog:write";
1112
1732
  "blog:manage": "blog:manage";
1733
+ "blog:approve": "blog:approve";
1113
1734
  "blog:publish": "blog:publish";
1114
1735
  }>;
1115
1736
  available: z.ZodBoolean;
@@ -1157,6 +1778,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
1157
1778
  "blog:read": "blog:read";
1158
1779
  "blog:write": "blog:write";
1159
1780
  "blog:manage": "blog:manage";
1781
+ "blog:approve": "blog:approve";
1160
1782
  "blog:publish": "blog:publish";
1161
1783
  }>;
1162
1784
  available: z.ZodBoolean;
@@ -1210,6 +1832,7 @@ declare const ActorSchema: z.ZodObject<{
1210
1832
  "blog:read": "blog:read";
1211
1833
  "blog:write": "blog:write";
1212
1834
  "blog:manage": "blog:manage";
1835
+ "blog:approve": "blog:approve";
1213
1836
  "blog:publish": "blog:publish";
1214
1837
  }>>;
1215
1838
  }, z.core.$strip>;
@@ -1247,6 +1870,7 @@ declare const WhoAmIResponseSchema: z.ZodObject<{
1247
1870
  "blog:read": "blog:read";
1248
1871
  "blog:write": "blog:write";
1249
1872
  "blog:manage": "blog:manage";
1873
+ "blog:approve": "blog:approve";
1250
1874
  "blog:publish": "blog:publish";
1251
1875
  }>>;
1252
1876
  }, z.core.$strip>;
@@ -1283,6 +1907,7 @@ declare const CliAuthorizationCredentialSchema: z.ZodObject<{
1283
1907
  "blog:read": "blog:read";
1284
1908
  "blog:write": "blog:write";
1285
1909
  "blog:manage": "blog:manage";
1910
+ "blog:approve": "blog:approve";
1286
1911
  "blog:publish": "blog:publish";
1287
1912
  }>>;
1288
1913
  }, z.core.$strip>;
@@ -1310,6 +1935,7 @@ declare const CliAuthorizationExchangeResponseSchema: z.ZodObject<{
1310
1935
  "blog:read": "blog:read";
1311
1936
  "blog:write": "blog:write";
1312
1937
  "blog:manage": "blog:manage";
1938
+ "blog:approve": "blog:approve";
1313
1939
  "blog:publish": "blog:publish";
1314
1940
  }>>;
1315
1941
  }, z.core.$strip>;
@@ -1346,6 +1972,7 @@ declare const CapabilitiesDataSchema: z.ZodObject<{
1346
1972
  "blog:read": "blog:read";
1347
1973
  "blog:write": "blog:write";
1348
1974
  "blog:manage": "blog:manage";
1975
+ "blog:approve": "blog:approve";
1349
1976
  "blog:publish": "blog:publish";
1350
1977
  }>;
1351
1978
  available: z.ZodBoolean;
@@ -1374,6 +2001,7 @@ declare const CapabilitiesResponseSchema: z.ZodObject<{
1374
2001
  "blog:read": "blog:read";
1375
2002
  "blog:write": "blog:write";
1376
2003
  "blog:manage": "blog:manage";
2004
+ "blog:approve": "blog:approve";
1377
2005
  "blog:publish": "blog:publish";
1378
2006
  }>;
1379
2007
  available: z.ZodBoolean;
@@ -1544,22 +2172,22 @@ declare const ProjectResponseSchema: z.ZodObject<{
1544
2172
  }, z.core.$strip>;
1545
2173
  type ProjectResponse = z.infer<typeof ProjectResponseSchema>;
1546
2174
  declare const PostStatusSchema: z.ZodEnum<{
1547
- DRAFT: "DRAFT";
2175
+ FAILED: "FAILED";
1548
2176
  SCHEDULED: "SCHEDULED";
2177
+ DRAFT: "DRAFT";
1549
2178
  ACTION_REQUIRED: "ACTION_REQUIRED";
1550
2179
  PUBLISHING: "PUBLISHING";
1551
2180
  PUBLISHED: "PUBLISHED";
1552
2181
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
1553
- FAILED: "FAILED";
1554
2182
  }>;
1555
2183
  type PostStatus = z.infer<typeof PostStatusSchema>;
1556
2184
  declare const PlatformPostStatusSchema: z.ZodEnum<{
1557
- DRAFT: "DRAFT";
2185
+ FAILED: "FAILED";
1558
2186
  SCHEDULED: "SCHEDULED";
2187
+ DRAFT: "DRAFT";
1559
2188
  ACTION_REQUIRED: "ACTION_REQUIRED";
1560
2189
  PUBLISHING: "PUBLISHING";
1561
2190
  PUBLISHED: "PUBLISHED";
1562
- FAILED: "FAILED";
1563
2191
  PREPARING: "PREPARING";
1564
2192
  }>;
1565
2193
  declare const PostMediaSchema: z.ZodObject<{
@@ -1730,12 +2358,12 @@ declare const PostDeliveryModeSchema: z.ZodEnum<{
1730
2358
  type PostDeliveryMode = z.infer<typeof PostDeliveryModeSchema>;
1731
2359
  declare const PostDestinationStageSchema: z.ZodEnum<{
1732
2360
  QUEUED: "QUEUED";
1733
- DRAFT: "DRAFT";
2361
+ FAILED: "FAILED";
1734
2362
  SCHEDULED: "SCHEDULED";
2363
+ DRAFT: "DRAFT";
1735
2364
  ACTION_REQUIRED: "ACTION_REQUIRED";
1736
2365
  PUBLISHING: "PUBLISHING";
1737
2366
  PUBLISHED: "PUBLISHED";
1738
- FAILED: "FAILED";
1739
2367
  UPLOADING: "UPLOADING";
1740
2368
  PROCESSING: "PROCESSING";
1741
2369
  CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
@@ -1750,12 +2378,12 @@ declare const PostDestinationSchema: z.ZodObject<{
1750
2378
  LINKEDIN: "LINKEDIN";
1751
2379
  }>;
1752
2380
  status: z.ZodEnum<{
1753
- DRAFT: "DRAFT";
2381
+ FAILED: "FAILED";
1754
2382
  SCHEDULED: "SCHEDULED";
2383
+ DRAFT: "DRAFT";
1755
2384
  ACTION_REQUIRED: "ACTION_REQUIRED";
1756
2385
  PUBLISHING: "PUBLISHING";
1757
2386
  PUBLISHED: "PUBLISHED";
1758
- FAILED: "FAILED";
1759
2387
  PREPARING: "PREPARING";
1760
2388
  }>;
1761
2389
  deliveryMode: z.ZodEnum<{
@@ -1764,12 +2392,12 @@ declare const PostDestinationSchema: z.ZodObject<{
1764
2392
  }>;
1765
2393
  stage: z.ZodEnum<{
1766
2394
  QUEUED: "QUEUED";
1767
- DRAFT: "DRAFT";
2395
+ FAILED: "FAILED";
1768
2396
  SCHEDULED: "SCHEDULED";
2397
+ DRAFT: "DRAFT";
1769
2398
  ACTION_REQUIRED: "ACTION_REQUIRED";
1770
2399
  PUBLISHING: "PUBLISHING";
1771
2400
  PUBLISHED: "PUBLISHED";
1772
- FAILED: "FAILED";
1773
2401
  UPLOADING: "UPLOADING";
1774
2402
  PROCESSING: "PROCESSING";
1775
2403
  CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
@@ -1898,13 +2526,13 @@ declare const PostSchema: z.ZodObject<{
1898
2526
  }, z.core.$strip>>;
1899
2527
  caption: z.ZodString;
1900
2528
  status: z.ZodEnum<{
1901
- DRAFT: "DRAFT";
2529
+ FAILED: "FAILED";
1902
2530
  SCHEDULED: "SCHEDULED";
2531
+ DRAFT: "DRAFT";
1903
2532
  ACTION_REQUIRED: "ACTION_REQUIRED";
1904
2533
  PUBLISHING: "PUBLISHING";
1905
2534
  PUBLISHED: "PUBLISHED";
1906
2535
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
1907
- FAILED: "FAILED";
1908
2536
  }>;
1909
2537
  scheduledAt: z.ZodNullable<z.ZodString>;
1910
2538
  timezone: z.ZodNullable<z.ZodString>;
@@ -1937,12 +2565,12 @@ declare const PostSchema: z.ZodObject<{
1937
2565
  LINKEDIN: "LINKEDIN";
1938
2566
  }>;
1939
2567
  status: z.ZodEnum<{
1940
- DRAFT: "DRAFT";
2568
+ FAILED: "FAILED";
1941
2569
  SCHEDULED: "SCHEDULED";
2570
+ DRAFT: "DRAFT";
1942
2571
  ACTION_REQUIRED: "ACTION_REQUIRED";
1943
2572
  PUBLISHING: "PUBLISHING";
1944
2573
  PUBLISHED: "PUBLISHED";
1945
- FAILED: "FAILED";
1946
2574
  PREPARING: "PREPARING";
1947
2575
  }>;
1948
2576
  deliveryMode: z.ZodEnum<{
@@ -1951,12 +2579,12 @@ declare const PostSchema: z.ZodObject<{
1951
2579
  }>;
1952
2580
  stage: z.ZodEnum<{
1953
2581
  QUEUED: "QUEUED";
1954
- DRAFT: "DRAFT";
2582
+ FAILED: "FAILED";
1955
2583
  SCHEDULED: "SCHEDULED";
2584
+ DRAFT: "DRAFT";
1956
2585
  ACTION_REQUIRED: "ACTION_REQUIRED";
1957
2586
  PUBLISHING: "PUBLISHING";
1958
2587
  PUBLISHED: "PUBLISHED";
1959
- FAILED: "FAILED";
1960
2588
  UPLOADING: "UPLOADING";
1961
2589
  PROCESSING: "PROCESSING";
1962
2590
  CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
@@ -2004,13 +2632,13 @@ declare const PostListQuerySchema: z.ZodObject<{
2004
2632
  limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
2005
2633
  cursor: z.ZodOptional<z.ZodString>;
2006
2634
  status: z.ZodOptional<z.ZodEnum<{
2007
- DRAFT: "DRAFT";
2635
+ FAILED: "FAILED";
2008
2636
  SCHEDULED: "SCHEDULED";
2637
+ DRAFT: "DRAFT";
2009
2638
  ACTION_REQUIRED: "ACTION_REQUIRED";
2010
2639
  PUBLISHING: "PUBLISHING";
2011
2640
  PUBLISHED: "PUBLISHED";
2012
2641
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
2013
- FAILED: "FAILED";
2014
2642
  }>>;
2015
2643
  }, z.core.$strip>;
2016
2644
  type PostListQuery = z.input<typeof PostListQuerySchema>;
@@ -2025,13 +2653,13 @@ declare const PostListDataSchema: z.ZodObject<{
2025
2653
  }, z.core.$strip>>;
2026
2654
  caption: z.ZodString;
2027
2655
  status: z.ZodEnum<{
2028
- DRAFT: "DRAFT";
2656
+ FAILED: "FAILED";
2029
2657
  SCHEDULED: "SCHEDULED";
2658
+ DRAFT: "DRAFT";
2030
2659
  ACTION_REQUIRED: "ACTION_REQUIRED";
2031
2660
  PUBLISHING: "PUBLISHING";
2032
2661
  PUBLISHED: "PUBLISHED";
2033
2662
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
2034
- FAILED: "FAILED";
2035
2663
  }>;
2036
2664
  scheduledAt: z.ZodNullable<z.ZodString>;
2037
2665
  timezone: z.ZodNullable<z.ZodString>;
@@ -2064,12 +2692,12 @@ declare const PostListDataSchema: z.ZodObject<{
2064
2692
  LINKEDIN: "LINKEDIN";
2065
2693
  }>;
2066
2694
  status: z.ZodEnum<{
2067
- DRAFT: "DRAFT";
2695
+ FAILED: "FAILED";
2068
2696
  SCHEDULED: "SCHEDULED";
2697
+ DRAFT: "DRAFT";
2069
2698
  ACTION_REQUIRED: "ACTION_REQUIRED";
2070
2699
  PUBLISHING: "PUBLISHING";
2071
2700
  PUBLISHED: "PUBLISHED";
2072
- FAILED: "FAILED";
2073
2701
  PREPARING: "PREPARING";
2074
2702
  }>;
2075
2703
  deliveryMode: z.ZodEnum<{
@@ -2078,12 +2706,12 @@ declare const PostListDataSchema: z.ZodObject<{
2078
2706
  }>;
2079
2707
  stage: z.ZodEnum<{
2080
2708
  QUEUED: "QUEUED";
2081
- DRAFT: "DRAFT";
2709
+ FAILED: "FAILED";
2082
2710
  SCHEDULED: "SCHEDULED";
2711
+ DRAFT: "DRAFT";
2083
2712
  ACTION_REQUIRED: "ACTION_REQUIRED";
2084
2713
  PUBLISHING: "PUBLISHING";
2085
2714
  PUBLISHED: "PUBLISHED";
2086
- FAILED: "FAILED";
2087
2715
  UPLOADING: "UPLOADING";
2088
2716
  PROCESSING: "PROCESSING";
2089
2717
  CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
@@ -2144,13 +2772,13 @@ declare const PostListResponseSchema: z.ZodObject<{
2144
2772
  }, z.core.$strip>>;
2145
2773
  caption: z.ZodString;
2146
2774
  status: z.ZodEnum<{
2147
- DRAFT: "DRAFT";
2775
+ FAILED: "FAILED";
2148
2776
  SCHEDULED: "SCHEDULED";
2777
+ DRAFT: "DRAFT";
2149
2778
  ACTION_REQUIRED: "ACTION_REQUIRED";
2150
2779
  PUBLISHING: "PUBLISHING";
2151
2780
  PUBLISHED: "PUBLISHED";
2152
2781
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
2153
- FAILED: "FAILED";
2154
2782
  }>;
2155
2783
  scheduledAt: z.ZodNullable<z.ZodString>;
2156
2784
  timezone: z.ZodNullable<z.ZodString>;
@@ -2183,12 +2811,12 @@ declare const PostListResponseSchema: z.ZodObject<{
2183
2811
  LINKEDIN: "LINKEDIN";
2184
2812
  }>;
2185
2813
  status: z.ZodEnum<{
2186
- DRAFT: "DRAFT";
2814
+ FAILED: "FAILED";
2187
2815
  SCHEDULED: "SCHEDULED";
2816
+ DRAFT: "DRAFT";
2188
2817
  ACTION_REQUIRED: "ACTION_REQUIRED";
2189
2818
  PUBLISHING: "PUBLISHING";
2190
2819
  PUBLISHED: "PUBLISHED";
2191
- FAILED: "FAILED";
2192
2820
  PREPARING: "PREPARING";
2193
2821
  }>;
2194
2822
  deliveryMode: z.ZodEnum<{
@@ -2197,12 +2825,12 @@ declare const PostListResponseSchema: z.ZodObject<{
2197
2825
  }>;
2198
2826
  stage: z.ZodEnum<{
2199
2827
  QUEUED: "QUEUED";
2200
- DRAFT: "DRAFT";
2828
+ FAILED: "FAILED";
2201
2829
  SCHEDULED: "SCHEDULED";
2830
+ DRAFT: "DRAFT";
2202
2831
  ACTION_REQUIRED: "ACTION_REQUIRED";
2203
2832
  PUBLISHING: "PUBLISHING";
2204
2833
  PUBLISHED: "PUBLISHED";
2205
- FAILED: "FAILED";
2206
2834
  UPLOADING: "UPLOADING";
2207
2835
  PROCESSING: "PROCESSING";
2208
2836
  CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
@@ -2266,13 +2894,13 @@ declare const PostResponseSchema: z.ZodObject<{
2266
2894
  }, z.core.$strip>>;
2267
2895
  caption: z.ZodString;
2268
2896
  status: z.ZodEnum<{
2269
- DRAFT: "DRAFT";
2897
+ FAILED: "FAILED";
2270
2898
  SCHEDULED: "SCHEDULED";
2899
+ DRAFT: "DRAFT";
2271
2900
  ACTION_REQUIRED: "ACTION_REQUIRED";
2272
2901
  PUBLISHING: "PUBLISHING";
2273
2902
  PUBLISHED: "PUBLISHED";
2274
2903
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
2275
- FAILED: "FAILED";
2276
2904
  }>;
2277
2905
  scheduledAt: z.ZodNullable<z.ZodString>;
2278
2906
  timezone: z.ZodNullable<z.ZodString>;
@@ -2305,12 +2933,12 @@ declare const PostResponseSchema: z.ZodObject<{
2305
2933
  LINKEDIN: "LINKEDIN";
2306
2934
  }>;
2307
2935
  status: z.ZodEnum<{
2308
- DRAFT: "DRAFT";
2936
+ FAILED: "FAILED";
2309
2937
  SCHEDULED: "SCHEDULED";
2938
+ DRAFT: "DRAFT";
2310
2939
  ACTION_REQUIRED: "ACTION_REQUIRED";
2311
2940
  PUBLISHING: "PUBLISHING";
2312
2941
  PUBLISHED: "PUBLISHED";
2313
- FAILED: "FAILED";
2314
2942
  PREPARING: "PREPARING";
2315
2943
  }>;
2316
2944
  deliveryMode: z.ZodEnum<{
@@ -2319,12 +2947,12 @@ declare const PostResponseSchema: z.ZodObject<{
2319
2947
  }>;
2320
2948
  stage: z.ZodEnum<{
2321
2949
  QUEUED: "QUEUED";
2322
- DRAFT: "DRAFT";
2950
+ FAILED: "FAILED";
2323
2951
  SCHEDULED: "SCHEDULED";
2952
+ DRAFT: "DRAFT";
2324
2953
  ACTION_REQUIRED: "ACTION_REQUIRED";
2325
2954
  PUBLISHING: "PUBLISHING";
2326
2955
  PUBLISHED: "PUBLISHED";
2327
- FAILED: "FAILED";
2328
2956
  UPLOADING: "UPLOADING";
2329
2957
  PROCESSING: "PROCESSING";
2330
2958
  CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
@@ -3147,13 +3775,13 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
3147
3775
  projectId: z.ZodString;
3148
3776
  version: z.ZodNumber;
3149
3777
  status: z.ZodEnum<{
3150
- DRAFT: "DRAFT";
3778
+ FAILED: "FAILED";
3151
3779
  SCHEDULED: "SCHEDULED";
3780
+ DRAFT: "DRAFT";
3152
3781
  ACTION_REQUIRED: "ACTION_REQUIRED";
3153
3782
  PUBLISHING: "PUBLISHING";
3154
3783
  PUBLISHED: "PUBLISHED";
3155
3784
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
3156
- FAILED: "FAILED";
3157
3785
  }>;
3158
3786
  }, z.core.$strip>;
3159
3787
  schedule: z.ZodObject<{
@@ -3273,13 +3901,13 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
3273
3901
  projectId: z.ZodString;
3274
3902
  version: z.ZodNumber;
3275
3903
  status: z.ZodEnum<{
3276
- DRAFT: "DRAFT";
3904
+ FAILED: "FAILED";
3277
3905
  SCHEDULED: "SCHEDULED";
3906
+ DRAFT: "DRAFT";
3278
3907
  ACTION_REQUIRED: "ACTION_REQUIRED";
3279
3908
  PUBLISHING: "PUBLISHING";
3280
3909
  PUBLISHED: "PUBLISHED";
3281
3910
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
3282
- FAILED: "FAILED";
3283
3911
  }>;
3284
3912
  }, z.core.$strip>;
3285
3913
  schedule: z.ZodObject<{
@@ -3417,13 +4045,13 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
3417
4045
  }, z.core.$strip>>;
3418
4046
  caption: z.ZodString;
3419
4047
  status: z.ZodEnum<{
3420
- DRAFT: "DRAFT";
4048
+ FAILED: "FAILED";
3421
4049
  SCHEDULED: "SCHEDULED";
4050
+ DRAFT: "DRAFT";
3422
4051
  ACTION_REQUIRED: "ACTION_REQUIRED";
3423
4052
  PUBLISHING: "PUBLISHING";
3424
4053
  PUBLISHED: "PUBLISHED";
3425
4054
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
3426
- FAILED: "FAILED";
3427
4055
  }>;
3428
4056
  scheduledAt: z.ZodNullable<z.ZodString>;
3429
4057
  timezone: z.ZodNullable<z.ZodString>;
@@ -3456,12 +4084,12 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
3456
4084
  LINKEDIN: "LINKEDIN";
3457
4085
  }>;
3458
4086
  status: z.ZodEnum<{
3459
- DRAFT: "DRAFT";
4087
+ FAILED: "FAILED";
3460
4088
  SCHEDULED: "SCHEDULED";
4089
+ DRAFT: "DRAFT";
3461
4090
  ACTION_REQUIRED: "ACTION_REQUIRED";
3462
4091
  PUBLISHING: "PUBLISHING";
3463
4092
  PUBLISHED: "PUBLISHED";
3464
- FAILED: "FAILED";
3465
4093
  PREPARING: "PREPARING";
3466
4094
  }>;
3467
4095
  deliveryMode: z.ZodEnum<{
@@ -3470,12 +4098,12 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
3470
4098
  }>;
3471
4099
  stage: z.ZodEnum<{
3472
4100
  QUEUED: "QUEUED";
3473
- DRAFT: "DRAFT";
4101
+ FAILED: "FAILED";
3474
4102
  SCHEDULED: "SCHEDULED";
4103
+ DRAFT: "DRAFT";
3475
4104
  ACTION_REQUIRED: "ACTION_REQUIRED";
3476
4105
  PUBLISHING: "PUBLISHING";
3477
4106
  PUBLISHED: "PUBLISHED";
3478
- FAILED: "FAILED";
3479
4107
  UPLOADING: "UPLOADING";
3480
4108
  PROCESSING: "PROCESSING";
3481
4109
  CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
@@ -3542,13 +4170,13 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
3542
4170
  }, z.core.$strip>>;
3543
4171
  caption: z.ZodString;
3544
4172
  status: z.ZodEnum<{
3545
- DRAFT: "DRAFT";
4173
+ FAILED: "FAILED";
3546
4174
  SCHEDULED: "SCHEDULED";
4175
+ DRAFT: "DRAFT";
3547
4176
  ACTION_REQUIRED: "ACTION_REQUIRED";
3548
4177
  PUBLISHING: "PUBLISHING";
3549
4178
  PUBLISHED: "PUBLISHED";
3550
4179
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
3551
- FAILED: "FAILED";
3552
4180
  }>;
3553
4181
  scheduledAt: z.ZodNullable<z.ZodString>;
3554
4182
  timezone: z.ZodNullable<z.ZodString>;
@@ -3581,12 +4209,12 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
3581
4209
  LINKEDIN: "LINKEDIN";
3582
4210
  }>;
3583
4211
  status: z.ZodEnum<{
3584
- DRAFT: "DRAFT";
4212
+ FAILED: "FAILED";
3585
4213
  SCHEDULED: "SCHEDULED";
4214
+ DRAFT: "DRAFT";
3586
4215
  ACTION_REQUIRED: "ACTION_REQUIRED";
3587
4216
  PUBLISHING: "PUBLISHING";
3588
4217
  PUBLISHED: "PUBLISHED";
3589
- FAILED: "FAILED";
3590
4218
  PREPARING: "PREPARING";
3591
4219
  }>;
3592
4220
  deliveryMode: z.ZodEnum<{
@@ -3595,12 +4223,12 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
3595
4223
  }>;
3596
4224
  stage: z.ZodEnum<{
3597
4225
  QUEUED: "QUEUED";
3598
- DRAFT: "DRAFT";
4226
+ FAILED: "FAILED";
3599
4227
  SCHEDULED: "SCHEDULED";
4228
+ DRAFT: "DRAFT";
3600
4229
  ACTION_REQUIRED: "ACTION_REQUIRED";
3601
4230
  PUBLISHING: "PUBLISHING";
3602
4231
  PUBLISHED: "PUBLISHED";
3603
- FAILED: "FAILED";
3604
4232
  UPLOADING: "UPLOADING";
3605
4233
  PROCESSING: "PROCESSING";
3606
4234
  CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
@@ -3688,13 +4316,13 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
3688
4316
  projectId: z.ZodString;
3689
4317
  version: z.ZodNumber;
3690
4318
  status: z.ZodEnum<{
3691
- DRAFT: "DRAFT";
4319
+ FAILED: "FAILED";
3692
4320
  SCHEDULED: "SCHEDULED";
4321
+ DRAFT: "DRAFT";
3693
4322
  ACTION_REQUIRED: "ACTION_REQUIRED";
3694
4323
  PUBLISHING: "PUBLISHING";
3695
4324
  PUBLISHED: "PUBLISHED";
3696
4325
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
3697
- FAILED: "FAILED";
3698
4326
  }>;
3699
4327
  }, z.core.$strip>;
3700
4328
  destinations: z.ZodArray<z.ZodEnum<{
@@ -3808,13 +4436,13 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
3808
4436
  projectId: z.ZodString;
3809
4437
  version: z.ZodNumber;
3810
4438
  status: z.ZodEnum<{
3811
- DRAFT: "DRAFT";
4439
+ FAILED: "FAILED";
3812
4440
  SCHEDULED: "SCHEDULED";
4441
+ DRAFT: "DRAFT";
3813
4442
  ACTION_REQUIRED: "ACTION_REQUIRED";
3814
4443
  PUBLISHING: "PUBLISHING";
3815
4444
  PUBLISHED: "PUBLISHED";
3816
4445
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
3817
- FAILED: "FAILED";
3818
4446
  }>;
3819
4447
  }, z.core.$strip>;
3820
4448
  destinations: z.ZodArray<z.ZodEnum<{
@@ -3928,12 +4556,12 @@ declare const CalendarEventSchema: z.ZodObject<{
3928
4556
  title: z.ZodString;
3929
4557
  caption: z.ZodString;
3930
4558
  status: z.ZodEnum<{
4559
+ FAILED: "FAILED";
3931
4560
  SCHEDULED: "SCHEDULED";
3932
4561
  ACTION_REQUIRED: "ACTION_REQUIRED";
3933
4562
  PUBLISHING: "PUBLISHING";
3934
4563
  PUBLISHED: "PUBLISHED";
3935
4564
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
3936
- FAILED: "FAILED";
3937
4565
  }>;
3938
4566
  scheduledAt: z.ZodString;
3939
4567
  timezone: z.ZodNullable<z.ZodString>;
@@ -3951,12 +4579,12 @@ declare const CalendarEventSchema: z.ZodObject<{
3951
4579
  LINKEDIN: "LINKEDIN";
3952
4580
  }>;
3953
4581
  status: z.ZodEnum<{
3954
- DRAFT: "DRAFT";
4582
+ FAILED: "FAILED";
3955
4583
  SCHEDULED: "SCHEDULED";
4584
+ DRAFT: "DRAFT";
3956
4585
  ACTION_REQUIRED: "ACTION_REQUIRED";
3957
4586
  PUBLISHING: "PUBLISHING";
3958
4587
  PUBLISHED: "PUBLISHED";
3959
- FAILED: "FAILED";
3960
4588
  PREPARING: "PREPARING";
3961
4589
  }>;
3962
4590
  }, z.core.$strip>>;
@@ -3976,12 +4604,12 @@ declare const CalendarListDataSchema: z.ZodObject<{
3976
4604
  title: z.ZodString;
3977
4605
  caption: z.ZodString;
3978
4606
  status: z.ZodEnum<{
4607
+ FAILED: "FAILED";
3979
4608
  SCHEDULED: "SCHEDULED";
3980
4609
  ACTION_REQUIRED: "ACTION_REQUIRED";
3981
4610
  PUBLISHING: "PUBLISHING";
3982
4611
  PUBLISHED: "PUBLISHED";
3983
4612
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
3984
- FAILED: "FAILED";
3985
4613
  }>;
3986
4614
  scheduledAt: z.ZodString;
3987
4615
  timezone: z.ZodNullable<z.ZodString>;
@@ -3999,12 +4627,12 @@ declare const CalendarListDataSchema: z.ZodObject<{
3999
4627
  LINKEDIN: "LINKEDIN";
4000
4628
  }>;
4001
4629
  status: z.ZodEnum<{
4002
- DRAFT: "DRAFT";
4630
+ FAILED: "FAILED";
4003
4631
  SCHEDULED: "SCHEDULED";
4632
+ DRAFT: "DRAFT";
4004
4633
  ACTION_REQUIRED: "ACTION_REQUIRED";
4005
4634
  PUBLISHING: "PUBLISHING";
4006
4635
  PUBLISHED: "PUBLISHED";
4007
- FAILED: "FAILED";
4008
4636
  PREPARING: "PREPARING";
4009
4637
  }>;
4010
4638
  }, z.core.$strip>>;
@@ -4027,12 +4655,12 @@ declare const CalendarListResponseSchema: z.ZodObject<{
4027
4655
  title: z.ZodString;
4028
4656
  caption: z.ZodString;
4029
4657
  status: z.ZodEnum<{
4658
+ FAILED: "FAILED";
4030
4659
  SCHEDULED: "SCHEDULED";
4031
4660
  ACTION_REQUIRED: "ACTION_REQUIRED";
4032
4661
  PUBLISHING: "PUBLISHING";
4033
4662
  PUBLISHED: "PUBLISHED";
4034
4663
  PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
4035
- FAILED: "FAILED";
4036
4664
  }>;
4037
4665
  scheduledAt: z.ZodString;
4038
4666
  timezone: z.ZodNullable<z.ZodString>;
@@ -4050,12 +4678,12 @@ declare const CalendarListResponseSchema: z.ZodObject<{
4050
4678
  LINKEDIN: "LINKEDIN";
4051
4679
  }>;
4052
4680
  status: z.ZodEnum<{
4053
- DRAFT: "DRAFT";
4681
+ FAILED: "FAILED";
4054
4682
  SCHEDULED: "SCHEDULED";
4683
+ DRAFT: "DRAFT";
4055
4684
  ACTION_REQUIRED: "ACTION_REQUIRED";
4056
4685
  PUBLISHING: "PUBLISHING";
4057
4686
  PUBLISHED: "PUBLISHED";
4058
- FAILED: "FAILED";
4059
4687
  PREPARING: "PREPARING";
4060
4688
  }>;
4061
4689
  }, z.core.$strip>>;
@@ -4119,9 +4747,9 @@ declare const SeoEvidenceSchema: z.ZodObject<{
4119
4747
  }, z.core.$strict>;
4120
4748
  type SeoEvidence = z.infer<typeof SeoEvidenceSchema>;
4121
4749
  declare const SeoActionDecisionSchema: z.ZodEnum<{
4750
+ REJECTED: "REJECTED";
4122
4751
  READY: "READY";
4123
4752
  NEEDS_REVIEW: "NEEDS_REVIEW";
4124
- REJECTED: "REJECTED";
4125
4753
  }>;
4126
4754
  type SeoActionDecision = z.infer<typeof SeoActionDecisionSchema>;
4127
4755
  declare const SeoSearchIntentSchema: z.ZodEnum<{
@@ -4141,9 +4769,9 @@ declare const SeoContentTypeSchema: z.ZodEnum<{
4141
4769
  declare const SeoActionPlanSchema: z.ZodObject<{
4142
4770
  version: z.ZodNumber;
4143
4771
  decision: z.ZodEnum<{
4772
+ REJECTED: "REJECTED";
4144
4773
  READY: "READY";
4145
4774
  NEEDS_REVIEW: "NEEDS_REVIEW";
4146
- REJECTED: "REJECTED";
4147
4775
  }>;
4148
4776
  decisionReason: z.ZodString;
4149
4777
  searchIntent: z.ZodEnum<{
@@ -4196,9 +4824,9 @@ declare const SeoActionPlanSchema: z.ZodObject<{
4196
4824
  }, z.core.$strict>;
4197
4825
  type SeoActionPlan = z.infer<typeof SeoActionPlanSchema>;
4198
4826
  declare const SeoTaskDecisionSchema: z.ZodEnum<{
4827
+ REJECTED: "REJECTED";
4199
4828
  READY: "READY";
4200
4829
  NEEDS_REVIEW: "NEEDS_REVIEW";
4201
- REJECTED: "REJECTED";
4202
4830
  }>;
4203
4831
  type SeoTaskDecision = z.infer<typeof SeoTaskDecisionSchema>;
4204
4832
  declare const SeoTaskFormatSchema: z.ZodEnum<{
@@ -4255,9 +4883,9 @@ declare const SeoAgentTaskSchema: z.ZodObject<{
4255
4883
  legacy: z.ZodBoolean;
4256
4884
  legacyLabel: z.ZodNullable<z.ZodString>;
4257
4885
  decision: z.ZodEnum<{
4886
+ REJECTED: "REJECTED";
4258
4887
  READY: "READY";
4259
4888
  NEEDS_REVIEW: "NEEDS_REVIEW";
4260
- REJECTED: "REJECTED";
4261
4889
  }>;
4262
4890
  decisionReason: z.ZodString;
4263
4891
  objective: z.ZodString;
@@ -4438,9 +5066,9 @@ declare const SeoOpportunityBriefSchema: z.ZodObject<{
4438
5066
  actionPlan: z.ZodObject<{
4439
5067
  version: z.ZodNumber;
4440
5068
  decision: z.ZodEnum<{
5069
+ REJECTED: "REJECTED";
4441
5070
  READY: "READY";
4442
5071
  NEEDS_REVIEW: "NEEDS_REVIEW";
4443
- REJECTED: "REJECTED";
4444
5072
  }>;
4445
5073
  decisionReason: z.ZodString;
4446
5074
  searchIntent: z.ZodEnum<{
@@ -4498,9 +5126,9 @@ declare const SeoOpportunityBriefSchema: z.ZodObject<{
4498
5126
  legacy: z.ZodBoolean;
4499
5127
  legacyLabel: z.ZodNullable<z.ZodString>;
4500
5128
  decision: z.ZodEnum<{
5129
+ REJECTED: "REJECTED";
4501
5130
  READY: "READY";
4502
5131
  NEEDS_REVIEW: "NEEDS_REVIEW";
4503
- REJECTED: "REJECTED";
4504
5132
  }>;
4505
5133
  decisionReason: z.ZodString;
4506
5134
  objective: z.ZodString;
@@ -4700,9 +5328,9 @@ declare const SeoOpportunitySchema: z.ZodObject<{
4700
5328
  actionPlan: z.ZodObject<{
4701
5329
  version: z.ZodNumber;
4702
5330
  decision: z.ZodEnum<{
5331
+ REJECTED: "REJECTED";
4703
5332
  READY: "READY";
4704
5333
  NEEDS_REVIEW: "NEEDS_REVIEW";
4705
- REJECTED: "REJECTED";
4706
5334
  }>;
4707
5335
  decisionReason: z.ZodString;
4708
5336
  searchIntent: z.ZodEnum<{
@@ -4760,9 +5388,9 @@ declare const SeoOpportunitySchema: z.ZodObject<{
4760
5388
  legacy: z.ZodBoolean;
4761
5389
  legacyLabel: z.ZodNullable<z.ZodString>;
4762
5390
  decision: z.ZodEnum<{
5391
+ REJECTED: "REJECTED";
4763
5392
  READY: "READY";
4764
5393
  NEEDS_REVIEW: "NEEDS_REVIEW";
4765
- REJECTED: "REJECTED";
4766
5394
  }>;
4767
5395
  decisionReason: z.ZodString;
4768
5396
  objective: z.ZodString;
@@ -4989,9 +5617,9 @@ declare const SeoOpportunityListDataSchema: z.ZodObject<{
4989
5617
  actionPlan: z.ZodObject<{
4990
5618
  version: z.ZodNumber;
4991
5619
  decision: z.ZodEnum<{
5620
+ REJECTED: "REJECTED";
4992
5621
  READY: "READY";
4993
5622
  NEEDS_REVIEW: "NEEDS_REVIEW";
4994
- REJECTED: "REJECTED";
4995
5623
  }>;
4996
5624
  decisionReason: z.ZodString;
4997
5625
  searchIntent: z.ZodEnum<{
@@ -5049,9 +5677,9 @@ declare const SeoOpportunityListDataSchema: z.ZodObject<{
5049
5677
  legacy: z.ZodBoolean;
5050
5678
  legacyLabel: z.ZodNullable<z.ZodString>;
5051
5679
  decision: z.ZodEnum<{
5680
+ REJECTED: "REJECTED";
5052
5681
  READY: "READY";
5053
5682
  NEEDS_REVIEW: "NEEDS_REVIEW";
5054
- REJECTED: "REJECTED";
5055
5683
  }>;
5056
5684
  decisionReason: z.ZodString;
5057
5685
  objective: z.ZodString;
@@ -5262,9 +5890,9 @@ declare const SeoOpportunityListResponseSchema: z.ZodObject<{
5262
5890
  actionPlan: z.ZodObject<{
5263
5891
  version: z.ZodNumber;
5264
5892
  decision: z.ZodEnum<{
5893
+ REJECTED: "REJECTED";
5265
5894
  READY: "READY";
5266
5895
  NEEDS_REVIEW: "NEEDS_REVIEW";
5267
- REJECTED: "REJECTED";
5268
5896
  }>;
5269
5897
  decisionReason: z.ZodString;
5270
5898
  searchIntent: z.ZodEnum<{
@@ -5322,9 +5950,9 @@ declare const SeoOpportunityListResponseSchema: z.ZodObject<{
5322
5950
  legacy: z.ZodBoolean;
5323
5951
  legacyLabel: z.ZodNullable<z.ZodString>;
5324
5952
  decision: z.ZodEnum<{
5953
+ REJECTED: "REJECTED";
5325
5954
  READY: "READY";
5326
5955
  NEEDS_REVIEW: "NEEDS_REVIEW";
5327
- REJECTED: "REJECTED";
5328
5956
  }>;
5329
5957
  decisionReason: z.ZodString;
5330
5958
  objective: z.ZodString;
@@ -5537,9 +6165,9 @@ declare const SeoOpportunityResponseSchema: z.ZodObject<{
5537
6165
  actionPlan: z.ZodObject<{
5538
6166
  version: z.ZodNumber;
5539
6167
  decision: z.ZodEnum<{
6168
+ REJECTED: "REJECTED";
5540
6169
  READY: "READY";
5541
6170
  NEEDS_REVIEW: "NEEDS_REVIEW";
5542
- REJECTED: "REJECTED";
5543
6171
  }>;
5544
6172
  decisionReason: z.ZodString;
5545
6173
  searchIntent: z.ZodEnum<{
@@ -5597,9 +6225,9 @@ declare const SeoOpportunityResponseSchema: z.ZodObject<{
5597
6225
  legacy: z.ZodBoolean;
5598
6226
  legacyLabel: z.ZodNullable<z.ZodString>;
5599
6227
  decision: z.ZodEnum<{
6228
+ REJECTED: "REJECTED";
5600
6229
  READY: "READY";
5601
6230
  NEEDS_REVIEW: "NEEDS_REVIEW";
5602
- REJECTED: "REJECTED";
5603
6231
  }>;
5604
6232
  decisionReason: z.ZodString;
5605
6233
  objective: z.ZodString;
@@ -5862,9 +6490,9 @@ declare const SeoReportSchema: z.ZodObject<{
5862
6490
  actionPlan: z.ZodObject<{
5863
6491
  version: z.ZodNumber;
5864
6492
  decision: z.ZodEnum<{
6493
+ REJECTED: "REJECTED";
5865
6494
  READY: "READY";
5866
6495
  NEEDS_REVIEW: "NEEDS_REVIEW";
5867
- REJECTED: "REJECTED";
5868
6496
  }>;
5869
6497
  decisionReason: z.ZodString;
5870
6498
  searchIntent: z.ZodEnum<{
@@ -5922,9 +6550,9 @@ declare const SeoReportSchema: z.ZodObject<{
5922
6550
  legacy: z.ZodBoolean;
5923
6551
  legacyLabel: z.ZodNullable<z.ZodString>;
5924
6552
  decision: z.ZodEnum<{
6553
+ REJECTED: "REJECTED";
5925
6554
  READY: "READY";
5926
6555
  NEEDS_REVIEW: "NEEDS_REVIEW";
5927
- REJECTED: "REJECTED";
5928
6556
  }>;
5929
6557
  decisionReason: z.ZodString;
5930
6558
  objective: z.ZodString;
@@ -6227,9 +6855,9 @@ declare const SeoReportResponseSchema: z.ZodObject<{
6227
6855
  actionPlan: z.ZodObject<{
6228
6856
  version: z.ZodNumber;
6229
6857
  decision: z.ZodEnum<{
6858
+ REJECTED: "REJECTED";
6230
6859
  READY: "READY";
6231
6860
  NEEDS_REVIEW: "NEEDS_REVIEW";
6232
- REJECTED: "REJECTED";
6233
6861
  }>;
6234
6862
  decisionReason: z.ZodString;
6235
6863
  searchIntent: z.ZodEnum<{
@@ -6287,9 +6915,9 @@ declare const SeoReportResponseSchema: z.ZodObject<{
6287
6915
  legacy: z.ZodBoolean;
6288
6916
  legacyLabel: z.ZodNullable<z.ZodString>;
6289
6917
  decision: z.ZodEnum<{
6918
+ REJECTED: "REJECTED";
6290
6919
  READY: "READY";
6291
6920
  NEEDS_REVIEW: "NEEDS_REVIEW";
6292
- REJECTED: "REJECTED";
6293
6921
  }>;
6294
6922
  decisionReason: z.ZodString;
6295
6923
  objective: z.ZodString;
@@ -6451,4 +7079,4 @@ declare const SeoReportResponseSchema: z.ZodObject<{
6451
7079
  }, z.core.$strip>;
6452
7080
  }, z.core.$strip>;
6453
7081
 
6454
- export { API_VERSION, type Actor, ActorSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQueuedResponseSchema, AgentBlogArticleResponseSchema, AgentBlogArticleSchema, type AgentBlogCadenceInput, AgentBlogCadenceInputSchema, type AgentBlogConnectionExecute, AgentBlogConnectionExecuteRequestSchema, AgentBlogConnectionExecuteResponseSchema, AgentBlogConnectionExecuteSchema, AgentBlogConnectionPreviewRequestSchema, AgentBlogConnectionPreviewResponseSchema, AgentBlogConnectionPreviewSchema, type AgentBlogConnectionRequest, AgentBlogConnectionRequestSchema, type AgentBlogConnectionStatus, AgentBlogConnectionStatusResponseSchema, AgentBlogConnectionStatusSchema, type AgentBlogDeliveryAttempt, AgentBlogDeliveryAttemptListResponseSchema, AgentBlogDeliveryAttemptSchema, AgentBlogDestinationSelectionSchema, type AgentBlogDraftUpdate, AgentBlogDraftUpdateSchema, AgentBlogGenerateRequestSchema, AgentBlogIdempotentRequestSchema, type AgentBlogJob, AgentBlogJobResponseSchema, AgentBlogJobSchema, type AgentBlogPlan, AgentBlogPlanCreateRequestSchema, type AgentBlogPlanItem, AgentBlogPlanItemResponseSchema, AgentBlogPlanItemSchema, AgentBlogPlanItemStateRequestSchema, AgentBlogPlanItemsResponseSchema, AgentBlogPlanListResponseSchema, AgentBlogPlanQueuedResponseSchema, AgentBlogPlanRetryRequestSchema, AgentBlogPlanSchema, AgentBlogPublishExecuteRequestSchema, AgentBlogPublishExecuteResponseSchema, type AgentBlogPublishPreview, AgentBlogPublishPreviewRequestSchema, AgentBlogPublishPreviewResponseSchema, AgentBlogPublishPreviewSchema, type AgentBlogPublishingDestination, AgentBlogPublishingDestinationListResponseSchema, AgentBlogPublishingDestinationSchema, type AgentBlogPublishingProvider, AgentBlogPublishingProviderListResponseSchema, AgentBlogPublishingProviderSchema, AgentBlogRevalidationTestRequestSchema, AgentBlogRevalidationTestResponseSchema, AgentBlogRevalidationTestSchema, type AgentBlogSetupStatus, AgentBlogSetupStatusResponseSchema, AgentBlogSetupStatusSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, BlogArticleListSchema, BlogImageSchema, BlogMetadataSchema, BlogSitemapEntrySchema, BlogSlugRedirectSchema, CLI_BROWSER_AUTHORIZATION_TIMEOUT_MS, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, type CliAuthorizationCredential, CliAuthorizationCredentialSchema, type CliAuthorizationExchangeRequest, CliAuthorizationExchangeRequestSchema, type CliAuthorizationExchangeResponse, CliAuthorizationExchangeResponseSchema, CliAuthorizationRevokeDataSchema, type CliAuthorizationRevokeResponse, CliAuthorizationRevokeResponseSchema, type DraftPostData, type DraftPostInput, DraftPostInputSchema, type DraftPostUpdateData, type DraftPostUpdateInput, DraftPostUpdateInputSchema, IntegrationConnectionStatusSchema, type IntegrationHealth, type IntegrationHealthListData, IntegrationHealthListDataSchema, IntegrationHealthListResponseSchema, IntegrationHealthSchema, LinkedInDeliveryOptionsSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, PUBLISHING_PROVIDER_COUNT, PlatformPostStatusSchema, type Post, type PostDeliveryMode, PostDeliveryModeSchema, type PostDestination, PostDestinationSchema, type PostDestinationStage, PostDestinationStageSchema, type PostListData, PostListDataSchema, type PostListQuery, PostListQuerySchema, type PostListResponse, PostListResponseSchema, type PostMedia, PostMediaSchema, type PostProviderSettings, PostProviderSettingsSchema, type PostPublishExecuteInput, PostPublishExecuteInputSchema, type PostPublishInput, PostPublishInputSchema, type PostPublishPreview, PostPublishPreviewResponseSchema, PostPublishPreviewSchema, type PostReadiness, PostReadinessCheckSchema, PostReadinessResponseSchema, PostReadinessSchema, type PostResponse, PostResponseSchema, type PostScheduleExecuteInput, PostScheduleExecuteInputSchema, PostScheduleExecuteResponseSchema, type PostScheduleExecuteResult, PostScheduleExecuteResultSchema, type PostScheduleInput, PostScheduleInputSchema, type PostSchedulePending, PostSchedulePendingSchema, type PostSchedulePreview, PostSchedulePreviewResponseSchema, PostSchedulePreviewSchema, PostSchema, type PostStatus, PostStatusSchema, type Project, type ProjectCreateData, type ProjectCreateInput, ProjectCreateInputSchema, type ProjectListData, ProjectListDataSchema, type ProjectListQuery, ProjectListQuerySchema, type ProjectListResponse, ProjectListResponseSchema, type ProjectResponse, ProjectResponseSchema, ProjectSchema, type ProjectType, ProjectTypeSchema, type ProviderDeliveryOptions, type ProviderDeliveryOptionsProvider, ProviderDeliveryOptionsProviderSchema, ProviderDeliveryOptionsResponseSchema, ProviderDeliveryOptionsSchema, ProviderHealthStatusSchema, type PublishedBlogArticle, PublishedBlogArticleSchema, type PublishingProvider, PublishingProviderSchema, ReadinessActionSchema, ReadinessStatusSchema, RequestMetadataSchema, type SeoActionDecision, SeoActionDecisionSchema, type SeoActionPlan, SeoActionPlanSchema, type SeoAgentTask, SeoAgentTaskSchema, SeoConfidenceValueSchema, SeoContentTypeSchema, SeoCursorSchema, type SeoDecisionConfidence, SeoDecisionConfidenceSchema, SeoEntityIdSchema, type SeoEvidence, type SeoEvidenceProvenance, SeoEvidenceProvenanceSchema, SeoEvidenceSchema, type SeoExpectedImpact, SeoExpectedImpactSchema, type SeoOpportunity, type SeoOpportunityBrief, SeoOpportunityBriefSchema, type SeoOpportunityKind, SeoOpportunityKindSchema, type SeoOpportunityListData, SeoOpportunityListDataSchema, type SeoOpportunityListQuery, SeoOpportunityListQuerySchema, SeoOpportunityListResponseSchema, SeoOpportunityResponseSchema, SeoOpportunitySchema, type SeoReport, type SeoReportCompleteness, SeoReportCompletenessSchema, type SeoReportListData, SeoReportListDataSchema, type SeoReportListQuery, SeoReportListQuerySchema, SeoReportListResponseSchema, SeoReportResponseSchema, SeoReportSchema, type SeoReportSummary, SeoReportSummarySchema, SeoReportTriggerSchema, SeoSearchIntentSchema, type SeoTaskDecision, SeoTaskDecisionSchema, type SeoTaskFormat, SeoTaskFormatSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
7082
+ export { API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQueuedResponseSchema, AgentBlogArticleResponseSchema, AgentBlogArticleSchema, type AgentBlogCadenceInput, AgentBlogCadenceInputSchema, type AgentBlogConnectionExecute, AgentBlogConnectionExecuteRequestSchema, AgentBlogConnectionExecuteResponseSchema, AgentBlogConnectionExecuteSchema, AgentBlogConnectionPreviewRequestSchema, AgentBlogConnectionPreviewResponseSchema, AgentBlogConnectionPreviewSchema, type AgentBlogConnectionRequest, AgentBlogConnectionRequestSchema, type AgentBlogConnectionStatus, AgentBlogConnectionStatusResponseSchema, AgentBlogConnectionStatusSchema, type AgentBlogDeliveryAttempt, AgentBlogDeliveryAttemptListResponseSchema, AgentBlogDeliveryAttemptSchema, AgentBlogDestinationSelectionSchema, type AgentBlogDraftUpdate, AgentBlogDraftUpdateSchema, AgentBlogGenerateRequestSchema, AgentBlogIdempotentRequestSchema, AgentBlogImageGenerateRequestSchema, AgentBlogImageGenerationResponseSchema, AgentBlogImageResponseSchema, AgentBlogImageReviewRequestSchema, AgentBlogImageSchema, AgentBlogImageUploadCompleteRequestSchema, AgentBlogImageUploadPreparationResponseSchema, AgentBlogImageUploadPrepareRequestSchema, type AgentBlogJob, AgentBlogJobResponseSchema, AgentBlogJobSchema, type AgentBlogPlan, AgentBlogPlanCreateRequestSchema, type AgentBlogPlanItem, AgentBlogPlanItemResponseSchema, AgentBlogPlanItemSchema, AgentBlogPlanItemStateRequestSchema, AgentBlogPlanItemsResponseSchema, AgentBlogPlanListResponseSchema, AgentBlogPlanQueuedResponseSchema, AgentBlogPlanRetryRequestSchema, AgentBlogPlanSchema, AgentBlogPublishExecuteRequestSchema, AgentBlogPublishExecuteResponseSchema, type AgentBlogPublishPreview, AgentBlogPublishPreviewRequestSchema, AgentBlogPublishPreviewResponseSchema, AgentBlogPublishPreviewSchema, type AgentBlogPublishingDestination, AgentBlogPublishingDestinationListResponseSchema, AgentBlogPublishingDestinationSchema, type AgentBlogPublishingProvider, AgentBlogPublishingProviderListResponseSchema, AgentBlogPublishingProviderSchema, AgentBlogRevalidationTestRequestSchema, AgentBlogRevalidationTestResponseSchema, AgentBlogRevalidationTestSchema, AgentBlogScheduleCancelExecuteRequestSchema, AgentBlogScheduleCancelExecuteResponseSchema, AgentBlogScheduleCancelExecuteSchema, AgentBlogScheduleCancelPreviewRequestSchema, AgentBlogScheduleCancelPreviewResponseSchema, AgentBlogScheduleCancelPreviewSchema, AgentBlogScheduleExecuteRequestSchema, AgentBlogScheduleExecuteResponseSchema, AgentBlogScheduleExecuteSchema, AgentBlogSchedulePreviewRequestSchema, AgentBlogSchedulePreviewResponseSchema, AgentBlogSchedulePreviewSchema, type AgentBlogSetupStatus, AgentBlogSetupStatusResponseSchema, AgentBlogSetupStatusSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, BlogArticleListSchema, BlogImageSchema, BlogMetadataSchema, BlogSitemapEntrySchema, BlogSlugRedirectSchema, CLI_BROWSER_AUTHORIZATION_TIMEOUT_MS, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, type CliAuthorizationCredential, CliAuthorizationCredentialSchema, type CliAuthorizationExchangeRequest, CliAuthorizationExchangeRequestSchema, type CliAuthorizationExchangeResponse, CliAuthorizationExchangeResponseSchema, CliAuthorizationRevokeDataSchema, type CliAuthorizationRevokeResponse, CliAuthorizationRevokeResponseSchema, type DraftPostData, type DraftPostInput, DraftPostInputSchema, type DraftPostUpdateData, type DraftPostUpdateInput, DraftPostUpdateInputSchema, IntegrationConnectionStatusSchema, type IntegrationHealth, type IntegrationHealthListData, IntegrationHealthListDataSchema, IntegrationHealthListResponseSchema, IntegrationHealthSchema, LinkedInDeliveryOptionsSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, PUBLISHING_PROVIDER_COUNT, PlatformPostStatusSchema, type Post, type PostDeliveryMode, PostDeliveryModeSchema, type PostDestination, PostDestinationSchema, type PostDestinationStage, PostDestinationStageSchema, type PostListData, PostListDataSchema, type PostListQuery, PostListQuerySchema, type PostListResponse, PostListResponseSchema, type PostMedia, PostMediaSchema, type PostProviderSettings, PostProviderSettingsSchema, type PostPublishExecuteInput, PostPublishExecuteInputSchema, type PostPublishInput, PostPublishInputSchema, type PostPublishPreview, PostPublishPreviewResponseSchema, PostPublishPreviewSchema, type PostReadiness, PostReadinessCheckSchema, PostReadinessResponseSchema, PostReadinessSchema, type PostResponse, PostResponseSchema, type PostScheduleExecuteInput, PostScheduleExecuteInputSchema, PostScheduleExecuteResponseSchema, type PostScheduleExecuteResult, PostScheduleExecuteResultSchema, type PostScheduleInput, PostScheduleInputSchema, type PostSchedulePending, PostSchedulePendingSchema, type PostSchedulePreview, PostSchedulePreviewResponseSchema, PostSchedulePreviewSchema, PostSchema, type PostStatus, PostStatusSchema, type Project, type ProjectCreateData, type ProjectCreateInput, ProjectCreateInputSchema, type ProjectListData, ProjectListDataSchema, type ProjectListQuery, ProjectListQuerySchema, type ProjectListResponse, ProjectListResponseSchema, type ProjectResponse, ProjectResponseSchema, ProjectSchema, type ProjectType, ProjectTypeSchema, type ProviderDeliveryOptions, type ProviderDeliveryOptionsProvider, ProviderDeliveryOptionsProviderSchema, ProviderDeliveryOptionsResponseSchema, ProviderDeliveryOptionsSchema, ProviderHealthStatusSchema, type PublishedBlogArticle, PublishedBlogArticleSchema, type PublishingProvider, PublishingProviderSchema, ReadinessActionSchema, ReadinessStatusSchema, RequestMetadataSchema, type SeoActionDecision, SeoActionDecisionSchema, type SeoActionPlan, SeoActionPlanSchema, type SeoAgentTask, SeoAgentTaskSchema, SeoConfidenceValueSchema, SeoContentTypeSchema, SeoCursorSchema, type SeoDecisionConfidence, SeoDecisionConfidenceSchema, SeoEntityIdSchema, type SeoEvidence, type SeoEvidenceProvenance, SeoEvidenceProvenanceSchema, SeoEvidenceSchema, type SeoExpectedImpact, SeoExpectedImpactSchema, type SeoOpportunity, type SeoOpportunityBrief, SeoOpportunityBriefSchema, type SeoOpportunityKind, SeoOpportunityKindSchema, type SeoOpportunityListData, SeoOpportunityListDataSchema, type SeoOpportunityListQuery, SeoOpportunityListQuerySchema, SeoOpportunityListResponseSchema, SeoOpportunityResponseSchema, SeoOpportunitySchema, type SeoReport, type SeoReportCompleteness, SeoReportCompletenessSchema, type SeoReportListData, SeoReportListDataSchema, type SeoReportListQuery, SeoReportListQuerySchema, SeoReportListResponseSchema, SeoReportResponseSchema, SeoReportSchema, type SeoReportSummary, SeoReportSummarySchema, SeoReportTriggerSchema, SeoSearchIntentSchema, type SeoTaskDecision, SeoTaskDecisionSchema, type SeoTaskFormat, SeoTaskFormatSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };