@rolino/contracts 0.5.0-beta.0 → 0.6.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/CHANGELOG.md +38 -0
- package/README.md +24 -11
- package/dist/index.cjs +403 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1280 -260
- package/dist/index.d.ts +1280 -260
- package/dist/index.js +350 -39
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
|
|
3
3
|
declare const API_VERSION: "v1";
|
|
4
|
-
declare const CONTRACT_VERSION: "0.
|
|
4
|
+
declare const CONTRACT_VERSION: "0.17.0";
|
|
5
5
|
declare const RequestMetadataSchema: z.ZodObject<{
|
|
6
6
|
requestId: z.ZodString;
|
|
7
7
|
}, z.core.$strip>;
|
|
8
8
|
declare const ApiErrorCodeSchema: z.ZodEnum<{
|
|
9
9
|
AUTH_REQUIRED: "AUTH_REQUIRED";
|
|
10
10
|
FORBIDDEN: "FORBIDDEN";
|
|
11
|
+
METHOD_NOT_ALLOWED: "METHOD_NOT_ALLOWED";
|
|
11
12
|
NOT_FOUND: "NOT_FOUND";
|
|
12
13
|
FEATURE_DISABLED: "FEATURE_DISABLED";
|
|
13
14
|
BILLING_REQUIRED: "BILLING_REQUIRED";
|
|
@@ -28,6 +29,7 @@ declare const ApiProblemSchema: z.ZodObject<{
|
|
|
28
29
|
code: z.ZodEnum<{
|
|
29
30
|
AUTH_REQUIRED: "AUTH_REQUIRED";
|
|
30
31
|
FORBIDDEN: "FORBIDDEN";
|
|
32
|
+
METHOD_NOT_ALLOWED: "METHOD_NOT_ALLOWED";
|
|
31
33
|
NOT_FOUND: "NOT_FOUND";
|
|
32
34
|
FEATURE_DISABLED: "FEATURE_DISABLED";
|
|
33
35
|
BILLING_REQUIRED: "BILLING_REQUIRED";
|
|
@@ -43,6 +45,7 @@ declare const ApiProblemSchema: z.ZodObject<{
|
|
|
43
45
|
INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
44
46
|
}>;
|
|
45
47
|
message: z.ZodString;
|
|
48
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
46
49
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
47
50
|
}, z.core.$strip>;
|
|
48
51
|
meta: z.ZodObject<{
|
|
@@ -159,11 +162,13 @@ declare const CapabilityIdSchema: z.ZodEnum<{
|
|
|
159
162
|
"blog:read": "blog:read";
|
|
160
163
|
"blog:write": "blog:write";
|
|
161
164
|
"blog:manage": "blog:manage";
|
|
165
|
+
"blog:approve": "blog:approve";
|
|
162
166
|
"blog:publish": "blog:publish";
|
|
163
167
|
}>;
|
|
164
168
|
type CapabilityId = z.infer<typeof CapabilityIdSchema>;
|
|
165
169
|
declare const AgentBlogPlanSchema: z.ZodObject<{
|
|
166
170
|
id: z.ZodString;
|
|
171
|
+
version: z.ZodNumber;
|
|
167
172
|
state: z.ZodString;
|
|
168
173
|
windowStart: z.ZodString;
|
|
169
174
|
windowEnd: z.ZodString;
|
|
@@ -184,6 +189,39 @@ declare const AgentBlogArticleSchema: z.ZodObject<{
|
|
|
184
189
|
scheduledPublishAt: z.ZodNullable<z.ZodString>;
|
|
185
190
|
updatedAt: z.ZodString;
|
|
186
191
|
}, z.core.$strip>;
|
|
192
|
+
declare const AgentBlogImageSchema: z.ZodObject<{
|
|
193
|
+
id: z.ZodString;
|
|
194
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
195
|
+
version: z.ZodNumber;
|
|
196
|
+
purpose: z.ZodEnum<{
|
|
197
|
+
FEATURED: "FEATURED";
|
|
198
|
+
SECTION: "SECTION";
|
|
199
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
200
|
+
}>;
|
|
201
|
+
source: z.ZodEnum<{
|
|
202
|
+
GENERATED: "GENERATED";
|
|
203
|
+
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
204
|
+
}>;
|
|
205
|
+
state: z.ZodEnum<{
|
|
206
|
+
QUEUED: "QUEUED";
|
|
207
|
+
GENERATING: "GENERATING";
|
|
208
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
209
|
+
APPROVED: "APPROVED";
|
|
210
|
+
REJECTED: "REJECTED";
|
|
211
|
+
FAILED: "FAILED";
|
|
212
|
+
}>;
|
|
213
|
+
publicUrl: z.ZodNullable<z.ZodString>;
|
|
214
|
+
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
215
|
+
"image/jpeg": "image/jpeg";
|
|
216
|
+
"image/png": "image/png";
|
|
217
|
+
"image/webp": "image/webp";
|
|
218
|
+
}>>;
|
|
219
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
220
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
221
|
+
altText: z.ZodNullable<z.ZodString>;
|
|
222
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
223
|
+
createdAt: z.ZodString;
|
|
224
|
+
}, z.core.$strict>;
|
|
187
225
|
declare const AgentBlogArticleDetailSchema: z.ZodObject<{
|
|
188
226
|
id: z.ZodString;
|
|
189
227
|
state: z.ZodString;
|
|
@@ -216,6 +254,39 @@ declare const AgentBlogArticleDetailSchema: z.ZodObject<{
|
|
|
216
254
|
approvedAt: z.ZodNullable<z.ZodString>;
|
|
217
255
|
createdAt: z.ZodString;
|
|
218
256
|
}, z.core.$strip>>;
|
|
257
|
+
images: z.ZodArray<z.ZodObject<{
|
|
258
|
+
id: z.ZodString;
|
|
259
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
260
|
+
version: z.ZodNumber;
|
|
261
|
+
purpose: z.ZodEnum<{
|
|
262
|
+
FEATURED: "FEATURED";
|
|
263
|
+
SECTION: "SECTION";
|
|
264
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
265
|
+
}>;
|
|
266
|
+
source: z.ZodEnum<{
|
|
267
|
+
GENERATED: "GENERATED";
|
|
268
|
+
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
269
|
+
}>;
|
|
270
|
+
state: z.ZodEnum<{
|
|
271
|
+
QUEUED: "QUEUED";
|
|
272
|
+
GENERATING: "GENERATING";
|
|
273
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
274
|
+
APPROVED: "APPROVED";
|
|
275
|
+
REJECTED: "REJECTED";
|
|
276
|
+
FAILED: "FAILED";
|
|
277
|
+
}>;
|
|
278
|
+
publicUrl: z.ZodNullable<z.ZodString>;
|
|
279
|
+
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
280
|
+
"image/jpeg": "image/jpeg";
|
|
281
|
+
"image/png": "image/png";
|
|
282
|
+
"image/webp": "image/webp";
|
|
283
|
+
}>>;
|
|
284
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
285
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
286
|
+
altText: z.ZodNullable<z.ZodString>;
|
|
287
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
288
|
+
createdAt: z.ZodString;
|
|
289
|
+
}, z.core.$strict>>;
|
|
219
290
|
}, z.core.$strip>;
|
|
220
291
|
declare const AgentBlogJobSchema: z.ZodObject<{
|
|
221
292
|
id: z.ZodString;
|
|
@@ -252,7 +323,235 @@ declare const AgentBlogDraftUpdateSchema: z.ZodObject<{
|
|
|
252
323
|
declare const AgentBlogGenerateRequestSchema: z.ZodObject<{
|
|
253
324
|
idempotencyKey: z.ZodString;
|
|
254
325
|
}, z.core.$strip>;
|
|
326
|
+
declare const AgentBlogImageGenerateRequestSchema: z.ZodObject<{
|
|
327
|
+
revisionId: z.ZodString;
|
|
328
|
+
idempotencyKey: z.ZodString;
|
|
329
|
+
editorialBrief: z.ZodOptional<z.ZodString>;
|
|
330
|
+
}, z.core.$strict>;
|
|
331
|
+
declare const AgentBlogImageUploadPrepareRequestSchema: z.ZodObject<{
|
|
332
|
+
revisionId: z.ZodString;
|
|
333
|
+
fileName: z.ZodString;
|
|
334
|
+
contentType: z.ZodEnum<{
|
|
335
|
+
"image/jpeg": "image/jpeg";
|
|
336
|
+
"image/png": "image/png";
|
|
337
|
+
"image/webp": "image/webp";
|
|
338
|
+
}>;
|
|
339
|
+
fileSize: z.ZodNumber;
|
|
340
|
+
}, z.core.$strict>;
|
|
341
|
+
declare const AgentBlogImageUploadCompleteRequestSchema: z.ZodObject<{
|
|
342
|
+
revisionId: z.ZodString;
|
|
343
|
+
fileName: z.ZodString;
|
|
344
|
+
contentType: z.ZodEnum<{
|
|
345
|
+
"image/jpeg": "image/jpeg";
|
|
346
|
+
"image/png": "image/png";
|
|
347
|
+
"image/webp": "image/webp";
|
|
348
|
+
}>;
|
|
349
|
+
fileSize: z.ZodNumber;
|
|
350
|
+
storageKey: z.ZodString;
|
|
351
|
+
altText: z.ZodString;
|
|
352
|
+
}, z.core.$strict>;
|
|
353
|
+
declare const AgentBlogImageReviewRequestSchema: z.ZodObject<{
|
|
354
|
+
expectedVersion: z.ZodNumber;
|
|
355
|
+
decision: z.ZodEnum<{
|
|
356
|
+
APPROVED: "APPROVED";
|
|
357
|
+
REJECTED: "REJECTED";
|
|
358
|
+
}>;
|
|
359
|
+
altText: z.ZodString;
|
|
360
|
+
idempotencyKey: z.ZodString;
|
|
361
|
+
}, z.core.$strict>;
|
|
362
|
+
declare const AgentBlogApprovalPreviewRequestSchema: z.ZodObject<{
|
|
363
|
+
revisionId: z.ZodString;
|
|
364
|
+
}, z.core.$strict>;
|
|
365
|
+
declare const AgentBlogApprovalExecuteRequestSchema: z.ZodObject<{
|
|
366
|
+
revisionId: z.ZodString;
|
|
367
|
+
confirmationToken: z.ZodString;
|
|
368
|
+
idempotencyKey: z.ZodString;
|
|
369
|
+
}, z.core.$strict>;
|
|
370
|
+
declare const AgentBlogApprovalImageSummarySchema: z.ZodObject<{
|
|
371
|
+
id: z.ZodString;
|
|
372
|
+
purpose: z.ZodEnum<{
|
|
373
|
+
FEATURED: "FEATURED";
|
|
374
|
+
SECTION: "SECTION";
|
|
375
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
376
|
+
}>;
|
|
377
|
+
contentPosition: z.ZodNullable<z.ZodString>;
|
|
378
|
+
width: z.ZodNumber;
|
|
379
|
+
height: z.ZodNumber;
|
|
380
|
+
mimeType: z.ZodEnum<{
|
|
381
|
+
"image/jpeg": "image/jpeg";
|
|
382
|
+
"image/png": "image/png";
|
|
383
|
+
"image/webp": "image/webp";
|
|
384
|
+
}>;
|
|
385
|
+
altText: z.ZodString;
|
|
386
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
387
|
+
version: z.ZodNumber;
|
|
388
|
+
}, z.core.$strict>;
|
|
389
|
+
declare const AgentBlogApprovalLinkSummarySchema: z.ZodObject<{
|
|
390
|
+
pageId: z.ZodString;
|
|
391
|
+
liveState: z.ZodEnum<{
|
|
392
|
+
LIVE: "LIVE";
|
|
393
|
+
REDIRECT: "REDIRECT";
|
|
394
|
+
}>;
|
|
395
|
+
}, z.core.$strict>;
|
|
396
|
+
declare const AgentBlogApprovalPreviewSchema: z.ZodObject<{
|
|
397
|
+
articleId: z.ZodString;
|
|
398
|
+
revisionId: z.ZodString;
|
|
399
|
+
title: z.ZodString;
|
|
400
|
+
slug: z.ZodString;
|
|
401
|
+
revisionNumber: z.ZodNumber;
|
|
402
|
+
contentHash: z.ZodString;
|
|
403
|
+
images: z.ZodArray<z.ZodObject<{
|
|
404
|
+
id: z.ZodString;
|
|
405
|
+
purpose: z.ZodEnum<{
|
|
406
|
+
FEATURED: "FEATURED";
|
|
407
|
+
SECTION: "SECTION";
|
|
408
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
409
|
+
}>;
|
|
410
|
+
contentPosition: z.ZodNullable<z.ZodString>;
|
|
411
|
+
width: z.ZodNumber;
|
|
412
|
+
height: z.ZodNumber;
|
|
413
|
+
mimeType: z.ZodEnum<{
|
|
414
|
+
"image/jpeg": "image/jpeg";
|
|
415
|
+
"image/png": "image/png";
|
|
416
|
+
"image/webp": "image/webp";
|
|
417
|
+
}>;
|
|
418
|
+
altText: z.ZodString;
|
|
419
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
420
|
+
version: z.ZodNumber;
|
|
421
|
+
}, z.core.$strict>>;
|
|
422
|
+
links: z.ZodArray<z.ZodObject<{
|
|
423
|
+
pageId: z.ZodString;
|
|
424
|
+
liveState: z.ZodEnum<{
|
|
425
|
+
LIVE: "LIVE";
|
|
426
|
+
REDIRECT: "REDIRECT";
|
|
427
|
+
}>;
|
|
428
|
+
}, z.core.$strict>>;
|
|
429
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
430
|
+
bundleHash: z.ZodString;
|
|
431
|
+
confirmation: z.ZodObject<{
|
|
432
|
+
token: z.ZodString;
|
|
433
|
+
expiresAt: z.ZodString;
|
|
434
|
+
}, z.core.$strict>;
|
|
435
|
+
}, z.core.$strict>;
|
|
436
|
+
declare const AgentBlogApprovalExecuteSchema: z.ZodObject<{
|
|
437
|
+
revisionId: z.ZodString;
|
|
438
|
+
revisionNumber: z.ZodNumber;
|
|
439
|
+
slug: z.ZodString;
|
|
440
|
+
title: z.ZodString;
|
|
441
|
+
images: z.ZodArray<z.ZodObject<{
|
|
442
|
+
id: z.ZodString;
|
|
443
|
+
purpose: z.ZodEnum<{
|
|
444
|
+
FEATURED: "FEATURED";
|
|
445
|
+
SECTION: "SECTION";
|
|
446
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
447
|
+
}>;
|
|
448
|
+
contentPosition: z.ZodNullable<z.ZodString>;
|
|
449
|
+
width: z.ZodNumber;
|
|
450
|
+
height: z.ZodNumber;
|
|
451
|
+
mimeType: z.ZodEnum<{
|
|
452
|
+
"image/jpeg": "image/jpeg";
|
|
453
|
+
"image/png": "image/png";
|
|
454
|
+
"image/webp": "image/webp";
|
|
455
|
+
}>;
|
|
456
|
+
altText: z.ZodString;
|
|
457
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
458
|
+
version: z.ZodNumber;
|
|
459
|
+
}, z.core.$strict>>;
|
|
460
|
+
contentHash: z.ZodString;
|
|
461
|
+
articleId: z.ZodString;
|
|
462
|
+
links: z.ZodArray<z.ZodObject<{
|
|
463
|
+
pageId: z.ZodString;
|
|
464
|
+
liveState: z.ZodEnum<{
|
|
465
|
+
LIVE: "LIVE";
|
|
466
|
+
REDIRECT: "REDIRECT";
|
|
467
|
+
}>;
|
|
468
|
+
}, z.core.$strict>>;
|
|
469
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
470
|
+
bundleHash: z.ZodString;
|
|
471
|
+
approvalSource: z.ZodLiteral<"AGENT">;
|
|
472
|
+
approvedAt: z.ZodString;
|
|
473
|
+
}, z.core.$strict>;
|
|
255
474
|
declare const AgentBlogDestinationSelectionSchema: z.ZodArray<z.ZodString>;
|
|
475
|
+
declare const AgentBlogSchedulePreviewRequestSchema: z.ZodObject<{
|
|
476
|
+
revisionId: z.ZodString;
|
|
477
|
+
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
478
|
+
scheduledAt: z.ZodString;
|
|
479
|
+
timezone: z.ZodString;
|
|
480
|
+
}, z.core.$strict>;
|
|
481
|
+
declare const AgentBlogScheduleExecuteRequestSchema: z.ZodObject<{
|
|
482
|
+
revisionId: z.ZodString;
|
|
483
|
+
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
484
|
+
scheduledAt: z.ZodString;
|
|
485
|
+
timezone: z.ZodString;
|
|
486
|
+
confirmationToken: z.ZodString;
|
|
487
|
+
idempotencyKey: z.ZodString;
|
|
488
|
+
}, z.core.$strict>;
|
|
489
|
+
declare const AgentBlogScheduleCancelPreviewRequestSchema: z.ZodObject<{}, z.core.$strict>;
|
|
490
|
+
declare const AgentBlogScheduleCancelExecuteRequestSchema: z.ZodObject<{
|
|
491
|
+
confirmationToken: z.ZodString;
|
|
492
|
+
idempotencyKey: z.ZodString;
|
|
493
|
+
}, z.core.$strict>;
|
|
494
|
+
declare const AgentBlogSchedulePreviewSchema: z.ZodObject<{
|
|
495
|
+
articleId: z.ZodString;
|
|
496
|
+
revisionId: z.ZodString;
|
|
497
|
+
contentHash: z.ZodString;
|
|
498
|
+
approvalBundleHash: z.ZodString;
|
|
499
|
+
approvalSource: z.ZodNullable<z.ZodEnum<{
|
|
500
|
+
AGENT: "AGENT";
|
|
501
|
+
USER: "USER";
|
|
502
|
+
}>>;
|
|
503
|
+
destinationIds: z.ZodArray<z.ZodString>;
|
|
504
|
+
scheduledAt: z.ZodString;
|
|
505
|
+
timezone: z.ZodString;
|
|
506
|
+
currentScheduleVersion: z.ZodString;
|
|
507
|
+
previousScheduledAt: z.ZodNullable<z.ZodString>;
|
|
508
|
+
confirmation: z.ZodObject<{
|
|
509
|
+
token: z.ZodString;
|
|
510
|
+
expiresAt: z.ZodString;
|
|
511
|
+
}, z.core.$strict>;
|
|
512
|
+
}, z.core.$strict>;
|
|
513
|
+
declare const AgentBlogScheduleExecuteSchema: z.ZodObject<{
|
|
514
|
+
revisionId: z.ZodString;
|
|
515
|
+
contentHash: z.ZodString;
|
|
516
|
+
articleId: z.ZodString;
|
|
517
|
+
approvalSource: z.ZodNullable<z.ZodEnum<{
|
|
518
|
+
AGENT: "AGENT";
|
|
519
|
+
USER: "USER";
|
|
520
|
+
}>>;
|
|
521
|
+
timezone: z.ZodString;
|
|
522
|
+
destinationIds: z.ZodArray<z.ZodString>;
|
|
523
|
+
scheduledAt: z.ZodString;
|
|
524
|
+
approvalBundleHash: z.ZodString;
|
|
525
|
+
currentScheduleVersion: z.ZodString;
|
|
526
|
+
previousScheduledAt: z.ZodNullable<z.ZodString>;
|
|
527
|
+
jobId: z.ZodString;
|
|
528
|
+
scheduleVersion: z.ZodString;
|
|
529
|
+
state: z.ZodLiteral<"SCHEDULED">;
|
|
530
|
+
}, z.core.$strict>;
|
|
531
|
+
declare const AgentBlogScheduleCancelPreviewSchema: z.ZodObject<{
|
|
532
|
+
articleId: z.ZodString;
|
|
533
|
+
revisionId: z.ZodString;
|
|
534
|
+
approvalBundleHash: z.ZodString;
|
|
535
|
+
destinationIds: z.ZodArray<z.ZodString>;
|
|
536
|
+
scheduledAt: z.ZodString;
|
|
537
|
+
timezone: z.ZodString;
|
|
538
|
+
scheduleVersion: z.ZodString;
|
|
539
|
+
confirmation: z.ZodObject<{
|
|
540
|
+
token: z.ZodString;
|
|
541
|
+
expiresAt: z.ZodString;
|
|
542
|
+
}, z.core.$strict>;
|
|
543
|
+
}, z.core.$strict>;
|
|
544
|
+
declare const AgentBlogScheduleCancelExecuteSchema: z.ZodObject<{
|
|
545
|
+
revisionId: z.ZodString;
|
|
546
|
+
articleId: z.ZodString;
|
|
547
|
+
timezone: z.ZodString;
|
|
548
|
+
destinationIds: z.ZodArray<z.ZodString>;
|
|
549
|
+
scheduledAt: z.ZodString;
|
|
550
|
+
approvalBundleHash: z.ZodString;
|
|
551
|
+
scheduleVersion: z.ZodString;
|
|
552
|
+
state: z.ZodLiteral<"APPROVED">;
|
|
553
|
+
canceledAt: z.ZodString;
|
|
554
|
+
}, z.core.$strict>;
|
|
256
555
|
declare const AgentBlogPublishPreviewRequestSchema: z.ZodObject<{
|
|
257
556
|
revisionId: z.ZodString;
|
|
258
557
|
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -286,6 +585,7 @@ declare const AgentBlogPublishingDestinationSchema: z.ZodObject<{
|
|
|
286
585
|
status: z.ZodString;
|
|
287
586
|
isPrimary: z.ZodBoolean;
|
|
288
587
|
enabled: z.ZodBoolean;
|
|
588
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
289
589
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
290
590
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
291
591
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -311,6 +611,11 @@ declare const AgentBlogPublishPreviewSchema: z.ZodObject<{
|
|
|
311
611
|
articleId: z.ZodString;
|
|
312
612
|
revisionId: z.ZodString;
|
|
313
613
|
contentHash: z.ZodString;
|
|
614
|
+
approvalBundleHash: z.ZodString;
|
|
615
|
+
approvalSource: z.ZodNullable<z.ZodEnum<{
|
|
616
|
+
AGENT: "AGENT";
|
|
617
|
+
USER: "USER";
|
|
618
|
+
}>>;
|
|
314
619
|
title: z.ZodString;
|
|
315
620
|
slug: z.ZodString;
|
|
316
621
|
publicUrl: z.ZodString;
|
|
@@ -322,6 +627,7 @@ declare const AgentBlogPublishPreviewSchema: z.ZodObject<{
|
|
|
322
627
|
status: z.ZodString;
|
|
323
628
|
isPrimary: z.ZodBoolean;
|
|
324
629
|
enabled: z.ZodBoolean;
|
|
630
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
325
631
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
326
632
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
327
633
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -344,9 +650,9 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
|
|
|
344
650
|
siteId: z.ZodNullable<z.ZodString>;
|
|
345
651
|
blogBasePath: z.ZodNullable<z.ZodString>;
|
|
346
652
|
siteImport: z.ZodEnum<{
|
|
653
|
+
QUEUED: "QUEUED";
|
|
347
654
|
MISSING: "MISSING";
|
|
348
655
|
NOT_STARTED: "NOT_STARTED";
|
|
349
|
-
QUEUED: "QUEUED";
|
|
350
656
|
RUNNING: "RUNNING";
|
|
351
657
|
READY: "READY";
|
|
352
658
|
USED: "USED";
|
|
@@ -356,9 +662,9 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
|
|
|
356
662
|
}>;
|
|
357
663
|
activeJobId: z.ZodNullable<z.ZodString>;
|
|
358
664
|
plan: z.ZodEnum<{
|
|
665
|
+
QUEUED: "QUEUED";
|
|
359
666
|
MISSING: "MISSING";
|
|
360
667
|
NOT_STARTED: "NOT_STARTED";
|
|
361
|
-
QUEUED: "QUEUED";
|
|
362
668
|
RUNNING: "RUNNING";
|
|
363
669
|
READY: "READY";
|
|
364
670
|
USED: "USED";
|
|
@@ -368,9 +674,9 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
|
|
|
368
674
|
}>;
|
|
369
675
|
activePlanId: z.ZodNullable<z.ZodString>;
|
|
370
676
|
deliveryCredential: z.ZodEnum<{
|
|
677
|
+
QUEUED: "QUEUED";
|
|
371
678
|
MISSING: "MISSING";
|
|
372
679
|
NOT_STARTED: "NOT_STARTED";
|
|
373
|
-
QUEUED: "QUEUED";
|
|
374
680
|
RUNNING: "RUNNING";
|
|
375
681
|
READY: "READY";
|
|
376
682
|
USED: "USED";
|
|
@@ -379,9 +685,9 @@ declare const AgentBlogSetupStatusSchema: z.ZodObject<{
|
|
|
379
685
|
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
380
686
|
}>;
|
|
381
687
|
revalidation: z.ZodEnum<{
|
|
688
|
+
QUEUED: "QUEUED";
|
|
382
689
|
MISSING: "MISSING";
|
|
383
690
|
NOT_STARTED: "NOT_STARTED";
|
|
384
|
-
QUEUED: "QUEUED";
|
|
385
691
|
RUNNING: "RUNNING";
|
|
386
692
|
READY: "READY";
|
|
387
693
|
USED: "USED";
|
|
@@ -408,6 +714,129 @@ declare const AgentBlogCadenceInputSchema: z.ZodObject<{
|
|
|
408
714
|
declare const AgentBlogIdempotentRequestSchema: z.ZodObject<{
|
|
409
715
|
idempotencyKey: z.ZodString;
|
|
410
716
|
}, z.core.$strict>;
|
|
717
|
+
declare const AgentBlogPlanDateMoveSchema: z.ZodObject<{
|
|
718
|
+
itemId: z.ZodString;
|
|
719
|
+
title: z.ZodString;
|
|
720
|
+
oldDate: z.ZodString;
|
|
721
|
+
newDate: z.ZodString;
|
|
722
|
+
state: z.ZodEnum<{
|
|
723
|
+
APPROVED: "APPROVED";
|
|
724
|
+
SCHEDULED: "SCHEDULED";
|
|
725
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
726
|
+
PLANNED: "PLANNED";
|
|
727
|
+
ACCEPTED: "ACCEPTED";
|
|
728
|
+
DISMISSED: "DISMISSED";
|
|
729
|
+
DRAFTING: "DRAFTING";
|
|
730
|
+
IN_REVIEW: "IN_REVIEW";
|
|
731
|
+
PUBLISHED: "PUBLISHED";
|
|
732
|
+
}>;
|
|
733
|
+
version: z.ZodNumber;
|
|
734
|
+
}, z.core.$strict>;
|
|
735
|
+
declare const AgentBlogPlanLockedItemSchema: z.ZodObject<{
|
|
736
|
+
itemId: z.ZodString;
|
|
737
|
+
title: z.ZodString;
|
|
738
|
+
date: z.ZodString;
|
|
739
|
+
state: z.ZodEnum<{
|
|
740
|
+
SCHEDULED: "SCHEDULED";
|
|
741
|
+
PUBLISHED: "PUBLISHED";
|
|
742
|
+
}>;
|
|
743
|
+
version: z.ZodNumber;
|
|
744
|
+
}, z.core.$strict>;
|
|
745
|
+
declare const AgentBlogPlanCadencePreviewRequestSchema: z.ZodObject<{
|
|
746
|
+
weekdays: z.ZodArray<z.ZodNumber>;
|
|
747
|
+
expectedPlanVersion: z.ZodNumber;
|
|
748
|
+
}, z.core.$strict>;
|
|
749
|
+
declare const AgentBlogPlanCadencePreviewSchema: z.ZodObject<{
|
|
750
|
+
planId: z.ZodString;
|
|
751
|
+
planTitle: z.ZodString;
|
|
752
|
+
planVersion: z.ZodNumber;
|
|
753
|
+
scheduleDigest: z.ZodString;
|
|
754
|
+
kind: z.ZodEnum<{
|
|
755
|
+
ready: "ready";
|
|
756
|
+
blocked: "blocked";
|
|
757
|
+
noop: "noop";
|
|
758
|
+
}>;
|
|
759
|
+
canExecute: z.ZodBoolean;
|
|
760
|
+
oldWeekdays: z.ZodArray<z.ZodNumber>;
|
|
761
|
+
newWeekdays: z.ZodArray<z.ZodNumber>;
|
|
762
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
763
|
+
itemId: z.ZodString;
|
|
764
|
+
title: z.ZodString;
|
|
765
|
+
oldDate: z.ZodString;
|
|
766
|
+
newDate: z.ZodString;
|
|
767
|
+
state: z.ZodEnum<{
|
|
768
|
+
APPROVED: "APPROVED";
|
|
769
|
+
SCHEDULED: "SCHEDULED";
|
|
770
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
771
|
+
PLANNED: "PLANNED";
|
|
772
|
+
ACCEPTED: "ACCEPTED";
|
|
773
|
+
DISMISSED: "DISMISSED";
|
|
774
|
+
DRAFTING: "DRAFTING";
|
|
775
|
+
IN_REVIEW: "IN_REVIEW";
|
|
776
|
+
PUBLISHED: "PUBLISHED";
|
|
777
|
+
}>;
|
|
778
|
+
version: z.ZodNumber;
|
|
779
|
+
}, z.core.$strict>>;
|
|
780
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
781
|
+
itemId: z.ZodString;
|
|
782
|
+
title: z.ZodString;
|
|
783
|
+
date: z.ZodString;
|
|
784
|
+
state: z.ZodEnum<{
|
|
785
|
+
SCHEDULED: "SCHEDULED";
|
|
786
|
+
PUBLISHED: "PUBLISHED";
|
|
787
|
+
}>;
|
|
788
|
+
version: z.ZodNumber;
|
|
789
|
+
}, z.core.$strict>>;
|
|
790
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
791
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
792
|
+
confirmation: z.ZodNullable<z.ZodObject<{
|
|
793
|
+
token: z.ZodString;
|
|
794
|
+
expiresAt: z.ZodString;
|
|
795
|
+
}, z.core.$strict>>;
|
|
796
|
+
}, z.core.$strict>;
|
|
797
|
+
declare const AgentBlogPlanCadenceExecuteRequestSchema: z.ZodObject<{
|
|
798
|
+
weekdays: z.ZodArray<z.ZodNumber>;
|
|
799
|
+
expectedPlanVersion: z.ZodNumber;
|
|
800
|
+
expectedScheduleDigest: z.ZodString;
|
|
801
|
+
confirmationToken: z.ZodString;
|
|
802
|
+
idempotencyKey: z.ZodString;
|
|
803
|
+
}, z.core.$strict>;
|
|
804
|
+
declare const AgentBlogPlanCadenceExecuteSchema: z.ZodObject<{
|
|
805
|
+
planId: z.ZodString;
|
|
806
|
+
planVersion: z.ZodNumber;
|
|
807
|
+
publicationWeekdays: z.ZodArray<z.ZodNumber>;
|
|
808
|
+
cadencePerWeek: z.ZodNumber;
|
|
809
|
+
expectedItemCount: z.ZodNumber;
|
|
810
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
811
|
+
itemId: z.ZodString;
|
|
812
|
+
title: z.ZodString;
|
|
813
|
+
oldDate: z.ZodString;
|
|
814
|
+
newDate: z.ZodString;
|
|
815
|
+
state: z.ZodEnum<{
|
|
816
|
+
APPROVED: "APPROVED";
|
|
817
|
+
SCHEDULED: "SCHEDULED";
|
|
818
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
819
|
+
PLANNED: "PLANNED";
|
|
820
|
+
ACCEPTED: "ACCEPTED";
|
|
821
|
+
DISMISSED: "DISMISSED";
|
|
822
|
+
DRAFTING: "DRAFTING";
|
|
823
|
+
IN_REVIEW: "IN_REVIEW";
|
|
824
|
+
PUBLISHED: "PUBLISHED";
|
|
825
|
+
}>;
|
|
826
|
+
version: z.ZodNumber;
|
|
827
|
+
}, z.core.$strict>>;
|
|
828
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
829
|
+
itemId: z.ZodString;
|
|
830
|
+
title: z.ZodString;
|
|
831
|
+
date: z.ZodString;
|
|
832
|
+
state: z.ZodEnum<{
|
|
833
|
+
SCHEDULED: "SCHEDULED";
|
|
834
|
+
PUBLISHED: "PUBLISHED";
|
|
835
|
+
}>;
|
|
836
|
+
version: z.ZodNumber;
|
|
837
|
+
}, z.core.$strict>>;
|
|
838
|
+
scheduleDigest: z.ZodString;
|
|
839
|
+
}, z.core.$strict>;
|
|
411
840
|
declare const AgentBlogPlanCreateRequestSchema: z.ZodIntersection<z.ZodObject<{
|
|
412
841
|
startsOn: z.ZodString;
|
|
413
842
|
weekdays: z.ZodArray<z.ZodNumber>;
|
|
@@ -563,8 +992,112 @@ declare const AgentBlogConnectionExecuteSchema: z.ZodObject<{
|
|
|
563
992
|
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
564
993
|
message: z.ZodString;
|
|
565
994
|
}, z.core.$strict>;
|
|
566
|
-
declare const
|
|
567
|
-
|
|
995
|
+
declare const AgentBlogWebhookSemanticsSchema: z.ZodEnum<{
|
|
996
|
+
LIVE: "LIVE";
|
|
997
|
+
DRAFT: "DRAFT";
|
|
998
|
+
}>;
|
|
999
|
+
declare const AgentBlogWebhookDestinationChangeSchema: z.ZodObject<{
|
|
1000
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
siteId: z.ZodString;
|
|
1002
|
+
name: z.ZodString;
|
|
1003
|
+
endpoint: z.ZodString;
|
|
1004
|
+
semantics: z.ZodEnum<{
|
|
1005
|
+
LIVE: "LIVE";
|
|
1006
|
+
DRAFT: "DRAFT";
|
|
1007
|
+
}>;
|
|
1008
|
+
}, z.core.$strict>;
|
|
1009
|
+
declare const AgentBlogWebhookDestinationPreviewRequestSchema: z.ZodObject<{
|
|
1010
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
siteId: z.ZodString;
|
|
1012
|
+
name: z.ZodString;
|
|
1013
|
+
endpoint: z.ZodString;
|
|
1014
|
+
semantics: z.ZodEnum<{
|
|
1015
|
+
LIVE: "LIVE";
|
|
1016
|
+
DRAFT: "DRAFT";
|
|
1017
|
+
}>;
|
|
1018
|
+
}, z.core.$strict>;
|
|
1019
|
+
declare const AgentBlogWebhookDestinationExecuteRequestSchema: z.ZodObject<{
|
|
1020
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1021
|
+
siteId: z.ZodString;
|
|
1022
|
+
name: z.ZodString;
|
|
1023
|
+
endpoint: z.ZodString;
|
|
1024
|
+
semantics: z.ZodEnum<{
|
|
1025
|
+
LIVE: "LIVE";
|
|
1026
|
+
DRAFT: "DRAFT";
|
|
1027
|
+
}>;
|
|
1028
|
+
confirmationToken: z.ZodString;
|
|
1029
|
+
idempotencyKey: z.ZodString;
|
|
1030
|
+
}, z.core.$strict>;
|
|
1031
|
+
declare const AgentBlogWebhookDestinationPreviewSchema: z.ZodObject<{
|
|
1032
|
+
siteId: z.ZodString;
|
|
1033
|
+
name: z.ZodString;
|
|
1034
|
+
endpoint: z.ZodString;
|
|
1035
|
+
semantics: z.ZodEnum<{
|
|
1036
|
+
LIVE: "LIVE";
|
|
1037
|
+
DRAFT: "DRAFT";
|
|
1038
|
+
}>;
|
|
1039
|
+
destinationId: z.ZodNullable<z.ZodString>;
|
|
1040
|
+
effect: z.ZodString;
|
|
1041
|
+
confirmation: z.ZodObject<{
|
|
1042
|
+
token: z.ZodString;
|
|
1043
|
+
expiresAt: z.ZodString;
|
|
1044
|
+
}, z.core.$strict>;
|
|
1045
|
+
}, z.core.$strict>;
|
|
1046
|
+
declare const AgentBlogWebhookDestinationExecuteSchema: z.ZodObject<{
|
|
1047
|
+
projectId: z.ZodString;
|
|
1048
|
+
siteId: z.ZodString;
|
|
1049
|
+
destinationId: z.ZodString;
|
|
1050
|
+
completed: z.ZodLiteral<true>;
|
|
1051
|
+
secretDelivered: z.ZodBoolean;
|
|
1052
|
+
alreadyDelivered: z.ZodBoolean;
|
|
1053
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
1054
|
+
message: z.ZodString;
|
|
1055
|
+
}, z.core.$strict>;
|
|
1056
|
+
declare const AgentBlogWebhookTestRequestSchema: z.ZodObject<{
|
|
1057
|
+
siteId: z.ZodString;
|
|
1058
|
+
destinationId: z.ZodString;
|
|
1059
|
+
makePrimary: z.ZodOptional<z.ZodBoolean>;
|
|
1060
|
+
}, z.core.$strict>;
|
|
1061
|
+
declare const AgentBlogWebhookTestSchema: z.ZodObject<{
|
|
1062
|
+
destinationId: z.ZodString;
|
|
1063
|
+
status: z.ZodEnum<{
|
|
1064
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1065
|
+
CONNECTED: "CONNECTED";
|
|
1066
|
+
}>;
|
|
1067
|
+
enabled: z.ZodBoolean;
|
|
1068
|
+
testedAt: z.ZodString;
|
|
1069
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
1070
|
+
}, z.core.$strict>;
|
|
1071
|
+
declare const AgentBlogWebhookRotatePreviewRequestSchema: z.ZodObject<{
|
|
1072
|
+
siteId: z.ZodString;
|
|
1073
|
+
destinationId: z.ZodString;
|
|
1074
|
+
}, z.core.$strict>;
|
|
1075
|
+
declare const AgentBlogWebhookRotateExecuteRequestSchema: z.ZodObject<{
|
|
1076
|
+
siteId: z.ZodString;
|
|
1077
|
+
destinationId: z.ZodString;
|
|
1078
|
+
confirmationToken: z.ZodString;
|
|
1079
|
+
idempotencyKey: z.ZodString;
|
|
1080
|
+
}, z.core.$strict>;
|
|
1081
|
+
declare const AgentBlogWebhookRotatePreviewSchema: z.ZodObject<{
|
|
1082
|
+
siteId: z.ZodString;
|
|
1083
|
+
destinationId: z.ZodString;
|
|
1084
|
+
destinationName: z.ZodString;
|
|
1085
|
+
effect: z.ZodString;
|
|
1086
|
+
confirmation: z.ZodObject<{
|
|
1087
|
+
token: z.ZodString;
|
|
1088
|
+
expiresAt: z.ZodString;
|
|
1089
|
+
}, z.core.$strict>;
|
|
1090
|
+
}, z.core.$strict>;
|
|
1091
|
+
declare const AgentBlogWebhookRotateExecuteSchema: z.ZodObject<{
|
|
1092
|
+
destinationId: z.ZodString;
|
|
1093
|
+
completed: z.ZodLiteral<true>;
|
|
1094
|
+
secretDelivered: z.ZodBoolean;
|
|
1095
|
+
alreadyDelivered: z.ZodBoolean;
|
|
1096
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
1097
|
+
message: z.ZodString;
|
|
1098
|
+
}, z.core.$strict>;
|
|
1099
|
+
declare const AgentBlogRevalidationTestRequestSchema: z.ZodObject<{
|
|
1100
|
+
idempotencyKey: z.ZodString;
|
|
568
1101
|
}, z.core.$strict>;
|
|
569
1102
|
declare const AgentBlogRevalidationTestSchema: z.ZodObject<{
|
|
570
1103
|
status: z.ZodEnum<{
|
|
@@ -578,6 +1111,7 @@ declare const AgentBlogPlanListResponseSchema: z.ZodObject<{
|
|
|
578
1111
|
data: z.ZodObject<{
|
|
579
1112
|
plans: z.ZodArray<z.ZodObject<{
|
|
580
1113
|
id: z.ZodString;
|
|
1114
|
+
version: z.ZodNumber;
|
|
581
1115
|
state: z.ZodString;
|
|
582
1116
|
windowStart: z.ZodString;
|
|
583
1117
|
windowEnd: z.ZodString;
|
|
@@ -610,56 +1144,365 @@ declare const AgentBlogArticleListResponseSchema: z.ZodObject<{
|
|
|
610
1144
|
requestId: z.ZodString;
|
|
611
1145
|
}, z.core.$strip>;
|
|
612
1146
|
}, z.core.$strip>;
|
|
613
|
-
declare const AgentBlogArticleResponseSchema: z.ZodObject<{
|
|
1147
|
+
declare const AgentBlogArticleResponseSchema: z.ZodObject<{
|
|
1148
|
+
data: z.ZodObject<{
|
|
1149
|
+
id: z.ZodString;
|
|
1150
|
+
state: z.ZodString;
|
|
1151
|
+
title: z.ZodString;
|
|
1152
|
+
slug: z.ZodString;
|
|
1153
|
+
currentDraftId: z.ZodNullable<z.ZodString>;
|
|
1154
|
+
approvedRevisionId: z.ZodNullable<z.ZodString>;
|
|
1155
|
+
publishedRevisionId: z.ZodNullable<z.ZodString>;
|
|
1156
|
+
scheduledPublishAt: z.ZodNullable<z.ZodString>;
|
|
1157
|
+
updatedAt: z.ZodString;
|
|
1158
|
+
draft: z.ZodNullable<z.ZodObject<{
|
|
1159
|
+
id: z.ZodString;
|
|
1160
|
+
version: z.ZodNumber;
|
|
1161
|
+
title: z.ZodString;
|
|
1162
|
+
slug: z.ZodString;
|
|
1163
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1164
|
+
excerpt: z.ZodNullable<z.ZodString>;
|
|
1165
|
+
canonicalPath: z.ZodString;
|
|
1166
|
+
tags: z.ZodArray<z.ZodString>;
|
|
1167
|
+
author: z.ZodString;
|
|
1168
|
+
language: z.ZodString;
|
|
1169
|
+
markdown: z.ZodString;
|
|
1170
|
+
callToAction: z.ZodNullable<z.ZodUnknown>;
|
|
1171
|
+
internalLinks: z.ZodUnknown;
|
|
1172
|
+
}, z.core.$strip>>;
|
|
1173
|
+
revisions: z.ZodArray<z.ZodObject<{
|
|
1174
|
+
id: z.ZodString;
|
|
1175
|
+
revisionNumber: z.ZodNumber;
|
|
1176
|
+
contentHash: z.ZodString;
|
|
1177
|
+
approvedAt: z.ZodNullable<z.ZodString>;
|
|
1178
|
+
createdAt: z.ZodString;
|
|
1179
|
+
}, z.core.$strip>>;
|
|
1180
|
+
images: z.ZodArray<z.ZodObject<{
|
|
1181
|
+
id: z.ZodString;
|
|
1182
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
1183
|
+
version: z.ZodNumber;
|
|
1184
|
+
purpose: z.ZodEnum<{
|
|
1185
|
+
FEATURED: "FEATURED";
|
|
1186
|
+
SECTION: "SECTION";
|
|
1187
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
1188
|
+
}>;
|
|
1189
|
+
source: z.ZodEnum<{
|
|
1190
|
+
GENERATED: "GENERATED";
|
|
1191
|
+
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
1192
|
+
}>;
|
|
1193
|
+
state: z.ZodEnum<{
|
|
1194
|
+
QUEUED: "QUEUED";
|
|
1195
|
+
GENERATING: "GENERATING";
|
|
1196
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1197
|
+
APPROVED: "APPROVED";
|
|
1198
|
+
REJECTED: "REJECTED";
|
|
1199
|
+
FAILED: "FAILED";
|
|
1200
|
+
}>;
|
|
1201
|
+
publicUrl: z.ZodNullable<z.ZodString>;
|
|
1202
|
+
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
1203
|
+
"image/jpeg": "image/jpeg";
|
|
1204
|
+
"image/png": "image/png";
|
|
1205
|
+
"image/webp": "image/webp";
|
|
1206
|
+
}>>;
|
|
1207
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
1208
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
1209
|
+
altText: z.ZodNullable<z.ZodString>;
|
|
1210
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
1211
|
+
createdAt: z.ZodString;
|
|
1212
|
+
}, z.core.$strict>>;
|
|
1213
|
+
}, z.core.$strip>;
|
|
1214
|
+
meta: z.ZodObject<{
|
|
1215
|
+
requestId: z.ZodString;
|
|
1216
|
+
}, z.core.$strip>;
|
|
1217
|
+
}, z.core.$strip>;
|
|
1218
|
+
declare const AgentBlogJobResponseSchema: z.ZodObject<{
|
|
1219
|
+
data: z.ZodObject<{
|
|
1220
|
+
id: z.ZodString;
|
|
1221
|
+
type: z.ZodString;
|
|
1222
|
+
state: z.ZodString;
|
|
1223
|
+
attemptCount: z.ZodNumber;
|
|
1224
|
+
availableAt: z.ZodString;
|
|
1225
|
+
startedAt: z.ZodNullable<z.ZodString>;
|
|
1226
|
+
completedAt: z.ZodNullable<z.ZodString>;
|
|
1227
|
+
lastErrorCode: z.ZodNullable<z.ZodString>;
|
|
1228
|
+
lastErrorMessage: z.ZodNullable<z.ZodString>;
|
|
1229
|
+
}, z.core.$strip>;
|
|
1230
|
+
meta: z.ZodObject<{
|
|
1231
|
+
requestId: z.ZodString;
|
|
1232
|
+
}, z.core.$strip>;
|
|
1233
|
+
}, z.core.$strip>;
|
|
1234
|
+
declare const AgentBlogImageGenerationResponseSchema: z.ZodObject<{
|
|
1235
|
+
data: z.ZodObject<{
|
|
1236
|
+
image: z.ZodObject<{
|
|
1237
|
+
id: z.ZodString;
|
|
1238
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
1239
|
+
version: z.ZodNumber;
|
|
1240
|
+
purpose: z.ZodEnum<{
|
|
1241
|
+
FEATURED: "FEATURED";
|
|
1242
|
+
SECTION: "SECTION";
|
|
1243
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
1244
|
+
}>;
|
|
1245
|
+
source: z.ZodEnum<{
|
|
1246
|
+
GENERATED: "GENERATED";
|
|
1247
|
+
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
1248
|
+
}>;
|
|
1249
|
+
state: z.ZodEnum<{
|
|
1250
|
+
QUEUED: "QUEUED";
|
|
1251
|
+
GENERATING: "GENERATING";
|
|
1252
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1253
|
+
APPROVED: "APPROVED";
|
|
1254
|
+
REJECTED: "REJECTED";
|
|
1255
|
+
FAILED: "FAILED";
|
|
1256
|
+
}>;
|
|
1257
|
+
publicUrl: z.ZodNullable<z.ZodString>;
|
|
1258
|
+
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
1259
|
+
"image/jpeg": "image/jpeg";
|
|
1260
|
+
"image/png": "image/png";
|
|
1261
|
+
"image/webp": "image/webp";
|
|
1262
|
+
}>>;
|
|
1263
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
1264
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
1265
|
+
altText: z.ZodNullable<z.ZodString>;
|
|
1266
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
1267
|
+
createdAt: z.ZodString;
|
|
1268
|
+
}, z.core.$strict>;
|
|
1269
|
+
job: z.ZodObject<{
|
|
1270
|
+
id: z.ZodString;
|
|
1271
|
+
type: z.ZodString;
|
|
1272
|
+
state: z.ZodString;
|
|
1273
|
+
attemptCount: z.ZodNumber;
|
|
1274
|
+
availableAt: z.ZodString;
|
|
1275
|
+
startedAt: z.ZodNullable<z.ZodString>;
|
|
1276
|
+
completedAt: z.ZodNullable<z.ZodString>;
|
|
1277
|
+
lastErrorCode: z.ZodNullable<z.ZodString>;
|
|
1278
|
+
lastErrorMessage: z.ZodNullable<z.ZodString>;
|
|
1279
|
+
}, z.core.$strip>;
|
|
1280
|
+
}, z.core.$strict>;
|
|
1281
|
+
meta: z.ZodObject<{
|
|
1282
|
+
requestId: z.ZodString;
|
|
1283
|
+
}, z.core.$strip>;
|
|
1284
|
+
}, z.core.$strip>;
|
|
1285
|
+
declare const AgentBlogImageUploadPreparationResponseSchema: z.ZodObject<{
|
|
1286
|
+
data: z.ZodObject<{
|
|
1287
|
+
uploadUrl: z.ZodString;
|
|
1288
|
+
storageKey: z.ZodString;
|
|
1289
|
+
expiresAt: z.ZodString;
|
|
1290
|
+
headers: z.ZodObject<{
|
|
1291
|
+
"Content-Type": z.ZodEnum<{
|
|
1292
|
+
"image/jpeg": "image/jpeg";
|
|
1293
|
+
"image/png": "image/png";
|
|
1294
|
+
"image/webp": "image/webp";
|
|
1295
|
+
}>;
|
|
1296
|
+
}, z.core.$strict>;
|
|
1297
|
+
maxFileSize: z.ZodNumber;
|
|
1298
|
+
}, z.core.$strict>;
|
|
1299
|
+
meta: z.ZodObject<{
|
|
1300
|
+
requestId: z.ZodString;
|
|
1301
|
+
}, z.core.$strip>;
|
|
1302
|
+
}, z.core.$strip>;
|
|
1303
|
+
declare const AgentBlogImageResponseSchema: z.ZodObject<{
|
|
1304
|
+
data: z.ZodObject<{
|
|
1305
|
+
id: z.ZodString;
|
|
1306
|
+
revisionId: z.ZodNullable<z.ZodString>;
|
|
1307
|
+
version: z.ZodNumber;
|
|
1308
|
+
purpose: z.ZodEnum<{
|
|
1309
|
+
FEATURED: "FEATURED";
|
|
1310
|
+
SECTION: "SECTION";
|
|
1311
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
1312
|
+
}>;
|
|
1313
|
+
source: z.ZodEnum<{
|
|
1314
|
+
GENERATED: "GENERATED";
|
|
1315
|
+
AGENT_UPLOAD: "AGENT_UPLOAD";
|
|
1316
|
+
}>;
|
|
1317
|
+
state: z.ZodEnum<{
|
|
1318
|
+
QUEUED: "QUEUED";
|
|
1319
|
+
GENERATING: "GENERATING";
|
|
1320
|
+
READY_FOR_REVIEW: "READY_FOR_REVIEW";
|
|
1321
|
+
APPROVED: "APPROVED";
|
|
1322
|
+
REJECTED: "REJECTED";
|
|
1323
|
+
FAILED: "FAILED";
|
|
1324
|
+
}>;
|
|
1325
|
+
publicUrl: z.ZodNullable<z.ZodString>;
|
|
1326
|
+
mimeType: z.ZodNullable<z.ZodEnum<{
|
|
1327
|
+
"image/jpeg": "image/jpeg";
|
|
1328
|
+
"image/png": "image/png";
|
|
1329
|
+
"image/webp": "image/webp";
|
|
1330
|
+
}>>;
|
|
1331
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
1332
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
1333
|
+
altText: z.ZodNullable<z.ZodString>;
|
|
1334
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
1335
|
+
createdAt: z.ZodString;
|
|
1336
|
+
}, z.core.$strict>;
|
|
1337
|
+
meta: z.ZodObject<{
|
|
1338
|
+
requestId: z.ZodString;
|
|
1339
|
+
}, z.core.$strip>;
|
|
1340
|
+
}, z.core.$strip>;
|
|
1341
|
+
declare const AgentBlogApprovalPreviewResponseSchema: z.ZodObject<{
|
|
1342
|
+
data: z.ZodObject<{
|
|
1343
|
+
articleId: z.ZodString;
|
|
1344
|
+
revisionId: z.ZodString;
|
|
1345
|
+
title: z.ZodString;
|
|
1346
|
+
slug: z.ZodString;
|
|
1347
|
+
revisionNumber: z.ZodNumber;
|
|
1348
|
+
contentHash: z.ZodString;
|
|
1349
|
+
images: z.ZodArray<z.ZodObject<{
|
|
1350
|
+
id: z.ZodString;
|
|
1351
|
+
purpose: z.ZodEnum<{
|
|
1352
|
+
FEATURED: "FEATURED";
|
|
1353
|
+
SECTION: "SECTION";
|
|
1354
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
1355
|
+
}>;
|
|
1356
|
+
contentPosition: z.ZodNullable<z.ZodString>;
|
|
1357
|
+
width: z.ZodNumber;
|
|
1358
|
+
height: z.ZodNumber;
|
|
1359
|
+
mimeType: z.ZodEnum<{
|
|
1360
|
+
"image/jpeg": "image/jpeg";
|
|
1361
|
+
"image/png": "image/png";
|
|
1362
|
+
"image/webp": "image/webp";
|
|
1363
|
+
}>;
|
|
1364
|
+
altText: z.ZodString;
|
|
1365
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
1366
|
+
version: z.ZodNumber;
|
|
1367
|
+
}, z.core.$strict>>;
|
|
1368
|
+
links: z.ZodArray<z.ZodObject<{
|
|
1369
|
+
pageId: z.ZodString;
|
|
1370
|
+
liveState: z.ZodEnum<{
|
|
1371
|
+
LIVE: "LIVE";
|
|
1372
|
+
REDIRECT: "REDIRECT";
|
|
1373
|
+
}>;
|
|
1374
|
+
}, z.core.$strict>>;
|
|
1375
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
1376
|
+
bundleHash: z.ZodString;
|
|
1377
|
+
confirmation: z.ZodObject<{
|
|
1378
|
+
token: z.ZodString;
|
|
1379
|
+
expiresAt: z.ZodString;
|
|
1380
|
+
}, z.core.$strict>;
|
|
1381
|
+
}, z.core.$strict>;
|
|
1382
|
+
meta: z.ZodObject<{
|
|
1383
|
+
requestId: z.ZodString;
|
|
1384
|
+
}, z.core.$strip>;
|
|
1385
|
+
}, z.core.$strip>;
|
|
1386
|
+
declare const AgentBlogApprovalExecuteResponseSchema: z.ZodObject<{
|
|
1387
|
+
data: z.ZodObject<{
|
|
1388
|
+
revisionId: z.ZodString;
|
|
1389
|
+
revisionNumber: z.ZodNumber;
|
|
1390
|
+
slug: z.ZodString;
|
|
1391
|
+
title: z.ZodString;
|
|
1392
|
+
images: z.ZodArray<z.ZodObject<{
|
|
1393
|
+
id: z.ZodString;
|
|
1394
|
+
purpose: z.ZodEnum<{
|
|
1395
|
+
FEATURED: "FEATURED";
|
|
1396
|
+
SECTION: "SECTION";
|
|
1397
|
+
SOCIAL_PREVIEW: "SOCIAL_PREVIEW";
|
|
1398
|
+
}>;
|
|
1399
|
+
contentPosition: z.ZodNullable<z.ZodString>;
|
|
1400
|
+
width: z.ZodNumber;
|
|
1401
|
+
height: z.ZodNumber;
|
|
1402
|
+
mimeType: z.ZodEnum<{
|
|
1403
|
+
"image/jpeg": "image/jpeg";
|
|
1404
|
+
"image/png": "image/png";
|
|
1405
|
+
"image/webp": "image/webp";
|
|
1406
|
+
}>;
|
|
1407
|
+
altText: z.ZodString;
|
|
1408
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
1409
|
+
version: z.ZodNumber;
|
|
1410
|
+
}, z.core.$strict>>;
|
|
1411
|
+
contentHash: z.ZodString;
|
|
1412
|
+
articleId: z.ZodString;
|
|
1413
|
+
links: z.ZodArray<z.ZodObject<{
|
|
1414
|
+
pageId: z.ZodString;
|
|
1415
|
+
liveState: z.ZodEnum<{
|
|
1416
|
+
LIVE: "LIVE";
|
|
1417
|
+
REDIRECT: "REDIRECT";
|
|
1418
|
+
}>;
|
|
1419
|
+
}, z.core.$strict>>;
|
|
1420
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
1421
|
+
bundleHash: z.ZodString;
|
|
1422
|
+
approvalSource: z.ZodLiteral<"AGENT">;
|
|
1423
|
+
approvedAt: z.ZodString;
|
|
1424
|
+
}, z.core.$strict>;
|
|
1425
|
+
meta: z.ZodObject<{
|
|
1426
|
+
requestId: z.ZodString;
|
|
1427
|
+
}, z.core.$strip>;
|
|
1428
|
+
}, z.core.$strip>;
|
|
1429
|
+
declare const AgentBlogSchedulePreviewResponseSchema: z.ZodObject<{
|
|
1430
|
+
data: z.ZodObject<{
|
|
1431
|
+
articleId: z.ZodString;
|
|
1432
|
+
revisionId: z.ZodString;
|
|
1433
|
+
contentHash: z.ZodString;
|
|
1434
|
+
approvalBundleHash: z.ZodString;
|
|
1435
|
+
approvalSource: z.ZodNullable<z.ZodEnum<{
|
|
1436
|
+
AGENT: "AGENT";
|
|
1437
|
+
USER: "USER";
|
|
1438
|
+
}>>;
|
|
1439
|
+
destinationIds: z.ZodArray<z.ZodString>;
|
|
1440
|
+
scheduledAt: z.ZodString;
|
|
1441
|
+
timezone: z.ZodString;
|
|
1442
|
+
currentScheduleVersion: z.ZodString;
|
|
1443
|
+
previousScheduledAt: z.ZodNullable<z.ZodString>;
|
|
1444
|
+
confirmation: z.ZodObject<{
|
|
1445
|
+
token: z.ZodString;
|
|
1446
|
+
expiresAt: z.ZodString;
|
|
1447
|
+
}, z.core.$strict>;
|
|
1448
|
+
}, z.core.$strict>;
|
|
1449
|
+
meta: z.ZodObject<{
|
|
1450
|
+
requestId: z.ZodString;
|
|
1451
|
+
}, z.core.$strip>;
|
|
1452
|
+
}, z.core.$strip>;
|
|
1453
|
+
declare const AgentBlogScheduleExecuteResponseSchema: z.ZodObject<{
|
|
614
1454
|
data: z.ZodObject<{
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
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>;
|
|
1455
|
+
revisionId: z.ZodString;
|
|
1456
|
+
contentHash: z.ZodString;
|
|
1457
|
+
articleId: z.ZodString;
|
|
1458
|
+
approvalSource: z.ZodNullable<z.ZodEnum<{
|
|
1459
|
+
AGENT: "AGENT";
|
|
1460
|
+
USER: "USER";
|
|
1461
|
+
}>>;
|
|
1462
|
+
timezone: z.ZodString;
|
|
1463
|
+
destinationIds: z.ZodArray<z.ZodString>;
|
|
1464
|
+
scheduledAt: z.ZodString;
|
|
1465
|
+
approvalBundleHash: z.ZodString;
|
|
1466
|
+
currentScheduleVersion: z.ZodString;
|
|
1467
|
+
previousScheduledAt: z.ZodNullable<z.ZodString>;
|
|
1468
|
+
jobId: z.ZodString;
|
|
1469
|
+
scheduleVersion: z.ZodString;
|
|
1470
|
+
state: z.ZodLiteral<"SCHEDULED">;
|
|
1471
|
+
}, z.core.$strict>;
|
|
647
1472
|
meta: z.ZodObject<{
|
|
648
1473
|
requestId: z.ZodString;
|
|
649
1474
|
}, z.core.$strip>;
|
|
650
1475
|
}, z.core.$strip>;
|
|
651
|
-
declare const
|
|
1476
|
+
declare const AgentBlogScheduleCancelPreviewResponseSchema: z.ZodObject<{
|
|
652
1477
|
data: z.ZodObject<{
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
1478
|
+
articleId: z.ZodString;
|
|
1479
|
+
revisionId: z.ZodString;
|
|
1480
|
+
approvalBundleHash: z.ZodString;
|
|
1481
|
+
destinationIds: z.ZodArray<z.ZodString>;
|
|
1482
|
+
scheduledAt: z.ZodString;
|
|
1483
|
+
timezone: z.ZodString;
|
|
1484
|
+
scheduleVersion: z.ZodString;
|
|
1485
|
+
confirmation: z.ZodObject<{
|
|
1486
|
+
token: z.ZodString;
|
|
1487
|
+
expiresAt: z.ZodString;
|
|
1488
|
+
}, z.core.$strict>;
|
|
1489
|
+
}, z.core.$strict>;
|
|
1490
|
+
meta: z.ZodObject<{
|
|
1491
|
+
requestId: z.ZodString;
|
|
662
1492
|
}, z.core.$strip>;
|
|
1493
|
+
}, z.core.$strip>;
|
|
1494
|
+
declare const AgentBlogScheduleCancelExecuteResponseSchema: z.ZodObject<{
|
|
1495
|
+
data: z.ZodObject<{
|
|
1496
|
+
revisionId: z.ZodString;
|
|
1497
|
+
articleId: z.ZodString;
|
|
1498
|
+
timezone: z.ZodString;
|
|
1499
|
+
destinationIds: z.ZodArray<z.ZodString>;
|
|
1500
|
+
scheduledAt: z.ZodString;
|
|
1501
|
+
approvalBundleHash: z.ZodString;
|
|
1502
|
+
scheduleVersion: z.ZodString;
|
|
1503
|
+
state: z.ZodLiteral<"APPROVED">;
|
|
1504
|
+
canceledAt: z.ZodString;
|
|
1505
|
+
}, z.core.$strict>;
|
|
663
1506
|
meta: z.ZodObject<{
|
|
664
1507
|
requestId: z.ZodString;
|
|
665
1508
|
}, z.core.$strip>;
|
|
@@ -669,6 +1512,11 @@ declare const AgentBlogPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
669
1512
|
articleId: z.ZodString;
|
|
670
1513
|
revisionId: z.ZodString;
|
|
671
1514
|
contentHash: z.ZodString;
|
|
1515
|
+
approvalBundleHash: z.ZodString;
|
|
1516
|
+
approvalSource: z.ZodNullable<z.ZodEnum<{
|
|
1517
|
+
AGENT: "AGENT";
|
|
1518
|
+
USER: "USER";
|
|
1519
|
+
}>>;
|
|
672
1520
|
title: z.ZodString;
|
|
673
1521
|
slug: z.ZodString;
|
|
674
1522
|
publicUrl: z.ZodString;
|
|
@@ -680,6 +1528,7 @@ declare const AgentBlogPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
680
1528
|
status: z.ZodString;
|
|
681
1529
|
isPrimary: z.ZodBoolean;
|
|
682
1530
|
enabled: z.ZodBoolean;
|
|
1531
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
683
1532
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
684
1533
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
685
1534
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -700,6 +1549,11 @@ declare const AgentBlogPublishExecuteResponseSchema: z.ZodObject<{
|
|
|
700
1549
|
publicationId: z.ZodString;
|
|
701
1550
|
articleId: z.ZodString;
|
|
702
1551
|
revisionId: z.ZodString;
|
|
1552
|
+
approvalBundleHash: z.ZodString;
|
|
1553
|
+
approvalSource: z.ZodNullable<z.ZodEnum<{
|
|
1554
|
+
AGENT: "AGENT";
|
|
1555
|
+
USER: "USER";
|
|
1556
|
+
}>>;
|
|
703
1557
|
publicUrl: z.ZodString;
|
|
704
1558
|
publishedAt: z.ZodString;
|
|
705
1559
|
}, z.core.$strip>;
|
|
@@ -739,6 +1593,7 @@ declare const AgentBlogPublishingDestinationListResponseSchema: z.ZodObject<{
|
|
|
739
1593
|
status: z.ZodString;
|
|
740
1594
|
isPrimary: z.ZodBoolean;
|
|
741
1595
|
enabled: z.ZodBoolean;
|
|
1596
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
742
1597
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
743
1598
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
744
1599
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -784,9 +1639,9 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
|
|
|
784
1639
|
siteId: z.ZodNullable<z.ZodString>;
|
|
785
1640
|
blogBasePath: z.ZodNullable<z.ZodString>;
|
|
786
1641
|
siteImport: z.ZodEnum<{
|
|
1642
|
+
QUEUED: "QUEUED";
|
|
787
1643
|
MISSING: "MISSING";
|
|
788
1644
|
NOT_STARTED: "NOT_STARTED";
|
|
789
|
-
QUEUED: "QUEUED";
|
|
790
1645
|
RUNNING: "RUNNING";
|
|
791
1646
|
READY: "READY";
|
|
792
1647
|
USED: "USED";
|
|
@@ -796,9 +1651,9 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
|
|
|
796
1651
|
}>;
|
|
797
1652
|
activeJobId: z.ZodNullable<z.ZodString>;
|
|
798
1653
|
plan: z.ZodEnum<{
|
|
1654
|
+
QUEUED: "QUEUED";
|
|
799
1655
|
MISSING: "MISSING";
|
|
800
1656
|
NOT_STARTED: "NOT_STARTED";
|
|
801
|
-
QUEUED: "QUEUED";
|
|
802
1657
|
RUNNING: "RUNNING";
|
|
803
1658
|
READY: "READY";
|
|
804
1659
|
USED: "USED";
|
|
@@ -808,9 +1663,9 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
|
|
|
808
1663
|
}>;
|
|
809
1664
|
activePlanId: z.ZodNullable<z.ZodString>;
|
|
810
1665
|
deliveryCredential: z.ZodEnum<{
|
|
1666
|
+
QUEUED: "QUEUED";
|
|
811
1667
|
MISSING: "MISSING";
|
|
812
1668
|
NOT_STARTED: "NOT_STARTED";
|
|
813
|
-
QUEUED: "QUEUED";
|
|
814
1669
|
RUNNING: "RUNNING";
|
|
815
1670
|
READY: "READY";
|
|
816
1671
|
USED: "USED";
|
|
@@ -819,9 +1674,9 @@ declare const AgentBlogSetupStatusResponseSchema: z.ZodObject<{
|
|
|
819
1674
|
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
820
1675
|
}>;
|
|
821
1676
|
revalidation: z.ZodEnum<{
|
|
1677
|
+
QUEUED: "QUEUED";
|
|
822
1678
|
MISSING: "MISSING";
|
|
823
1679
|
NOT_STARTED: "NOT_STARTED";
|
|
824
|
-
QUEUED: "QUEUED";
|
|
825
1680
|
RUNNING: "RUNNING";
|
|
826
1681
|
READY: "READY";
|
|
827
1682
|
USED: "USED";
|
|
@@ -914,6 +1769,100 @@ declare const AgentBlogPlanItemResponseSchema: z.ZodObject<{
|
|
|
914
1769
|
requestId: z.ZodString;
|
|
915
1770
|
}, z.core.$strip>;
|
|
916
1771
|
}, z.core.$strip>;
|
|
1772
|
+
declare const AgentBlogPlanCadencePreviewResponseSchema: z.ZodObject<{
|
|
1773
|
+
data: z.ZodObject<{
|
|
1774
|
+
planId: z.ZodString;
|
|
1775
|
+
planTitle: z.ZodString;
|
|
1776
|
+
planVersion: z.ZodNumber;
|
|
1777
|
+
scheduleDigest: z.ZodString;
|
|
1778
|
+
kind: z.ZodEnum<{
|
|
1779
|
+
ready: "ready";
|
|
1780
|
+
blocked: "blocked";
|
|
1781
|
+
noop: "noop";
|
|
1782
|
+
}>;
|
|
1783
|
+
canExecute: z.ZodBoolean;
|
|
1784
|
+
oldWeekdays: z.ZodArray<z.ZodNumber>;
|
|
1785
|
+
newWeekdays: z.ZodArray<z.ZodNumber>;
|
|
1786
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
1787
|
+
itemId: z.ZodString;
|
|
1788
|
+
title: z.ZodString;
|
|
1789
|
+
oldDate: z.ZodString;
|
|
1790
|
+
newDate: z.ZodString;
|
|
1791
|
+
state: z.ZodEnum<{
|
|
1792
|
+
APPROVED: "APPROVED";
|
|
1793
|
+
SCHEDULED: "SCHEDULED";
|
|
1794
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1795
|
+
PLANNED: "PLANNED";
|
|
1796
|
+
ACCEPTED: "ACCEPTED";
|
|
1797
|
+
DISMISSED: "DISMISSED";
|
|
1798
|
+
DRAFTING: "DRAFTING";
|
|
1799
|
+
IN_REVIEW: "IN_REVIEW";
|
|
1800
|
+
PUBLISHED: "PUBLISHED";
|
|
1801
|
+
}>;
|
|
1802
|
+
version: z.ZodNumber;
|
|
1803
|
+
}, z.core.$strict>>;
|
|
1804
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
1805
|
+
itemId: z.ZodString;
|
|
1806
|
+
title: z.ZodString;
|
|
1807
|
+
date: z.ZodString;
|
|
1808
|
+
state: z.ZodEnum<{
|
|
1809
|
+
SCHEDULED: "SCHEDULED";
|
|
1810
|
+
PUBLISHED: "PUBLISHED";
|
|
1811
|
+
}>;
|
|
1812
|
+
version: z.ZodNumber;
|
|
1813
|
+
}, z.core.$strict>>;
|
|
1814
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
1815
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
1816
|
+
confirmation: z.ZodNullable<z.ZodObject<{
|
|
1817
|
+
token: z.ZodString;
|
|
1818
|
+
expiresAt: z.ZodString;
|
|
1819
|
+
}, z.core.$strict>>;
|
|
1820
|
+
}, z.core.$strict>;
|
|
1821
|
+
meta: z.ZodObject<{
|
|
1822
|
+
requestId: z.ZodString;
|
|
1823
|
+
}, z.core.$strip>;
|
|
1824
|
+
}, z.core.$strip>;
|
|
1825
|
+
declare const AgentBlogPlanCadenceExecuteResponseSchema: z.ZodObject<{
|
|
1826
|
+
data: z.ZodObject<{
|
|
1827
|
+
planId: z.ZodString;
|
|
1828
|
+
planVersion: z.ZodNumber;
|
|
1829
|
+
publicationWeekdays: z.ZodArray<z.ZodNumber>;
|
|
1830
|
+
cadencePerWeek: z.ZodNumber;
|
|
1831
|
+
expectedItemCount: z.ZodNumber;
|
|
1832
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
1833
|
+
itemId: z.ZodString;
|
|
1834
|
+
title: z.ZodString;
|
|
1835
|
+
oldDate: z.ZodString;
|
|
1836
|
+
newDate: z.ZodString;
|
|
1837
|
+
state: z.ZodEnum<{
|
|
1838
|
+
APPROVED: "APPROVED";
|
|
1839
|
+
SCHEDULED: "SCHEDULED";
|
|
1840
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1841
|
+
PLANNED: "PLANNED";
|
|
1842
|
+
ACCEPTED: "ACCEPTED";
|
|
1843
|
+
DISMISSED: "DISMISSED";
|
|
1844
|
+
DRAFTING: "DRAFTING";
|
|
1845
|
+
IN_REVIEW: "IN_REVIEW";
|
|
1846
|
+
PUBLISHED: "PUBLISHED";
|
|
1847
|
+
}>;
|
|
1848
|
+
version: z.ZodNumber;
|
|
1849
|
+
}, z.core.$strict>>;
|
|
1850
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
1851
|
+
itemId: z.ZodString;
|
|
1852
|
+
title: z.ZodString;
|
|
1853
|
+
date: z.ZodString;
|
|
1854
|
+
state: z.ZodEnum<{
|
|
1855
|
+
SCHEDULED: "SCHEDULED";
|
|
1856
|
+
PUBLISHED: "PUBLISHED";
|
|
1857
|
+
}>;
|
|
1858
|
+
version: z.ZodNumber;
|
|
1859
|
+
}, z.core.$strict>>;
|
|
1860
|
+
scheduleDigest: z.ZodString;
|
|
1861
|
+
}, z.core.$strict>;
|
|
1862
|
+
meta: z.ZodObject<{
|
|
1863
|
+
requestId: z.ZodString;
|
|
1864
|
+
}, z.core.$strip>;
|
|
1865
|
+
}, z.core.$strip>;
|
|
917
1866
|
declare const AgentBlogPlanQueuedResponseSchema: z.ZodObject<{
|
|
918
1867
|
data: z.ZodObject<{
|
|
919
1868
|
planId: z.ZodString;
|
|
@@ -1035,6 +1984,84 @@ declare const AgentBlogRevalidationTestResponseSchema: z.ZodObject<{
|
|
|
1035
1984
|
requestId: z.ZodString;
|
|
1036
1985
|
}, z.core.$strip>;
|
|
1037
1986
|
}, z.core.$strip>;
|
|
1987
|
+
declare const AgentBlogWebhookDestinationPreviewResponseSchema: z.ZodObject<{
|
|
1988
|
+
data: z.ZodObject<{
|
|
1989
|
+
siteId: z.ZodString;
|
|
1990
|
+
name: z.ZodString;
|
|
1991
|
+
endpoint: z.ZodString;
|
|
1992
|
+
semantics: z.ZodEnum<{
|
|
1993
|
+
LIVE: "LIVE";
|
|
1994
|
+
DRAFT: "DRAFT";
|
|
1995
|
+
}>;
|
|
1996
|
+
destinationId: z.ZodNullable<z.ZodString>;
|
|
1997
|
+
effect: z.ZodString;
|
|
1998
|
+
confirmation: z.ZodObject<{
|
|
1999
|
+
token: z.ZodString;
|
|
2000
|
+
expiresAt: z.ZodString;
|
|
2001
|
+
}, z.core.$strict>;
|
|
2002
|
+
}, z.core.$strict>;
|
|
2003
|
+
meta: z.ZodObject<{
|
|
2004
|
+
requestId: z.ZodString;
|
|
2005
|
+
}, z.core.$strip>;
|
|
2006
|
+
}, z.core.$strip>;
|
|
2007
|
+
declare const AgentBlogWebhookDestinationExecuteResponseSchema: z.ZodObject<{
|
|
2008
|
+
data: z.ZodObject<{
|
|
2009
|
+
projectId: z.ZodString;
|
|
2010
|
+
siteId: z.ZodString;
|
|
2011
|
+
destinationId: z.ZodString;
|
|
2012
|
+
completed: z.ZodLiteral<true>;
|
|
2013
|
+
secretDelivered: z.ZodBoolean;
|
|
2014
|
+
alreadyDelivered: z.ZodBoolean;
|
|
2015
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
2016
|
+
message: z.ZodString;
|
|
2017
|
+
}, z.core.$strict>;
|
|
2018
|
+
meta: z.ZodObject<{
|
|
2019
|
+
requestId: z.ZodString;
|
|
2020
|
+
}, z.core.$strip>;
|
|
2021
|
+
}, z.core.$strip>;
|
|
2022
|
+
declare const AgentBlogWebhookTestResponseSchema: z.ZodObject<{
|
|
2023
|
+
data: z.ZodObject<{
|
|
2024
|
+
destinationId: z.ZodString;
|
|
2025
|
+
status: z.ZodEnum<{
|
|
2026
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
2027
|
+
CONNECTED: "CONNECTED";
|
|
2028
|
+
}>;
|
|
2029
|
+
enabled: z.ZodBoolean;
|
|
2030
|
+
testedAt: z.ZodString;
|
|
2031
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
2032
|
+
}, z.core.$strict>;
|
|
2033
|
+
meta: z.ZodObject<{
|
|
2034
|
+
requestId: z.ZodString;
|
|
2035
|
+
}, z.core.$strip>;
|
|
2036
|
+
}, z.core.$strip>;
|
|
2037
|
+
declare const AgentBlogWebhookRotatePreviewResponseSchema: z.ZodObject<{
|
|
2038
|
+
data: z.ZodObject<{
|
|
2039
|
+
siteId: z.ZodString;
|
|
2040
|
+
destinationId: z.ZodString;
|
|
2041
|
+
destinationName: z.ZodString;
|
|
2042
|
+
effect: z.ZodString;
|
|
2043
|
+
confirmation: z.ZodObject<{
|
|
2044
|
+
token: z.ZodString;
|
|
2045
|
+
expiresAt: z.ZodString;
|
|
2046
|
+
}, z.core.$strict>;
|
|
2047
|
+
}, z.core.$strict>;
|
|
2048
|
+
meta: z.ZodObject<{
|
|
2049
|
+
requestId: z.ZodString;
|
|
2050
|
+
}, z.core.$strip>;
|
|
2051
|
+
}, z.core.$strip>;
|
|
2052
|
+
declare const AgentBlogWebhookRotateExecuteResponseSchema: z.ZodObject<{
|
|
2053
|
+
data: z.ZodObject<{
|
|
2054
|
+
destinationId: z.ZodString;
|
|
2055
|
+
completed: z.ZodLiteral<true>;
|
|
2056
|
+
secretDelivered: z.ZodBoolean;
|
|
2057
|
+
alreadyDelivered: z.ZodBoolean;
|
|
2058
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
2059
|
+
message: z.ZodString;
|
|
2060
|
+
}, z.core.$strict>;
|
|
2061
|
+
meta: z.ZodObject<{
|
|
2062
|
+
requestId: z.ZodString;
|
|
2063
|
+
}, z.core.$strip>;
|
|
2064
|
+
}, z.core.$strip>;
|
|
1038
2065
|
type AgentBlogPlan = z.infer<typeof AgentBlogPlanSchema>;
|
|
1039
2066
|
type AgentBlogArticle = z.infer<typeof AgentBlogArticleSchema>;
|
|
1040
2067
|
type AgentBlogArticleDetail = z.infer<typeof AgentBlogArticleDetailSchema>;
|
|
@@ -1047,9 +2074,16 @@ type AgentBlogDeliveryAttempt = z.infer<typeof AgentBlogDeliveryAttemptSchema>;
|
|
|
1047
2074
|
type AgentBlogSetupStatus = z.infer<typeof AgentBlogSetupStatusSchema>;
|
|
1048
2075
|
type AgentBlogCadenceInput = z.infer<typeof AgentBlogCadenceInputSchema>;
|
|
1049
2076
|
type AgentBlogPlanItem = z.infer<typeof AgentBlogPlanItemSchema>;
|
|
2077
|
+
type AgentBlogPlanDateMove = z.infer<typeof AgentBlogPlanDateMoveSchema>;
|
|
2078
|
+
type AgentBlogPlanCadencePreview = z.infer<typeof AgentBlogPlanCadencePreviewSchema>;
|
|
2079
|
+
type AgentBlogPlanCadenceExecute = z.infer<typeof AgentBlogPlanCadenceExecuteSchema>;
|
|
1050
2080
|
type AgentBlogConnectionStatus = z.infer<typeof AgentBlogConnectionStatusSchema>;
|
|
1051
2081
|
type AgentBlogConnectionRequest = z.infer<typeof AgentBlogConnectionRequestSchema>;
|
|
1052
2082
|
type AgentBlogConnectionExecute = z.infer<typeof AgentBlogConnectionExecuteSchema>;
|
|
2083
|
+
type AgentBlogWebhookDestinationChange = z.infer<typeof AgentBlogWebhookDestinationChangeSchema>;
|
|
2084
|
+
type AgentBlogWebhookDestinationExecute = z.infer<typeof AgentBlogWebhookDestinationExecuteSchema>;
|
|
2085
|
+
type AgentBlogWebhookTest = z.infer<typeof AgentBlogWebhookTestSchema>;
|
|
2086
|
+
type AgentBlogWebhookRotateExecute = z.infer<typeof AgentBlogWebhookRotateExecuteSchema>;
|
|
1053
2087
|
declare const CapabilitySchema: z.ZodObject<{
|
|
1054
2088
|
id: z.ZodEnum<{
|
|
1055
2089
|
"identity:read": "identity:read";
|
|
@@ -1065,6 +2099,7 @@ declare const CapabilitySchema: z.ZodObject<{
|
|
|
1065
2099
|
"blog:read": "blog:read";
|
|
1066
2100
|
"blog:write": "blog:write";
|
|
1067
2101
|
"blog:manage": "blog:manage";
|
|
2102
|
+
"blog:approve": "blog:approve";
|
|
1068
2103
|
"blog:publish": "blog:publish";
|
|
1069
2104
|
}>;
|
|
1070
2105
|
available: z.ZodBoolean;
|
|
@@ -1080,7 +2115,7 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
1080
2115
|
name: z.ZodLiteral<"Rolino">;
|
|
1081
2116
|
serverVersion: z.ZodString;
|
|
1082
2117
|
apiVersion: z.ZodLiteral<"v1">;
|
|
1083
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2118
|
+
contractVersion: z.ZodLiteral<"0.17.0">;
|
|
1084
2119
|
authentication: z.ZodObject<{
|
|
1085
2120
|
browserSession: z.ZodBoolean;
|
|
1086
2121
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -1110,6 +2145,7 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
1110
2145
|
"blog:read": "blog:read";
|
|
1111
2146
|
"blog:write": "blog:write";
|
|
1112
2147
|
"blog:manage": "blog:manage";
|
|
2148
|
+
"blog:approve": "blog:approve";
|
|
1113
2149
|
"blog:publish": "blog:publish";
|
|
1114
2150
|
}>;
|
|
1115
2151
|
available: z.ZodBoolean;
|
|
@@ -1127,7 +2163,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
1127
2163
|
name: z.ZodLiteral<"Rolino">;
|
|
1128
2164
|
serverVersion: z.ZodString;
|
|
1129
2165
|
apiVersion: z.ZodLiteral<"v1">;
|
|
1130
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2166
|
+
contractVersion: z.ZodLiteral<"0.17.0">;
|
|
1131
2167
|
authentication: z.ZodObject<{
|
|
1132
2168
|
browserSession: z.ZodBoolean;
|
|
1133
2169
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -1157,6 +2193,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
1157
2193
|
"blog:read": "blog:read";
|
|
1158
2194
|
"blog:write": "blog:write";
|
|
1159
2195
|
"blog:manage": "blog:manage";
|
|
2196
|
+
"blog:approve": "blog:approve";
|
|
1160
2197
|
"blog:publish": "blog:publish";
|
|
1161
2198
|
}>;
|
|
1162
2199
|
available: z.ZodBoolean;
|
|
@@ -1176,6 +2213,7 @@ type ApiMetaResponse = z.infer<typeof ApiMetaResponseSchema>;
|
|
|
1176
2213
|
declare const AuthenticationKindSchema: z.ZodEnum<{
|
|
1177
2214
|
session: "session";
|
|
1178
2215
|
api_key: "api_key";
|
|
2216
|
+
oauth: "oauth";
|
|
1179
2217
|
}>;
|
|
1180
2218
|
type AuthenticationKind = z.infer<typeof AuthenticationKindSchema>;
|
|
1181
2219
|
declare const ActorSchema: z.ZodObject<{
|
|
@@ -1193,6 +2231,7 @@ declare const ActorSchema: z.ZodObject<{
|
|
|
1193
2231
|
kind: z.ZodEnum<{
|
|
1194
2232
|
session: "session";
|
|
1195
2233
|
api_key: "api_key";
|
|
2234
|
+
oauth: "oauth";
|
|
1196
2235
|
}>;
|
|
1197
2236
|
credentialId: z.ZodNullable<z.ZodString>;
|
|
1198
2237
|
}, z.core.$strip>;
|
|
@@ -1210,6 +2249,7 @@ declare const ActorSchema: z.ZodObject<{
|
|
|
1210
2249
|
"blog:read": "blog:read";
|
|
1211
2250
|
"blog:write": "blog:write";
|
|
1212
2251
|
"blog:manage": "blog:manage";
|
|
2252
|
+
"blog:approve": "blog:approve";
|
|
1213
2253
|
"blog:publish": "blog:publish";
|
|
1214
2254
|
}>>;
|
|
1215
2255
|
}, z.core.$strip>;
|
|
@@ -1226,75 +2266,13 @@ declare const WhoAmIResponseSchema: z.ZodObject<{
|
|
|
1226
2266
|
name: z.ZodString;
|
|
1227
2267
|
role: z.ZodString;
|
|
1228
2268
|
}, z.core.$strip>;
|
|
1229
|
-
authentication: z.ZodObject<{
|
|
1230
|
-
kind: z.ZodEnum<{
|
|
1231
|
-
session: "session";
|
|
1232
|
-
api_key: "api_key";
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1237
|
-
"identity:read": "identity:read";
|
|
1238
|
-
"projects:read": "projects:read";
|
|
1239
|
-
"projects:write": "projects:write";
|
|
1240
|
-
"posts:read": "posts:read";
|
|
1241
|
-
"posts:write": "posts:write";
|
|
1242
|
-
"posts:schedule": "posts:schedule";
|
|
1243
|
-
"posts:publish": "posts:publish";
|
|
1244
|
-
"integrations:read": "integrations:read";
|
|
1245
|
-
"calendar:read": "calendar:read";
|
|
1246
|
-
"seo:read": "seo:read";
|
|
1247
|
-
"blog:read": "blog:read";
|
|
1248
|
-
"blog:write": "blog:write";
|
|
1249
|
-
"blog:manage": "blog:manage";
|
|
1250
|
-
"blog:publish": "blog:publish";
|
|
1251
|
-
}>>;
|
|
1252
|
-
}, z.core.$strip>;
|
|
1253
|
-
meta: z.ZodObject<{
|
|
1254
|
-
requestId: z.ZodString;
|
|
1255
|
-
}, z.core.$strip>;
|
|
1256
|
-
}, z.core.$strip>;
|
|
1257
|
-
type WhoAmIResponse = z.infer<typeof WhoAmIResponseSchema>;
|
|
1258
|
-
declare const CLI_BROWSER_AUTHORIZATION_TIMEOUT_MS: number;
|
|
1259
|
-
declare const CliAuthorizationExchangeRequestSchema: z.ZodObject<{
|
|
1260
|
-
code: z.ZodString;
|
|
1261
|
-
codeVerifier: z.ZodString;
|
|
1262
|
-
}, z.core.$strip>;
|
|
1263
|
-
type CliAuthorizationExchangeRequest = z.infer<typeof CliAuthorizationExchangeRequestSchema>;
|
|
1264
|
-
declare const CliAuthorizationCredentialSchema: z.ZodObject<{
|
|
1265
|
-
token: z.ZodString;
|
|
1266
|
-
tokenType: z.ZodLiteral<"Bearer">;
|
|
1267
|
-
expiresAt: z.ZodString;
|
|
1268
|
-
organization: z.ZodObject<{
|
|
1269
|
-
id: z.ZodString;
|
|
1270
|
-
name: z.ZodString;
|
|
1271
|
-
}, z.core.$strip>;
|
|
1272
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1273
|
-
"identity:read": "identity:read";
|
|
1274
|
-
"projects:read": "projects:read";
|
|
1275
|
-
"projects:write": "projects:write";
|
|
1276
|
-
"posts:read": "posts:read";
|
|
1277
|
-
"posts:write": "posts:write";
|
|
1278
|
-
"posts:schedule": "posts:schedule";
|
|
1279
|
-
"posts:publish": "posts:publish";
|
|
1280
|
-
"integrations:read": "integrations:read";
|
|
1281
|
-
"calendar:read": "calendar:read";
|
|
1282
|
-
"seo:read": "seo:read";
|
|
1283
|
-
"blog:read": "blog:read";
|
|
1284
|
-
"blog:write": "blog:write";
|
|
1285
|
-
"blog:manage": "blog:manage";
|
|
1286
|
-
"blog:publish": "blog:publish";
|
|
1287
|
-
}>>;
|
|
1288
|
-
}, z.core.$strip>;
|
|
1289
|
-
type CliAuthorizationCredential = z.infer<typeof CliAuthorizationCredentialSchema>;
|
|
1290
|
-
declare const CliAuthorizationExchangeResponseSchema: z.ZodObject<{
|
|
1291
|
-
data: z.ZodObject<{
|
|
1292
|
-
token: z.ZodString;
|
|
1293
|
-
tokenType: z.ZodLiteral<"Bearer">;
|
|
1294
|
-
expiresAt: z.ZodString;
|
|
1295
|
-
organization: z.ZodObject<{
|
|
1296
|
-
id: z.ZodString;
|
|
1297
|
-
name: z.ZodString;
|
|
2269
|
+
authentication: z.ZodObject<{
|
|
2270
|
+
kind: z.ZodEnum<{
|
|
2271
|
+
session: "session";
|
|
2272
|
+
api_key: "api_key";
|
|
2273
|
+
oauth: "oauth";
|
|
2274
|
+
}>;
|
|
2275
|
+
credentialId: z.ZodNullable<z.ZodString>;
|
|
1298
2276
|
}, z.core.$strip>;
|
|
1299
2277
|
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1300
2278
|
"identity:read": "identity:read";
|
|
@@ -1310,6 +2288,7 @@ declare const CliAuthorizationExchangeResponseSchema: z.ZodObject<{
|
|
|
1310
2288
|
"blog:read": "blog:read";
|
|
1311
2289
|
"blog:write": "blog:write";
|
|
1312
2290
|
"blog:manage": "blog:manage";
|
|
2291
|
+
"blog:approve": "blog:approve";
|
|
1313
2292
|
"blog:publish": "blog:publish";
|
|
1314
2293
|
}>>;
|
|
1315
2294
|
}, z.core.$strip>;
|
|
@@ -1317,19 +2296,7 @@ declare const CliAuthorizationExchangeResponseSchema: z.ZodObject<{
|
|
|
1317
2296
|
requestId: z.ZodString;
|
|
1318
2297
|
}, z.core.$strip>;
|
|
1319
2298
|
}, z.core.$strip>;
|
|
1320
|
-
type
|
|
1321
|
-
declare const CliAuthorizationRevokeDataSchema: z.ZodObject<{
|
|
1322
|
-
revoked: z.ZodLiteral<true>;
|
|
1323
|
-
}, z.core.$strip>;
|
|
1324
|
-
declare const CliAuthorizationRevokeResponseSchema: z.ZodObject<{
|
|
1325
|
-
data: z.ZodObject<{
|
|
1326
|
-
revoked: z.ZodLiteral<true>;
|
|
1327
|
-
}, z.core.$strip>;
|
|
1328
|
-
meta: z.ZodObject<{
|
|
1329
|
-
requestId: z.ZodString;
|
|
1330
|
-
}, z.core.$strip>;
|
|
1331
|
-
}, z.core.$strip>;
|
|
1332
|
-
type CliAuthorizationRevokeResponse = z.infer<typeof CliAuthorizationRevokeResponseSchema>;
|
|
2299
|
+
type WhoAmIResponse = z.infer<typeof WhoAmIResponseSchema>;
|
|
1333
2300
|
declare const CapabilitiesDataSchema: z.ZodObject<{
|
|
1334
2301
|
capabilities: z.ZodArray<z.ZodObject<{
|
|
1335
2302
|
id: z.ZodEnum<{
|
|
@@ -1346,6 +2313,7 @@ declare const CapabilitiesDataSchema: z.ZodObject<{
|
|
|
1346
2313
|
"blog:read": "blog:read";
|
|
1347
2314
|
"blog:write": "blog:write";
|
|
1348
2315
|
"blog:manage": "blog:manage";
|
|
2316
|
+
"blog:approve": "blog:approve";
|
|
1349
2317
|
"blog:publish": "blog:publish";
|
|
1350
2318
|
}>;
|
|
1351
2319
|
available: z.ZodBoolean;
|
|
@@ -1374,6 +2342,7 @@ declare const CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
1374
2342
|
"blog:read": "blog:read";
|
|
1375
2343
|
"blog:write": "blog:write";
|
|
1376
2344
|
"blog:manage": "blog:manage";
|
|
2345
|
+
"blog:approve": "blog:approve";
|
|
1377
2346
|
"blog:publish": "blog:publish";
|
|
1378
2347
|
}>;
|
|
1379
2348
|
available: z.ZodBoolean;
|
|
@@ -1544,22 +2513,22 @@ declare const ProjectResponseSchema: z.ZodObject<{
|
|
|
1544
2513
|
}, z.core.$strip>;
|
|
1545
2514
|
type ProjectResponse = z.infer<typeof ProjectResponseSchema>;
|
|
1546
2515
|
declare const PostStatusSchema: z.ZodEnum<{
|
|
1547
|
-
|
|
2516
|
+
FAILED: "FAILED";
|
|
1548
2517
|
SCHEDULED: "SCHEDULED";
|
|
2518
|
+
PUBLISHED: "PUBLISHED";
|
|
2519
|
+
DRAFT: "DRAFT";
|
|
1549
2520
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
1550
2521
|
PUBLISHING: "PUBLISHING";
|
|
1551
|
-
PUBLISHED: "PUBLISHED";
|
|
1552
2522
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
1553
|
-
FAILED: "FAILED";
|
|
1554
2523
|
}>;
|
|
1555
2524
|
type PostStatus = z.infer<typeof PostStatusSchema>;
|
|
1556
2525
|
declare const PlatformPostStatusSchema: z.ZodEnum<{
|
|
1557
|
-
|
|
2526
|
+
FAILED: "FAILED";
|
|
1558
2527
|
SCHEDULED: "SCHEDULED";
|
|
2528
|
+
PUBLISHED: "PUBLISHED";
|
|
2529
|
+
DRAFT: "DRAFT";
|
|
1559
2530
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
1560
2531
|
PUBLISHING: "PUBLISHING";
|
|
1561
|
-
PUBLISHED: "PUBLISHED";
|
|
1562
|
-
FAILED: "FAILED";
|
|
1563
2532
|
PREPARING: "PREPARING";
|
|
1564
2533
|
}>;
|
|
1565
2534
|
declare const PostMediaSchema: z.ZodObject<{
|
|
@@ -1720,6 +2689,7 @@ declare const PublishingProviderSchema: z.ZodEnum<{
|
|
|
1720
2689
|
YOUTUBE: "YOUTUBE";
|
|
1721
2690
|
BLUESKY: "BLUESKY";
|
|
1722
2691
|
LINKEDIN: "LINKEDIN";
|
|
2692
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
1723
2693
|
}>;
|
|
1724
2694
|
type PublishingProvider = z.infer<typeof PublishingProviderSchema>;
|
|
1725
2695
|
declare const PUBLISHING_PROVIDER_COUNT: number;
|
|
@@ -1730,12 +2700,12 @@ declare const PostDeliveryModeSchema: z.ZodEnum<{
|
|
|
1730
2700
|
type PostDeliveryMode = z.infer<typeof PostDeliveryModeSchema>;
|
|
1731
2701
|
declare const PostDestinationStageSchema: z.ZodEnum<{
|
|
1732
2702
|
QUEUED: "QUEUED";
|
|
1733
|
-
|
|
2703
|
+
FAILED: "FAILED";
|
|
1734
2704
|
SCHEDULED: "SCHEDULED";
|
|
2705
|
+
PUBLISHED: "PUBLISHED";
|
|
2706
|
+
DRAFT: "DRAFT";
|
|
1735
2707
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
1736
2708
|
PUBLISHING: "PUBLISHING";
|
|
1737
|
-
PUBLISHED: "PUBLISHED";
|
|
1738
|
-
FAILED: "FAILED";
|
|
1739
2709
|
UPLOADING: "UPLOADING";
|
|
1740
2710
|
PROCESSING: "PROCESSING";
|
|
1741
2711
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -1748,14 +2718,15 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
1748
2718
|
YOUTUBE: "YOUTUBE";
|
|
1749
2719
|
BLUESKY: "BLUESKY";
|
|
1750
2720
|
LINKEDIN: "LINKEDIN";
|
|
2721
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
1751
2722
|
}>;
|
|
1752
2723
|
status: z.ZodEnum<{
|
|
1753
|
-
|
|
2724
|
+
FAILED: "FAILED";
|
|
1754
2725
|
SCHEDULED: "SCHEDULED";
|
|
2726
|
+
PUBLISHED: "PUBLISHED";
|
|
2727
|
+
DRAFT: "DRAFT";
|
|
1755
2728
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
1756
2729
|
PUBLISHING: "PUBLISHING";
|
|
1757
|
-
PUBLISHED: "PUBLISHED";
|
|
1758
|
-
FAILED: "FAILED";
|
|
1759
2730
|
PREPARING: "PREPARING";
|
|
1760
2731
|
}>;
|
|
1761
2732
|
deliveryMode: z.ZodEnum<{
|
|
@@ -1764,12 +2735,12 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
1764
2735
|
}>;
|
|
1765
2736
|
stage: z.ZodEnum<{
|
|
1766
2737
|
QUEUED: "QUEUED";
|
|
1767
|
-
|
|
2738
|
+
FAILED: "FAILED";
|
|
1768
2739
|
SCHEDULED: "SCHEDULED";
|
|
2740
|
+
PUBLISHED: "PUBLISHED";
|
|
2741
|
+
DRAFT: "DRAFT";
|
|
1769
2742
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
1770
2743
|
PUBLISHING: "PUBLISHING";
|
|
1771
|
-
PUBLISHED: "PUBLISHED";
|
|
1772
|
-
FAILED: "FAILED";
|
|
1773
2744
|
UPLOADING: "UPLOADING";
|
|
1774
2745
|
PROCESSING: "PROCESSING";
|
|
1775
2746
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -1898,13 +2869,13 @@ declare const PostSchema: z.ZodObject<{
|
|
|
1898
2869
|
}, z.core.$strip>>;
|
|
1899
2870
|
caption: z.ZodString;
|
|
1900
2871
|
status: z.ZodEnum<{
|
|
1901
|
-
|
|
2872
|
+
FAILED: "FAILED";
|
|
1902
2873
|
SCHEDULED: "SCHEDULED";
|
|
2874
|
+
PUBLISHED: "PUBLISHED";
|
|
2875
|
+
DRAFT: "DRAFT";
|
|
1903
2876
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
1904
2877
|
PUBLISHING: "PUBLISHING";
|
|
1905
|
-
PUBLISHED: "PUBLISHED";
|
|
1906
2878
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
1907
|
-
FAILED: "FAILED";
|
|
1908
2879
|
}>;
|
|
1909
2880
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
1910
2881
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -1935,14 +2906,15 @@ declare const PostSchema: z.ZodObject<{
|
|
|
1935
2906
|
YOUTUBE: "YOUTUBE";
|
|
1936
2907
|
BLUESKY: "BLUESKY";
|
|
1937
2908
|
LINKEDIN: "LINKEDIN";
|
|
2909
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
1938
2910
|
}>;
|
|
1939
2911
|
status: z.ZodEnum<{
|
|
1940
|
-
|
|
2912
|
+
FAILED: "FAILED";
|
|
1941
2913
|
SCHEDULED: "SCHEDULED";
|
|
2914
|
+
PUBLISHED: "PUBLISHED";
|
|
2915
|
+
DRAFT: "DRAFT";
|
|
1942
2916
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
1943
2917
|
PUBLISHING: "PUBLISHING";
|
|
1944
|
-
PUBLISHED: "PUBLISHED";
|
|
1945
|
-
FAILED: "FAILED";
|
|
1946
2918
|
PREPARING: "PREPARING";
|
|
1947
2919
|
}>;
|
|
1948
2920
|
deliveryMode: z.ZodEnum<{
|
|
@@ -1951,12 +2923,12 @@ declare const PostSchema: z.ZodObject<{
|
|
|
1951
2923
|
}>;
|
|
1952
2924
|
stage: z.ZodEnum<{
|
|
1953
2925
|
QUEUED: "QUEUED";
|
|
1954
|
-
|
|
2926
|
+
FAILED: "FAILED";
|
|
1955
2927
|
SCHEDULED: "SCHEDULED";
|
|
2928
|
+
PUBLISHED: "PUBLISHED";
|
|
2929
|
+
DRAFT: "DRAFT";
|
|
1956
2930
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
1957
2931
|
PUBLISHING: "PUBLISHING";
|
|
1958
|
-
PUBLISHED: "PUBLISHED";
|
|
1959
|
-
FAILED: "FAILED";
|
|
1960
2932
|
UPLOADING: "UPLOADING";
|
|
1961
2933
|
PROCESSING: "PROCESSING";
|
|
1962
2934
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2004,13 +2976,13 @@ declare const PostListQuerySchema: z.ZodObject<{
|
|
|
2004
2976
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
2005
2977
|
cursor: z.ZodOptional<z.ZodString>;
|
|
2006
2978
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2007
|
-
|
|
2979
|
+
FAILED: "FAILED";
|
|
2008
2980
|
SCHEDULED: "SCHEDULED";
|
|
2981
|
+
PUBLISHED: "PUBLISHED";
|
|
2982
|
+
DRAFT: "DRAFT";
|
|
2009
2983
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2010
2984
|
PUBLISHING: "PUBLISHING";
|
|
2011
|
-
PUBLISHED: "PUBLISHED";
|
|
2012
2985
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2013
|
-
FAILED: "FAILED";
|
|
2014
2986
|
}>>;
|
|
2015
2987
|
}, z.core.$strip>;
|
|
2016
2988
|
type PostListQuery = z.input<typeof PostListQuerySchema>;
|
|
@@ -2025,13 +2997,13 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
2025
2997
|
}, z.core.$strip>>;
|
|
2026
2998
|
caption: z.ZodString;
|
|
2027
2999
|
status: z.ZodEnum<{
|
|
2028
|
-
|
|
3000
|
+
FAILED: "FAILED";
|
|
2029
3001
|
SCHEDULED: "SCHEDULED";
|
|
3002
|
+
PUBLISHED: "PUBLISHED";
|
|
3003
|
+
DRAFT: "DRAFT";
|
|
2030
3004
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2031
3005
|
PUBLISHING: "PUBLISHING";
|
|
2032
|
-
PUBLISHED: "PUBLISHED";
|
|
2033
3006
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2034
|
-
FAILED: "FAILED";
|
|
2035
3007
|
}>;
|
|
2036
3008
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
2037
3009
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -2062,14 +3034,15 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
2062
3034
|
YOUTUBE: "YOUTUBE";
|
|
2063
3035
|
BLUESKY: "BLUESKY";
|
|
2064
3036
|
LINKEDIN: "LINKEDIN";
|
|
3037
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2065
3038
|
}>;
|
|
2066
3039
|
status: z.ZodEnum<{
|
|
2067
|
-
|
|
3040
|
+
FAILED: "FAILED";
|
|
2068
3041
|
SCHEDULED: "SCHEDULED";
|
|
3042
|
+
PUBLISHED: "PUBLISHED";
|
|
3043
|
+
DRAFT: "DRAFT";
|
|
2069
3044
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2070
3045
|
PUBLISHING: "PUBLISHING";
|
|
2071
|
-
PUBLISHED: "PUBLISHED";
|
|
2072
|
-
FAILED: "FAILED";
|
|
2073
3046
|
PREPARING: "PREPARING";
|
|
2074
3047
|
}>;
|
|
2075
3048
|
deliveryMode: z.ZodEnum<{
|
|
@@ -2078,12 +3051,12 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
2078
3051
|
}>;
|
|
2079
3052
|
stage: z.ZodEnum<{
|
|
2080
3053
|
QUEUED: "QUEUED";
|
|
2081
|
-
|
|
3054
|
+
FAILED: "FAILED";
|
|
2082
3055
|
SCHEDULED: "SCHEDULED";
|
|
3056
|
+
PUBLISHED: "PUBLISHED";
|
|
3057
|
+
DRAFT: "DRAFT";
|
|
2083
3058
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2084
3059
|
PUBLISHING: "PUBLISHING";
|
|
2085
|
-
PUBLISHED: "PUBLISHED";
|
|
2086
|
-
FAILED: "FAILED";
|
|
2087
3060
|
UPLOADING: "UPLOADING";
|
|
2088
3061
|
PROCESSING: "PROCESSING";
|
|
2089
3062
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2144,13 +3117,13 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
2144
3117
|
}, z.core.$strip>>;
|
|
2145
3118
|
caption: z.ZodString;
|
|
2146
3119
|
status: z.ZodEnum<{
|
|
2147
|
-
|
|
3120
|
+
FAILED: "FAILED";
|
|
2148
3121
|
SCHEDULED: "SCHEDULED";
|
|
3122
|
+
PUBLISHED: "PUBLISHED";
|
|
3123
|
+
DRAFT: "DRAFT";
|
|
2149
3124
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2150
3125
|
PUBLISHING: "PUBLISHING";
|
|
2151
|
-
PUBLISHED: "PUBLISHED";
|
|
2152
3126
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2153
|
-
FAILED: "FAILED";
|
|
2154
3127
|
}>;
|
|
2155
3128
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
2156
3129
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -2181,14 +3154,15 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
2181
3154
|
YOUTUBE: "YOUTUBE";
|
|
2182
3155
|
BLUESKY: "BLUESKY";
|
|
2183
3156
|
LINKEDIN: "LINKEDIN";
|
|
3157
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2184
3158
|
}>;
|
|
2185
3159
|
status: z.ZodEnum<{
|
|
2186
|
-
|
|
3160
|
+
FAILED: "FAILED";
|
|
2187
3161
|
SCHEDULED: "SCHEDULED";
|
|
3162
|
+
PUBLISHED: "PUBLISHED";
|
|
3163
|
+
DRAFT: "DRAFT";
|
|
2188
3164
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2189
3165
|
PUBLISHING: "PUBLISHING";
|
|
2190
|
-
PUBLISHED: "PUBLISHED";
|
|
2191
|
-
FAILED: "FAILED";
|
|
2192
3166
|
PREPARING: "PREPARING";
|
|
2193
3167
|
}>;
|
|
2194
3168
|
deliveryMode: z.ZodEnum<{
|
|
@@ -2197,12 +3171,12 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
2197
3171
|
}>;
|
|
2198
3172
|
stage: z.ZodEnum<{
|
|
2199
3173
|
QUEUED: "QUEUED";
|
|
2200
|
-
|
|
3174
|
+
FAILED: "FAILED";
|
|
2201
3175
|
SCHEDULED: "SCHEDULED";
|
|
3176
|
+
PUBLISHED: "PUBLISHED";
|
|
3177
|
+
DRAFT: "DRAFT";
|
|
2202
3178
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2203
3179
|
PUBLISHING: "PUBLISHING";
|
|
2204
|
-
PUBLISHED: "PUBLISHED";
|
|
2205
|
-
FAILED: "FAILED";
|
|
2206
3180
|
UPLOADING: "UPLOADING";
|
|
2207
3181
|
PROCESSING: "PROCESSING";
|
|
2208
3182
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2266,13 +3240,13 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
2266
3240
|
}, z.core.$strip>>;
|
|
2267
3241
|
caption: z.ZodString;
|
|
2268
3242
|
status: z.ZodEnum<{
|
|
2269
|
-
|
|
3243
|
+
FAILED: "FAILED";
|
|
2270
3244
|
SCHEDULED: "SCHEDULED";
|
|
3245
|
+
PUBLISHED: "PUBLISHED";
|
|
3246
|
+
DRAFT: "DRAFT";
|
|
2271
3247
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2272
3248
|
PUBLISHING: "PUBLISHING";
|
|
2273
|
-
PUBLISHED: "PUBLISHED";
|
|
2274
3249
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2275
|
-
FAILED: "FAILED";
|
|
2276
3250
|
}>;
|
|
2277
3251
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
2278
3252
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -2303,14 +3277,15 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
2303
3277
|
YOUTUBE: "YOUTUBE";
|
|
2304
3278
|
BLUESKY: "BLUESKY";
|
|
2305
3279
|
LINKEDIN: "LINKEDIN";
|
|
3280
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2306
3281
|
}>;
|
|
2307
3282
|
status: z.ZodEnum<{
|
|
2308
|
-
|
|
3283
|
+
FAILED: "FAILED";
|
|
2309
3284
|
SCHEDULED: "SCHEDULED";
|
|
3285
|
+
PUBLISHED: "PUBLISHED";
|
|
3286
|
+
DRAFT: "DRAFT";
|
|
2310
3287
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2311
3288
|
PUBLISHING: "PUBLISHING";
|
|
2312
|
-
PUBLISHED: "PUBLISHED";
|
|
2313
|
-
FAILED: "FAILED";
|
|
2314
3289
|
PREPARING: "PREPARING";
|
|
2315
3290
|
}>;
|
|
2316
3291
|
deliveryMode: z.ZodEnum<{
|
|
@@ -2319,12 +3294,12 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
2319
3294
|
}>;
|
|
2320
3295
|
stage: z.ZodEnum<{
|
|
2321
3296
|
QUEUED: "QUEUED";
|
|
2322
|
-
|
|
3297
|
+
FAILED: "FAILED";
|
|
2323
3298
|
SCHEDULED: "SCHEDULED";
|
|
3299
|
+
PUBLISHED: "PUBLISHED";
|
|
3300
|
+
DRAFT: "DRAFT";
|
|
2324
3301
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2325
3302
|
PUBLISHING: "PUBLISHING";
|
|
2326
|
-
PUBLISHED: "PUBLISHED";
|
|
2327
|
-
FAILED: "FAILED";
|
|
2328
3303
|
UPLOADING: "UPLOADING";
|
|
2329
3304
|
PROCESSING: "PROCESSING";
|
|
2330
3305
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2380,6 +3355,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
2380
3355
|
YOUTUBE: "YOUTUBE";
|
|
2381
3356
|
BLUESKY: "BLUESKY";
|
|
2382
3357
|
LINKEDIN: "LINKEDIN";
|
|
3358
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2383
3359
|
}>>>;
|
|
2384
3360
|
mediaAssetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2385
3361
|
captionOverrides: z.ZodDefault<z.ZodObject<{
|
|
@@ -2388,6 +3364,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
2388
3364
|
YOUTUBE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2389
3365
|
BLUESKY: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2390
3366
|
LINKEDIN: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3367
|
+
GOOGLE_BUSINESS_PROFILE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2391
3368
|
}, z.core.$strict>>;
|
|
2392
3369
|
tiktokSettings: z.ZodDefault<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
2393
3370
|
postMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2455,6 +3432,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
2455
3432
|
YOUTUBE: "YOUTUBE";
|
|
2456
3433
|
BLUESKY: "BLUESKY";
|
|
2457
3434
|
LINKEDIN: "LINKEDIN";
|
|
3435
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2458
3436
|
}>>>;
|
|
2459
3437
|
mediaAssetIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2460
3438
|
captionOverrides: z.ZodOptional<z.ZodObject<{
|
|
@@ -2463,6 +3441,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
2463
3441
|
YOUTUBE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2464
3442
|
BLUESKY: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2465
3443
|
LINKEDIN: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3444
|
+
GOOGLE_BUSINESS_PROFILE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2466
3445
|
}, z.core.$strict>>;
|
|
2467
3446
|
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
2468
3447
|
postMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2523,8 +3502,8 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
2523
3502
|
type DraftPostUpdateInput = z.input<typeof DraftPostUpdateInputSchema>;
|
|
2524
3503
|
type DraftPostUpdateData = z.infer<typeof DraftPostUpdateInputSchema>;
|
|
2525
3504
|
declare const IntegrationConnectionStatusSchema: z.ZodEnum<{
|
|
2526
|
-
PENDING: "PENDING";
|
|
2527
3505
|
CONNECTED: "CONNECTED";
|
|
3506
|
+
PENDING: "PENDING";
|
|
2528
3507
|
ERROR: "ERROR";
|
|
2529
3508
|
EXPIRED: "EXPIRED";
|
|
2530
3509
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -2541,10 +3520,11 @@ declare const IntegrationHealthSchema: z.ZodObject<{
|
|
|
2541
3520
|
YOUTUBE: "YOUTUBE";
|
|
2542
3521
|
BLUESKY: "BLUESKY";
|
|
2543
3522
|
LINKEDIN: "LINKEDIN";
|
|
3523
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2544
3524
|
}>;
|
|
2545
3525
|
connectionStatus: z.ZodEnum<{
|
|
2546
|
-
PENDING: "PENDING";
|
|
2547
3526
|
CONNECTED: "CONNECTED";
|
|
3527
|
+
PENDING: "PENDING";
|
|
2548
3528
|
ERROR: "ERROR";
|
|
2549
3529
|
EXPIRED: "EXPIRED";
|
|
2550
3530
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -2580,10 +3560,11 @@ declare const IntegrationHealthListDataSchema: z.ZodObject<{
|
|
|
2580
3560
|
YOUTUBE: "YOUTUBE";
|
|
2581
3561
|
BLUESKY: "BLUESKY";
|
|
2582
3562
|
LINKEDIN: "LINKEDIN";
|
|
3563
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2583
3564
|
}>;
|
|
2584
3565
|
connectionStatus: z.ZodEnum<{
|
|
2585
|
-
PENDING: "PENDING";
|
|
2586
3566
|
CONNECTED: "CONNECTED";
|
|
3567
|
+
PENDING: "PENDING";
|
|
2587
3568
|
ERROR: "ERROR";
|
|
2588
3569
|
EXPIRED: "EXPIRED";
|
|
2589
3570
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -2621,10 +3602,11 @@ declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
|
2621
3602
|
YOUTUBE: "YOUTUBE";
|
|
2622
3603
|
BLUESKY: "BLUESKY";
|
|
2623
3604
|
LINKEDIN: "LINKEDIN";
|
|
3605
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2624
3606
|
}>;
|
|
2625
3607
|
connectionStatus: z.ZodEnum<{
|
|
2626
|
-
PENDING: "PENDING";
|
|
2627
3608
|
CONNECTED: "CONNECTED";
|
|
3609
|
+
PENDING: "PENDING";
|
|
2628
3610
|
ERROR: "ERROR";
|
|
2629
3611
|
EXPIRED: "EXPIRED";
|
|
2630
3612
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -2903,6 +3885,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
2903
3885
|
YOUTUBE: "YOUTUBE";
|
|
2904
3886
|
BLUESKY: "BLUESKY";
|
|
2905
3887
|
LINKEDIN: "LINKEDIN";
|
|
3888
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2906
3889
|
}>>;
|
|
2907
3890
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2908
3891
|
}, z.core.$strip>;
|
|
@@ -2927,6 +3910,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
2927
3910
|
YOUTUBE: "YOUTUBE";
|
|
2928
3911
|
BLUESKY: "BLUESKY";
|
|
2929
3912
|
LINKEDIN: "LINKEDIN";
|
|
3913
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2930
3914
|
}>>;
|
|
2931
3915
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2932
3916
|
status: z.ZodEnum<{
|
|
@@ -2958,6 +3942,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
2958
3942
|
YOUTUBE: "YOUTUBE";
|
|
2959
3943
|
BLUESKY: "BLUESKY";
|
|
2960
3944
|
LINKEDIN: "LINKEDIN";
|
|
3945
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2961
3946
|
}>>;
|
|
2962
3947
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2963
3948
|
}, z.core.$strip>>;
|
|
@@ -2984,6 +3969,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
2984
3969
|
YOUTUBE: "YOUTUBE";
|
|
2985
3970
|
BLUESKY: "BLUESKY";
|
|
2986
3971
|
LINKEDIN: "LINKEDIN";
|
|
3972
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2987
3973
|
}>>;
|
|
2988
3974
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2989
3975
|
status: z.ZodEnum<{
|
|
@@ -3015,6 +4001,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3015
4001
|
YOUTUBE: "YOUTUBE";
|
|
3016
4002
|
BLUESKY: "BLUESKY";
|
|
3017
4003
|
LINKEDIN: "LINKEDIN";
|
|
4004
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3018
4005
|
}>>;
|
|
3019
4006
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3020
4007
|
}, z.core.$strip>>;
|
|
@@ -3026,6 +4013,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3026
4013
|
YOUTUBE: "YOUTUBE";
|
|
3027
4014
|
BLUESKY: "BLUESKY";
|
|
3028
4015
|
LINKEDIN: "LINKEDIN";
|
|
4016
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3029
4017
|
}>;
|
|
3030
4018
|
connected: z.ZodBoolean;
|
|
3031
4019
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3039,6 +4027,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3039
4027
|
YOUTUBE: "YOUTUBE";
|
|
3040
4028
|
BLUESKY: "BLUESKY";
|
|
3041
4029
|
LINKEDIN: "LINKEDIN";
|
|
4030
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3042
4031
|
}>>;
|
|
3043
4032
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3044
4033
|
}, z.core.$strip>;
|
|
@@ -3066,6 +4055,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3066
4055
|
YOUTUBE: "YOUTUBE";
|
|
3067
4056
|
BLUESKY: "BLUESKY";
|
|
3068
4057
|
LINKEDIN: "LINKEDIN";
|
|
4058
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3069
4059
|
}>>;
|
|
3070
4060
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3071
4061
|
status: z.ZodEnum<{
|
|
@@ -3097,6 +4087,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3097
4087
|
YOUTUBE: "YOUTUBE";
|
|
3098
4088
|
BLUESKY: "BLUESKY";
|
|
3099
4089
|
LINKEDIN: "LINKEDIN";
|
|
4090
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3100
4091
|
}>>;
|
|
3101
4092
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3102
4093
|
}, z.core.$strip>>;
|
|
@@ -3108,6 +4099,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3108
4099
|
YOUTUBE: "YOUTUBE";
|
|
3109
4100
|
BLUESKY: "BLUESKY";
|
|
3110
4101
|
LINKEDIN: "LINKEDIN";
|
|
4102
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3111
4103
|
}>;
|
|
3112
4104
|
connected: z.ZodBoolean;
|
|
3113
4105
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3121,6 +4113,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3121
4113
|
YOUTUBE: "YOUTUBE";
|
|
3122
4114
|
BLUESKY: "BLUESKY";
|
|
3123
4115
|
LINKEDIN: "LINKEDIN";
|
|
4116
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3124
4117
|
}>>;
|
|
3125
4118
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3126
4119
|
}, z.core.$strip>;
|
|
@@ -3147,13 +4140,13 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3147
4140
|
projectId: z.ZodString;
|
|
3148
4141
|
version: z.ZodNumber;
|
|
3149
4142
|
status: z.ZodEnum<{
|
|
3150
|
-
|
|
4143
|
+
FAILED: "FAILED";
|
|
3151
4144
|
SCHEDULED: "SCHEDULED";
|
|
4145
|
+
PUBLISHED: "PUBLISHED";
|
|
4146
|
+
DRAFT: "DRAFT";
|
|
3152
4147
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3153
4148
|
PUBLISHING: "PUBLISHING";
|
|
3154
|
-
PUBLISHED: "PUBLISHED";
|
|
3155
4149
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3156
|
-
FAILED: "FAILED";
|
|
3157
4150
|
}>;
|
|
3158
4151
|
}, z.core.$strip>;
|
|
3159
4152
|
schedule: z.ZodObject<{
|
|
@@ -3166,6 +4159,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3166
4159
|
YOUTUBE: "YOUTUBE";
|
|
3167
4160
|
BLUESKY: "BLUESKY";
|
|
3168
4161
|
LINKEDIN: "LINKEDIN";
|
|
4162
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3169
4163
|
}>>;
|
|
3170
4164
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3171
4165
|
uploadVisibility: z.ZodLiteral<"PRIVATE">;
|
|
@@ -3200,6 +4194,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3200
4194
|
YOUTUBE: "YOUTUBE";
|
|
3201
4195
|
BLUESKY: "BLUESKY";
|
|
3202
4196
|
LINKEDIN: "LINKEDIN";
|
|
4197
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3203
4198
|
}>>;
|
|
3204
4199
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3205
4200
|
status: z.ZodEnum<{
|
|
@@ -3231,6 +4226,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3231
4226
|
YOUTUBE: "YOUTUBE";
|
|
3232
4227
|
BLUESKY: "BLUESKY";
|
|
3233
4228
|
LINKEDIN: "LINKEDIN";
|
|
4229
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3234
4230
|
}>>;
|
|
3235
4231
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3236
4232
|
}, z.core.$strip>>;
|
|
@@ -3242,6 +4238,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3242
4238
|
YOUTUBE: "YOUTUBE";
|
|
3243
4239
|
BLUESKY: "BLUESKY";
|
|
3244
4240
|
LINKEDIN: "LINKEDIN";
|
|
4241
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3245
4242
|
}>;
|
|
3246
4243
|
connected: z.ZodBoolean;
|
|
3247
4244
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3255,6 +4252,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3255
4252
|
YOUTUBE: "YOUTUBE";
|
|
3256
4253
|
BLUESKY: "BLUESKY";
|
|
3257
4254
|
LINKEDIN: "LINKEDIN";
|
|
4255
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3258
4256
|
}>>;
|
|
3259
4257
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3260
4258
|
}, z.core.$strip>;
|
|
@@ -3273,13 +4271,13 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3273
4271
|
projectId: z.ZodString;
|
|
3274
4272
|
version: z.ZodNumber;
|
|
3275
4273
|
status: z.ZodEnum<{
|
|
3276
|
-
|
|
4274
|
+
FAILED: "FAILED";
|
|
3277
4275
|
SCHEDULED: "SCHEDULED";
|
|
4276
|
+
PUBLISHED: "PUBLISHED";
|
|
4277
|
+
DRAFT: "DRAFT";
|
|
3278
4278
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3279
4279
|
PUBLISHING: "PUBLISHING";
|
|
3280
|
-
PUBLISHED: "PUBLISHED";
|
|
3281
4280
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3282
|
-
FAILED: "FAILED";
|
|
3283
4281
|
}>;
|
|
3284
4282
|
}, z.core.$strip>;
|
|
3285
4283
|
schedule: z.ZodObject<{
|
|
@@ -3292,6 +4290,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3292
4290
|
YOUTUBE: "YOUTUBE";
|
|
3293
4291
|
BLUESKY: "BLUESKY";
|
|
3294
4292
|
LINKEDIN: "LINKEDIN";
|
|
4293
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3295
4294
|
}>>;
|
|
3296
4295
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3297
4296
|
uploadVisibility: z.ZodLiteral<"PRIVATE">;
|
|
@@ -3326,6 +4325,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3326
4325
|
YOUTUBE: "YOUTUBE";
|
|
3327
4326
|
BLUESKY: "BLUESKY";
|
|
3328
4327
|
LINKEDIN: "LINKEDIN";
|
|
4328
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3329
4329
|
}>>;
|
|
3330
4330
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3331
4331
|
status: z.ZodEnum<{
|
|
@@ -3357,6 +4357,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3357
4357
|
YOUTUBE: "YOUTUBE";
|
|
3358
4358
|
BLUESKY: "BLUESKY";
|
|
3359
4359
|
LINKEDIN: "LINKEDIN";
|
|
4360
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3360
4361
|
}>>;
|
|
3361
4362
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3362
4363
|
}, z.core.$strip>>;
|
|
@@ -3368,6 +4369,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3368
4369
|
YOUTUBE: "YOUTUBE";
|
|
3369
4370
|
BLUESKY: "BLUESKY";
|
|
3370
4371
|
LINKEDIN: "LINKEDIN";
|
|
4372
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3371
4373
|
}>;
|
|
3372
4374
|
connected: z.ZodBoolean;
|
|
3373
4375
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3381,6 +4383,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3381
4383
|
YOUTUBE: "YOUTUBE";
|
|
3382
4384
|
BLUESKY: "BLUESKY";
|
|
3383
4385
|
LINKEDIN: "LINKEDIN";
|
|
4386
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3384
4387
|
}>>;
|
|
3385
4388
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3386
4389
|
}, z.core.$strip>;
|
|
@@ -3417,13 +4420,13 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
3417
4420
|
}, z.core.$strip>>;
|
|
3418
4421
|
caption: z.ZodString;
|
|
3419
4422
|
status: z.ZodEnum<{
|
|
3420
|
-
|
|
4423
|
+
FAILED: "FAILED";
|
|
3421
4424
|
SCHEDULED: "SCHEDULED";
|
|
4425
|
+
PUBLISHED: "PUBLISHED";
|
|
4426
|
+
DRAFT: "DRAFT";
|
|
3422
4427
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3423
4428
|
PUBLISHING: "PUBLISHING";
|
|
3424
|
-
PUBLISHED: "PUBLISHED";
|
|
3425
4429
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3426
|
-
FAILED: "FAILED";
|
|
3427
4430
|
}>;
|
|
3428
4431
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
3429
4432
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -3454,14 +4457,15 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
3454
4457
|
YOUTUBE: "YOUTUBE";
|
|
3455
4458
|
BLUESKY: "BLUESKY";
|
|
3456
4459
|
LINKEDIN: "LINKEDIN";
|
|
4460
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3457
4461
|
}>;
|
|
3458
4462
|
status: z.ZodEnum<{
|
|
3459
|
-
|
|
4463
|
+
FAILED: "FAILED";
|
|
3460
4464
|
SCHEDULED: "SCHEDULED";
|
|
4465
|
+
PUBLISHED: "PUBLISHED";
|
|
4466
|
+
DRAFT: "DRAFT";
|
|
3461
4467
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3462
4468
|
PUBLISHING: "PUBLISHING";
|
|
3463
|
-
PUBLISHED: "PUBLISHED";
|
|
3464
|
-
FAILED: "FAILED";
|
|
3465
4469
|
PREPARING: "PREPARING";
|
|
3466
4470
|
}>;
|
|
3467
4471
|
deliveryMode: z.ZodEnum<{
|
|
@@ -3470,12 +4474,12 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
3470
4474
|
}>;
|
|
3471
4475
|
stage: z.ZodEnum<{
|
|
3472
4476
|
QUEUED: "QUEUED";
|
|
3473
|
-
|
|
4477
|
+
FAILED: "FAILED";
|
|
3474
4478
|
SCHEDULED: "SCHEDULED";
|
|
4479
|
+
PUBLISHED: "PUBLISHED";
|
|
4480
|
+
DRAFT: "DRAFT";
|
|
3475
4481
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3476
4482
|
PUBLISHING: "PUBLISHING";
|
|
3477
|
-
PUBLISHED: "PUBLISHED";
|
|
3478
|
-
FAILED: "FAILED";
|
|
3479
4483
|
UPLOADING: "UPLOADING";
|
|
3480
4484
|
PROCESSING: "PROCESSING";
|
|
3481
4485
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -3542,13 +4546,13 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
3542
4546
|
}, z.core.$strip>>;
|
|
3543
4547
|
caption: z.ZodString;
|
|
3544
4548
|
status: z.ZodEnum<{
|
|
3545
|
-
|
|
4549
|
+
FAILED: "FAILED";
|
|
3546
4550
|
SCHEDULED: "SCHEDULED";
|
|
4551
|
+
PUBLISHED: "PUBLISHED";
|
|
4552
|
+
DRAFT: "DRAFT";
|
|
3547
4553
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3548
4554
|
PUBLISHING: "PUBLISHING";
|
|
3549
|
-
PUBLISHED: "PUBLISHED";
|
|
3550
4555
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3551
|
-
FAILED: "FAILED";
|
|
3552
4556
|
}>;
|
|
3553
4557
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
3554
4558
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -3579,14 +4583,15 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
3579
4583
|
YOUTUBE: "YOUTUBE";
|
|
3580
4584
|
BLUESKY: "BLUESKY";
|
|
3581
4585
|
LINKEDIN: "LINKEDIN";
|
|
4586
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3582
4587
|
}>;
|
|
3583
4588
|
status: z.ZodEnum<{
|
|
3584
|
-
|
|
4589
|
+
FAILED: "FAILED";
|
|
3585
4590
|
SCHEDULED: "SCHEDULED";
|
|
4591
|
+
PUBLISHED: "PUBLISHED";
|
|
4592
|
+
DRAFT: "DRAFT";
|
|
3586
4593
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3587
4594
|
PUBLISHING: "PUBLISHING";
|
|
3588
|
-
PUBLISHED: "PUBLISHED";
|
|
3589
|
-
FAILED: "FAILED";
|
|
3590
4595
|
PREPARING: "PREPARING";
|
|
3591
4596
|
}>;
|
|
3592
4597
|
deliveryMode: z.ZodEnum<{
|
|
@@ -3595,12 +4600,12 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
3595
4600
|
}>;
|
|
3596
4601
|
stage: z.ZodEnum<{
|
|
3597
4602
|
QUEUED: "QUEUED";
|
|
3598
|
-
|
|
4603
|
+
FAILED: "FAILED";
|
|
3599
4604
|
SCHEDULED: "SCHEDULED";
|
|
4605
|
+
PUBLISHED: "PUBLISHED";
|
|
4606
|
+
DRAFT: "DRAFT";
|
|
3600
4607
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3601
4608
|
PUBLISHING: "PUBLISHING";
|
|
3602
|
-
PUBLISHED: "PUBLISHED";
|
|
3603
|
-
FAILED: "FAILED";
|
|
3604
4609
|
UPLOADING: "UPLOADING";
|
|
3605
4610
|
PROCESSING: "PROCESSING";
|
|
3606
4611
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -3666,6 +4671,7 @@ declare const PostPublishInputSchema: z.ZodObject<{
|
|
|
3666
4671
|
YOUTUBE: "YOUTUBE";
|
|
3667
4672
|
BLUESKY: "BLUESKY";
|
|
3668
4673
|
LINKEDIN: "LINKEDIN";
|
|
4674
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3669
4675
|
}>>;
|
|
3670
4676
|
}, z.core.$strict>;
|
|
3671
4677
|
type PostPublishInput = z.infer<typeof PostPublishInputSchema>;
|
|
@@ -3676,6 +4682,7 @@ declare const PostPublishExecuteInputSchema: z.ZodObject<{
|
|
|
3676
4682
|
YOUTUBE: "YOUTUBE";
|
|
3677
4683
|
BLUESKY: "BLUESKY";
|
|
3678
4684
|
LINKEDIN: "LINKEDIN";
|
|
4685
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3679
4686
|
}>>;
|
|
3680
4687
|
confirmationToken: z.ZodString;
|
|
3681
4688
|
}, z.core.$strict>;
|
|
@@ -3688,13 +4695,13 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
3688
4695
|
projectId: z.ZodString;
|
|
3689
4696
|
version: z.ZodNumber;
|
|
3690
4697
|
status: z.ZodEnum<{
|
|
3691
|
-
|
|
4698
|
+
FAILED: "FAILED";
|
|
3692
4699
|
SCHEDULED: "SCHEDULED";
|
|
4700
|
+
PUBLISHED: "PUBLISHED";
|
|
4701
|
+
DRAFT: "DRAFT";
|
|
3693
4702
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3694
4703
|
PUBLISHING: "PUBLISHING";
|
|
3695
|
-
PUBLISHED: "PUBLISHED";
|
|
3696
4704
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3697
|
-
FAILED: "FAILED";
|
|
3698
4705
|
}>;
|
|
3699
4706
|
}, z.core.$strip>;
|
|
3700
4707
|
destinations: z.ZodArray<z.ZodEnum<{
|
|
@@ -3703,6 +4710,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
3703
4710
|
YOUTUBE: "YOUTUBE";
|
|
3704
4711
|
BLUESKY: "BLUESKY";
|
|
3705
4712
|
LINKEDIN: "LINKEDIN";
|
|
4713
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3706
4714
|
}>>;
|
|
3707
4715
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3708
4716
|
visibility: z.ZodEnum<{
|
|
@@ -3735,6 +4743,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
3735
4743
|
YOUTUBE: "YOUTUBE";
|
|
3736
4744
|
BLUESKY: "BLUESKY";
|
|
3737
4745
|
LINKEDIN: "LINKEDIN";
|
|
4746
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3738
4747
|
}>>;
|
|
3739
4748
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3740
4749
|
status: z.ZodEnum<{
|
|
@@ -3766,6 +4775,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
3766
4775
|
YOUTUBE: "YOUTUBE";
|
|
3767
4776
|
BLUESKY: "BLUESKY";
|
|
3768
4777
|
LINKEDIN: "LINKEDIN";
|
|
4778
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3769
4779
|
}>>;
|
|
3770
4780
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3771
4781
|
}, z.core.$strip>>;
|
|
@@ -3777,6 +4787,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
3777
4787
|
YOUTUBE: "YOUTUBE";
|
|
3778
4788
|
BLUESKY: "BLUESKY";
|
|
3779
4789
|
LINKEDIN: "LINKEDIN";
|
|
4790
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3780
4791
|
}>;
|
|
3781
4792
|
connected: z.ZodBoolean;
|
|
3782
4793
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3790,6 +4801,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
3790
4801
|
YOUTUBE: "YOUTUBE";
|
|
3791
4802
|
BLUESKY: "BLUESKY";
|
|
3792
4803
|
LINKEDIN: "LINKEDIN";
|
|
4804
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3793
4805
|
}>>;
|
|
3794
4806
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3795
4807
|
}, z.core.$strip>;
|
|
@@ -3808,13 +4820,13 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
3808
4820
|
projectId: z.ZodString;
|
|
3809
4821
|
version: z.ZodNumber;
|
|
3810
4822
|
status: z.ZodEnum<{
|
|
3811
|
-
|
|
4823
|
+
FAILED: "FAILED";
|
|
3812
4824
|
SCHEDULED: "SCHEDULED";
|
|
4825
|
+
PUBLISHED: "PUBLISHED";
|
|
4826
|
+
DRAFT: "DRAFT";
|
|
3813
4827
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3814
4828
|
PUBLISHING: "PUBLISHING";
|
|
3815
|
-
PUBLISHED: "PUBLISHED";
|
|
3816
4829
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3817
|
-
FAILED: "FAILED";
|
|
3818
4830
|
}>;
|
|
3819
4831
|
}, z.core.$strip>;
|
|
3820
4832
|
destinations: z.ZodArray<z.ZodEnum<{
|
|
@@ -3823,6 +4835,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
3823
4835
|
YOUTUBE: "YOUTUBE";
|
|
3824
4836
|
BLUESKY: "BLUESKY";
|
|
3825
4837
|
LINKEDIN: "LINKEDIN";
|
|
4838
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3826
4839
|
}>>;
|
|
3827
4840
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3828
4841
|
visibility: z.ZodEnum<{
|
|
@@ -3855,6 +4868,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
3855
4868
|
YOUTUBE: "YOUTUBE";
|
|
3856
4869
|
BLUESKY: "BLUESKY";
|
|
3857
4870
|
LINKEDIN: "LINKEDIN";
|
|
4871
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3858
4872
|
}>>;
|
|
3859
4873
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3860
4874
|
status: z.ZodEnum<{
|
|
@@ -3886,6 +4900,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
3886
4900
|
YOUTUBE: "YOUTUBE";
|
|
3887
4901
|
BLUESKY: "BLUESKY";
|
|
3888
4902
|
LINKEDIN: "LINKEDIN";
|
|
4903
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3889
4904
|
}>>;
|
|
3890
4905
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3891
4906
|
}, z.core.$strip>>;
|
|
@@ -3897,6 +4912,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
3897
4912
|
YOUTUBE: "YOUTUBE";
|
|
3898
4913
|
BLUESKY: "BLUESKY";
|
|
3899
4914
|
LINKEDIN: "LINKEDIN";
|
|
4915
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3900
4916
|
}>;
|
|
3901
4917
|
connected: z.ZodBoolean;
|
|
3902
4918
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3910,6 +4926,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
3910
4926
|
YOUTUBE: "YOUTUBE";
|
|
3911
4927
|
BLUESKY: "BLUESKY";
|
|
3912
4928
|
LINKEDIN: "LINKEDIN";
|
|
4929
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3913
4930
|
}>>;
|
|
3914
4931
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3915
4932
|
}, z.core.$strip>;
|
|
@@ -3928,12 +4945,12 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
3928
4945
|
title: z.ZodString;
|
|
3929
4946
|
caption: z.ZodString;
|
|
3930
4947
|
status: z.ZodEnum<{
|
|
4948
|
+
FAILED: "FAILED";
|
|
3931
4949
|
SCHEDULED: "SCHEDULED";
|
|
4950
|
+
PUBLISHED: "PUBLISHED";
|
|
3932
4951
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3933
4952
|
PUBLISHING: "PUBLISHING";
|
|
3934
|
-
PUBLISHED: "PUBLISHED";
|
|
3935
4953
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3936
|
-
FAILED: "FAILED";
|
|
3937
4954
|
}>;
|
|
3938
4955
|
scheduledAt: z.ZodString;
|
|
3939
4956
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -3949,14 +4966,15 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
3949
4966
|
YOUTUBE: "YOUTUBE";
|
|
3950
4967
|
BLUESKY: "BLUESKY";
|
|
3951
4968
|
LINKEDIN: "LINKEDIN";
|
|
4969
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3952
4970
|
}>;
|
|
3953
4971
|
status: z.ZodEnum<{
|
|
3954
|
-
|
|
4972
|
+
FAILED: "FAILED";
|
|
3955
4973
|
SCHEDULED: "SCHEDULED";
|
|
4974
|
+
PUBLISHED: "PUBLISHED";
|
|
4975
|
+
DRAFT: "DRAFT";
|
|
3956
4976
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3957
4977
|
PUBLISHING: "PUBLISHING";
|
|
3958
|
-
PUBLISHED: "PUBLISHED";
|
|
3959
|
-
FAILED: "FAILED";
|
|
3960
4978
|
PREPARING: "PREPARING";
|
|
3961
4979
|
}>;
|
|
3962
4980
|
}, z.core.$strip>>;
|
|
@@ -3976,12 +4994,12 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
3976
4994
|
title: z.ZodString;
|
|
3977
4995
|
caption: z.ZodString;
|
|
3978
4996
|
status: z.ZodEnum<{
|
|
4997
|
+
FAILED: "FAILED";
|
|
3979
4998
|
SCHEDULED: "SCHEDULED";
|
|
4999
|
+
PUBLISHED: "PUBLISHED";
|
|
3980
5000
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3981
5001
|
PUBLISHING: "PUBLISHING";
|
|
3982
|
-
PUBLISHED: "PUBLISHED";
|
|
3983
5002
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3984
|
-
FAILED: "FAILED";
|
|
3985
5003
|
}>;
|
|
3986
5004
|
scheduledAt: z.ZodString;
|
|
3987
5005
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -3997,14 +5015,15 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
3997
5015
|
YOUTUBE: "YOUTUBE";
|
|
3998
5016
|
BLUESKY: "BLUESKY";
|
|
3999
5017
|
LINKEDIN: "LINKEDIN";
|
|
5018
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4000
5019
|
}>;
|
|
4001
5020
|
status: z.ZodEnum<{
|
|
4002
|
-
|
|
5021
|
+
FAILED: "FAILED";
|
|
4003
5022
|
SCHEDULED: "SCHEDULED";
|
|
5023
|
+
PUBLISHED: "PUBLISHED";
|
|
5024
|
+
DRAFT: "DRAFT";
|
|
4004
5025
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4005
5026
|
PUBLISHING: "PUBLISHING";
|
|
4006
|
-
PUBLISHED: "PUBLISHED";
|
|
4007
|
-
FAILED: "FAILED";
|
|
4008
5027
|
PREPARING: "PREPARING";
|
|
4009
5028
|
}>;
|
|
4010
5029
|
}, z.core.$strip>>;
|
|
@@ -4027,12 +5046,12 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
4027
5046
|
title: z.ZodString;
|
|
4028
5047
|
caption: z.ZodString;
|
|
4029
5048
|
status: z.ZodEnum<{
|
|
5049
|
+
FAILED: "FAILED";
|
|
4030
5050
|
SCHEDULED: "SCHEDULED";
|
|
5051
|
+
PUBLISHED: "PUBLISHED";
|
|
4031
5052
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4032
5053
|
PUBLISHING: "PUBLISHING";
|
|
4033
|
-
PUBLISHED: "PUBLISHED";
|
|
4034
5054
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4035
|
-
FAILED: "FAILED";
|
|
4036
5055
|
}>;
|
|
4037
5056
|
scheduledAt: z.ZodString;
|
|
4038
5057
|
timezone: z.ZodNullable<z.ZodString>;
|
|
@@ -4048,14 +5067,15 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
4048
5067
|
YOUTUBE: "YOUTUBE";
|
|
4049
5068
|
BLUESKY: "BLUESKY";
|
|
4050
5069
|
LINKEDIN: "LINKEDIN";
|
|
5070
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4051
5071
|
}>;
|
|
4052
5072
|
status: z.ZodEnum<{
|
|
4053
|
-
|
|
5073
|
+
FAILED: "FAILED";
|
|
4054
5074
|
SCHEDULED: "SCHEDULED";
|
|
5075
|
+
PUBLISHED: "PUBLISHED";
|
|
5076
|
+
DRAFT: "DRAFT";
|
|
4055
5077
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4056
5078
|
PUBLISHING: "PUBLISHING";
|
|
4057
|
-
PUBLISHED: "PUBLISHED";
|
|
4058
|
-
FAILED: "FAILED";
|
|
4059
5079
|
PREPARING: "PREPARING";
|
|
4060
5080
|
}>;
|
|
4061
5081
|
}, z.core.$strip>>;
|
|
@@ -4119,9 +5139,9 @@ declare const SeoEvidenceSchema: z.ZodObject<{
|
|
|
4119
5139
|
}, z.core.$strict>;
|
|
4120
5140
|
type SeoEvidence = z.infer<typeof SeoEvidenceSchema>;
|
|
4121
5141
|
declare const SeoActionDecisionSchema: z.ZodEnum<{
|
|
5142
|
+
REJECTED: "REJECTED";
|
|
4122
5143
|
READY: "READY";
|
|
4123
5144
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4124
|
-
REJECTED: "REJECTED";
|
|
4125
5145
|
}>;
|
|
4126
5146
|
type SeoActionDecision = z.infer<typeof SeoActionDecisionSchema>;
|
|
4127
5147
|
declare const SeoSearchIntentSchema: z.ZodEnum<{
|
|
@@ -4141,9 +5161,9 @@ declare const SeoContentTypeSchema: z.ZodEnum<{
|
|
|
4141
5161
|
declare const SeoActionPlanSchema: z.ZodObject<{
|
|
4142
5162
|
version: z.ZodNumber;
|
|
4143
5163
|
decision: z.ZodEnum<{
|
|
5164
|
+
REJECTED: "REJECTED";
|
|
4144
5165
|
READY: "READY";
|
|
4145
5166
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4146
|
-
REJECTED: "REJECTED";
|
|
4147
5167
|
}>;
|
|
4148
5168
|
decisionReason: z.ZodString;
|
|
4149
5169
|
searchIntent: z.ZodEnum<{
|
|
@@ -4196,9 +5216,9 @@ declare const SeoActionPlanSchema: z.ZodObject<{
|
|
|
4196
5216
|
}, z.core.$strict>;
|
|
4197
5217
|
type SeoActionPlan = z.infer<typeof SeoActionPlanSchema>;
|
|
4198
5218
|
declare const SeoTaskDecisionSchema: z.ZodEnum<{
|
|
5219
|
+
REJECTED: "REJECTED";
|
|
4199
5220
|
READY: "READY";
|
|
4200
5221
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4201
|
-
REJECTED: "REJECTED";
|
|
4202
5222
|
}>;
|
|
4203
5223
|
type SeoTaskDecision = z.infer<typeof SeoTaskDecisionSchema>;
|
|
4204
5224
|
declare const SeoTaskFormatSchema: z.ZodEnum<{
|
|
@@ -4255,9 +5275,9 @@ declare const SeoAgentTaskSchema: z.ZodObject<{
|
|
|
4255
5275
|
legacy: z.ZodBoolean;
|
|
4256
5276
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
4257
5277
|
decision: z.ZodEnum<{
|
|
5278
|
+
REJECTED: "REJECTED";
|
|
4258
5279
|
READY: "READY";
|
|
4259
5280
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4260
|
-
REJECTED: "REJECTED";
|
|
4261
5281
|
}>;
|
|
4262
5282
|
decisionReason: z.ZodString;
|
|
4263
5283
|
objective: z.ZodString;
|
|
@@ -4438,9 +5458,9 @@ declare const SeoOpportunityBriefSchema: z.ZodObject<{
|
|
|
4438
5458
|
actionPlan: z.ZodObject<{
|
|
4439
5459
|
version: z.ZodNumber;
|
|
4440
5460
|
decision: z.ZodEnum<{
|
|
5461
|
+
REJECTED: "REJECTED";
|
|
4441
5462
|
READY: "READY";
|
|
4442
5463
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4443
|
-
REJECTED: "REJECTED";
|
|
4444
5464
|
}>;
|
|
4445
5465
|
decisionReason: z.ZodString;
|
|
4446
5466
|
searchIntent: z.ZodEnum<{
|
|
@@ -4498,9 +5518,9 @@ declare const SeoOpportunityBriefSchema: z.ZodObject<{
|
|
|
4498
5518
|
legacy: z.ZodBoolean;
|
|
4499
5519
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
4500
5520
|
decision: z.ZodEnum<{
|
|
5521
|
+
REJECTED: "REJECTED";
|
|
4501
5522
|
READY: "READY";
|
|
4502
5523
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4503
|
-
REJECTED: "REJECTED";
|
|
4504
5524
|
}>;
|
|
4505
5525
|
decisionReason: z.ZodString;
|
|
4506
5526
|
objective: z.ZodString;
|
|
@@ -4700,9 +5720,9 @@ declare const SeoOpportunitySchema: z.ZodObject<{
|
|
|
4700
5720
|
actionPlan: z.ZodObject<{
|
|
4701
5721
|
version: z.ZodNumber;
|
|
4702
5722
|
decision: z.ZodEnum<{
|
|
5723
|
+
REJECTED: "REJECTED";
|
|
4703
5724
|
READY: "READY";
|
|
4704
5725
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4705
|
-
REJECTED: "REJECTED";
|
|
4706
5726
|
}>;
|
|
4707
5727
|
decisionReason: z.ZodString;
|
|
4708
5728
|
searchIntent: z.ZodEnum<{
|
|
@@ -4760,9 +5780,9 @@ declare const SeoOpportunitySchema: z.ZodObject<{
|
|
|
4760
5780
|
legacy: z.ZodBoolean;
|
|
4761
5781
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
4762
5782
|
decision: z.ZodEnum<{
|
|
5783
|
+
REJECTED: "REJECTED";
|
|
4763
5784
|
READY: "READY";
|
|
4764
5785
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4765
|
-
REJECTED: "REJECTED";
|
|
4766
5786
|
}>;
|
|
4767
5787
|
decisionReason: z.ZodString;
|
|
4768
5788
|
objective: z.ZodString;
|
|
@@ -4989,9 +6009,9 @@ declare const SeoOpportunityListDataSchema: z.ZodObject<{
|
|
|
4989
6009
|
actionPlan: z.ZodObject<{
|
|
4990
6010
|
version: z.ZodNumber;
|
|
4991
6011
|
decision: z.ZodEnum<{
|
|
6012
|
+
REJECTED: "REJECTED";
|
|
4992
6013
|
READY: "READY";
|
|
4993
6014
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
4994
|
-
REJECTED: "REJECTED";
|
|
4995
6015
|
}>;
|
|
4996
6016
|
decisionReason: z.ZodString;
|
|
4997
6017
|
searchIntent: z.ZodEnum<{
|
|
@@ -5049,9 +6069,9 @@ declare const SeoOpportunityListDataSchema: z.ZodObject<{
|
|
|
5049
6069
|
legacy: z.ZodBoolean;
|
|
5050
6070
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
5051
6071
|
decision: z.ZodEnum<{
|
|
6072
|
+
REJECTED: "REJECTED";
|
|
5052
6073
|
READY: "READY";
|
|
5053
6074
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5054
|
-
REJECTED: "REJECTED";
|
|
5055
6075
|
}>;
|
|
5056
6076
|
decisionReason: z.ZodString;
|
|
5057
6077
|
objective: z.ZodString;
|
|
@@ -5262,9 +6282,9 @@ declare const SeoOpportunityListResponseSchema: z.ZodObject<{
|
|
|
5262
6282
|
actionPlan: z.ZodObject<{
|
|
5263
6283
|
version: z.ZodNumber;
|
|
5264
6284
|
decision: z.ZodEnum<{
|
|
6285
|
+
REJECTED: "REJECTED";
|
|
5265
6286
|
READY: "READY";
|
|
5266
6287
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5267
|
-
REJECTED: "REJECTED";
|
|
5268
6288
|
}>;
|
|
5269
6289
|
decisionReason: z.ZodString;
|
|
5270
6290
|
searchIntent: z.ZodEnum<{
|
|
@@ -5322,9 +6342,9 @@ declare const SeoOpportunityListResponseSchema: z.ZodObject<{
|
|
|
5322
6342
|
legacy: z.ZodBoolean;
|
|
5323
6343
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
5324
6344
|
decision: z.ZodEnum<{
|
|
6345
|
+
REJECTED: "REJECTED";
|
|
5325
6346
|
READY: "READY";
|
|
5326
6347
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5327
|
-
REJECTED: "REJECTED";
|
|
5328
6348
|
}>;
|
|
5329
6349
|
decisionReason: z.ZodString;
|
|
5330
6350
|
objective: z.ZodString;
|
|
@@ -5537,9 +6557,9 @@ declare const SeoOpportunityResponseSchema: z.ZodObject<{
|
|
|
5537
6557
|
actionPlan: z.ZodObject<{
|
|
5538
6558
|
version: z.ZodNumber;
|
|
5539
6559
|
decision: z.ZodEnum<{
|
|
6560
|
+
REJECTED: "REJECTED";
|
|
5540
6561
|
READY: "READY";
|
|
5541
6562
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5542
|
-
REJECTED: "REJECTED";
|
|
5543
6563
|
}>;
|
|
5544
6564
|
decisionReason: z.ZodString;
|
|
5545
6565
|
searchIntent: z.ZodEnum<{
|
|
@@ -5597,9 +6617,9 @@ declare const SeoOpportunityResponseSchema: z.ZodObject<{
|
|
|
5597
6617
|
legacy: z.ZodBoolean;
|
|
5598
6618
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
5599
6619
|
decision: z.ZodEnum<{
|
|
6620
|
+
REJECTED: "REJECTED";
|
|
5600
6621
|
READY: "READY";
|
|
5601
6622
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5602
|
-
REJECTED: "REJECTED";
|
|
5603
6623
|
}>;
|
|
5604
6624
|
decisionReason: z.ZodString;
|
|
5605
6625
|
objective: z.ZodString;
|
|
@@ -5862,9 +6882,9 @@ declare const SeoReportSchema: z.ZodObject<{
|
|
|
5862
6882
|
actionPlan: z.ZodObject<{
|
|
5863
6883
|
version: z.ZodNumber;
|
|
5864
6884
|
decision: z.ZodEnum<{
|
|
6885
|
+
REJECTED: "REJECTED";
|
|
5865
6886
|
READY: "READY";
|
|
5866
6887
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5867
|
-
REJECTED: "REJECTED";
|
|
5868
6888
|
}>;
|
|
5869
6889
|
decisionReason: z.ZodString;
|
|
5870
6890
|
searchIntent: z.ZodEnum<{
|
|
@@ -5922,9 +6942,9 @@ declare const SeoReportSchema: z.ZodObject<{
|
|
|
5922
6942
|
legacy: z.ZodBoolean;
|
|
5923
6943
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
5924
6944
|
decision: z.ZodEnum<{
|
|
6945
|
+
REJECTED: "REJECTED";
|
|
5925
6946
|
READY: "READY";
|
|
5926
6947
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
5927
|
-
REJECTED: "REJECTED";
|
|
5928
6948
|
}>;
|
|
5929
6949
|
decisionReason: z.ZodString;
|
|
5930
6950
|
objective: z.ZodString;
|
|
@@ -6227,9 +7247,9 @@ declare const SeoReportResponseSchema: z.ZodObject<{
|
|
|
6227
7247
|
actionPlan: z.ZodObject<{
|
|
6228
7248
|
version: z.ZodNumber;
|
|
6229
7249
|
decision: z.ZodEnum<{
|
|
7250
|
+
REJECTED: "REJECTED";
|
|
6230
7251
|
READY: "READY";
|
|
6231
7252
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
6232
|
-
REJECTED: "REJECTED";
|
|
6233
7253
|
}>;
|
|
6234
7254
|
decisionReason: z.ZodString;
|
|
6235
7255
|
searchIntent: z.ZodEnum<{
|
|
@@ -6287,9 +7307,9 @@ declare const SeoReportResponseSchema: z.ZodObject<{
|
|
|
6287
7307
|
legacy: z.ZodBoolean;
|
|
6288
7308
|
legacyLabel: z.ZodNullable<z.ZodString>;
|
|
6289
7309
|
decision: z.ZodEnum<{
|
|
7310
|
+
REJECTED: "REJECTED";
|
|
6290
7311
|
READY: "READY";
|
|
6291
7312
|
NEEDS_REVIEW: "NEEDS_REVIEW";
|
|
6292
|
-
REJECTED: "REJECTED";
|
|
6293
7313
|
}>;
|
|
6294
7314
|
decisionReason: z.ZodString;
|
|
6295
7315
|
objective: z.ZodString;
|
|
@@ -6451,4 +7471,4 @@ declare const SeoReportResponseSchema: z.ZodObject<{
|
|
|
6451
7471
|
}, z.core.$strip>;
|
|
6452
7472
|
}, z.core.$strip>;
|
|
6453
7473
|
|
|
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,
|
|
7474
|
+
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, type AgentBlogPlanCadenceExecute, AgentBlogPlanCadenceExecuteRequestSchema, AgentBlogPlanCadenceExecuteResponseSchema, AgentBlogPlanCadenceExecuteSchema, type AgentBlogPlanCadencePreview, AgentBlogPlanCadencePreviewRequestSchema, AgentBlogPlanCadencePreviewResponseSchema, AgentBlogPlanCadencePreviewSchema, AgentBlogPlanCreateRequestSchema, type AgentBlogPlanDateMove, AgentBlogPlanDateMoveSchema, type AgentBlogPlanItem, AgentBlogPlanItemResponseSchema, AgentBlogPlanItemSchema, AgentBlogPlanItemStateRequestSchema, AgentBlogPlanItemsResponseSchema, AgentBlogPlanListResponseSchema, AgentBlogPlanLockedItemSchema, 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 AgentBlogWebhookDestinationChange, AgentBlogWebhookDestinationChangeSchema, type AgentBlogWebhookDestinationExecute, AgentBlogWebhookDestinationExecuteRequestSchema, AgentBlogWebhookDestinationExecuteResponseSchema, AgentBlogWebhookDestinationExecuteSchema, AgentBlogWebhookDestinationPreviewRequestSchema, AgentBlogWebhookDestinationPreviewResponseSchema, AgentBlogWebhookDestinationPreviewSchema, type AgentBlogWebhookRotateExecute, AgentBlogWebhookRotateExecuteRequestSchema, AgentBlogWebhookRotateExecuteResponseSchema, AgentBlogWebhookRotateExecuteSchema, AgentBlogWebhookRotatePreviewRequestSchema, AgentBlogWebhookRotatePreviewResponseSchema, AgentBlogWebhookRotatePreviewSchema, AgentBlogWebhookSemanticsSchema, type AgentBlogWebhookTest, AgentBlogWebhookTestRequestSchema, AgentBlogWebhookTestResponseSchema, AgentBlogWebhookTestSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, BlogArticleListSchema, BlogImageSchema, BlogMetadataSchema, BlogSitemapEntrySchema, BlogSlugRedirectSchema, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, 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 };
|