@rolino/contracts 0.8.0 → 0.9.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 +7 -0
- package/dist/index.cjs +77 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +199 -4
- package/dist/index.d.ts +199 -4
- package/dist/index.js +68 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.20.0";
|
|
5
5
|
declare const RequestMetadataSchema: z.ZodObject<{
|
|
6
6
|
requestId: z.ZodString;
|
|
7
7
|
}, z.core.$strip>;
|
|
@@ -2504,7 +2504,7 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
2504
2504
|
name: z.ZodLiteral<"Rolino">;
|
|
2505
2505
|
serverVersion: z.ZodString;
|
|
2506
2506
|
apiVersion: z.ZodLiteral<"v1">;
|
|
2507
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2507
|
+
contractVersion: z.ZodLiteral<"0.20.0">;
|
|
2508
2508
|
authentication: z.ZodObject<{
|
|
2509
2509
|
browserSession: z.ZodBoolean;
|
|
2510
2510
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -2557,7 +2557,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
2557
2557
|
name: z.ZodLiteral<"Rolino">;
|
|
2558
2558
|
serverVersion: z.ZodString;
|
|
2559
2559
|
apiVersion: z.ZodLiteral<"v1">;
|
|
2560
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2560
|
+
contractVersion: z.ZodLiteral<"0.20.0">;
|
|
2561
2561
|
authentication: z.ZodObject<{
|
|
2562
2562
|
browserSession: z.ZodBoolean;
|
|
2563
2563
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -3798,6 +3798,9 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
3798
3798
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
3799
3799
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
3800
3800
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
3801
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3802
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3803
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3801
3804
|
attemptCount: z.ZodNumber;
|
|
3802
3805
|
}, z.core.$strip>;
|
|
3803
3806
|
type PostDestination = z.infer<typeof PostDestinationSchema>;
|
|
@@ -3986,6 +3989,9 @@ declare const PostSchema: z.ZodObject<{
|
|
|
3986
3989
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
3987
3990
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
3988
3991
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
3992
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3993
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3994
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3989
3995
|
attemptCount: z.ZodNumber;
|
|
3990
3996
|
}, z.core.$strip>>;
|
|
3991
3997
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4114,6 +4120,9 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
4114
4120
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4115
4121
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4116
4122
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4123
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4124
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4125
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4117
4126
|
attemptCount: z.ZodNumber;
|
|
4118
4127
|
}, z.core.$strip>>;
|
|
4119
4128
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4234,6 +4243,9 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
4234
4243
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4235
4244
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4236
4245
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4246
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4247
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4248
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4237
4249
|
attemptCount: z.ZodNumber;
|
|
4238
4250
|
}, z.core.$strip>>;
|
|
4239
4251
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4357,6 +4369,9 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
4357
4369
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4358
4370
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4359
4371
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4372
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4373
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4374
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4360
4375
|
attemptCount: z.ZodNumber;
|
|
4361
4376
|
}, z.core.$strip>>;
|
|
4362
4377
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -5537,6 +5552,9 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
5537
5552
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
5538
5553
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
5539
5554
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
5555
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5556
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5557
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5540
5558
|
attemptCount: z.ZodNumber;
|
|
5541
5559
|
}, z.core.$strip>>;
|
|
5542
5560
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -5663,6 +5681,9 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5663
5681
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
5664
5682
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
5665
5683
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
5684
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5685
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5686
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5666
5687
|
attemptCount: z.ZodNumber;
|
|
5667
5688
|
}, z.core.$strip>>;
|
|
5668
5689
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -9269,5 +9290,179 @@ declare const BacklinkContactListResponseSchema: z.ZodObject<{
|
|
|
9269
9290
|
requestId: z.ZodString;
|
|
9270
9291
|
}, z.core.$strip>;
|
|
9271
9292
|
}, z.core.$strip>;
|
|
9293
|
+
declare const PostDeliveryCheckInputSchema: z.ZodObject<{
|
|
9294
|
+
provider: z.ZodEnum<{
|
|
9295
|
+
INSTAGRAM: "INSTAGRAM";
|
|
9296
|
+
TIKTOK: "TIKTOK";
|
|
9297
|
+
YOUTUBE: "YOUTUBE";
|
|
9298
|
+
BLUESKY: "BLUESKY";
|
|
9299
|
+
LINKEDIN: "LINKEDIN";
|
|
9300
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
9301
|
+
}>;
|
|
9302
|
+
}, z.core.$strict>;
|
|
9303
|
+
type PostDeliveryCheckInput = z.infer<typeof PostDeliveryCheckInputSchema>;
|
|
9304
|
+
declare const PostDeliveryCheckResultSchema: z.ZodObject<{
|
|
9305
|
+
postId: z.ZodString;
|
|
9306
|
+
provider: z.ZodEnum<{
|
|
9307
|
+
INSTAGRAM: "INSTAGRAM";
|
|
9308
|
+
TIKTOK: "TIKTOK";
|
|
9309
|
+
YOUTUBE: "YOUTUBE";
|
|
9310
|
+
BLUESKY: "BLUESKY";
|
|
9311
|
+
LINKEDIN: "LINKEDIN";
|
|
9312
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
9313
|
+
}>;
|
|
9314
|
+
kind: z.ZodEnum<{
|
|
9315
|
+
SCHEDULED: "SCHEDULED";
|
|
9316
|
+
PUBLISHED: "PUBLISHED";
|
|
9317
|
+
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
9318
|
+
PROCESSING: "PROCESSING";
|
|
9319
|
+
UNKNOWN: "UNKNOWN";
|
|
9320
|
+
BUSY: "BUSY";
|
|
9321
|
+
}>;
|
|
9322
|
+
message: z.ZodString;
|
|
9323
|
+
version: z.ZodNumber;
|
|
9324
|
+
remotePostId: z.ZodNullable<z.ZodString>;
|
|
9325
|
+
remoteContainerId: z.ZodNullable<z.ZodString>;
|
|
9326
|
+
studioUrl: z.ZodNullable<z.ZodString>;
|
|
9327
|
+
}, z.core.$strip>;
|
|
9328
|
+
type PostDeliveryCheckResult = z.infer<typeof PostDeliveryCheckResultSchema>;
|
|
9329
|
+
declare const PostDeliveryCheckResponseSchema: z.ZodObject<{
|
|
9330
|
+
data: z.ZodObject<{
|
|
9331
|
+
postId: z.ZodString;
|
|
9332
|
+
provider: z.ZodEnum<{
|
|
9333
|
+
INSTAGRAM: "INSTAGRAM";
|
|
9334
|
+
TIKTOK: "TIKTOK";
|
|
9335
|
+
YOUTUBE: "YOUTUBE";
|
|
9336
|
+
BLUESKY: "BLUESKY";
|
|
9337
|
+
LINKEDIN: "LINKEDIN";
|
|
9338
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
9339
|
+
}>;
|
|
9340
|
+
kind: z.ZodEnum<{
|
|
9341
|
+
SCHEDULED: "SCHEDULED";
|
|
9342
|
+
PUBLISHED: "PUBLISHED";
|
|
9343
|
+
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
9344
|
+
PROCESSING: "PROCESSING";
|
|
9345
|
+
UNKNOWN: "UNKNOWN";
|
|
9346
|
+
BUSY: "BUSY";
|
|
9347
|
+
}>;
|
|
9348
|
+
message: z.ZodString;
|
|
9349
|
+
version: z.ZodNumber;
|
|
9350
|
+
remotePostId: z.ZodNullable<z.ZodString>;
|
|
9351
|
+
remoteContainerId: z.ZodNullable<z.ZodString>;
|
|
9352
|
+
studioUrl: z.ZodNullable<z.ZodString>;
|
|
9353
|
+
}, z.core.$strip>;
|
|
9354
|
+
meta: z.ZodObject<{
|
|
9355
|
+
requestId: z.ZodString;
|
|
9356
|
+
}, z.core.$strip>;
|
|
9357
|
+
}, z.core.$strip>;
|
|
9358
|
+
declare const PostRecoveryInputSchema: z.ZodObject<{
|
|
9359
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9360
|
+
action: z.ZodEnum<{
|
|
9361
|
+
ATTACH: "ATTACH";
|
|
9362
|
+
RESUME: "RESUME";
|
|
9363
|
+
}>;
|
|
9364
|
+
videoId: z.ZodString;
|
|
9365
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9366
|
+
}, z.core.$strict>;
|
|
9367
|
+
type PostRecoveryInput = z.infer<typeof PostRecoveryInputSchema>;
|
|
9368
|
+
declare const PostRecoveryExecuteInputSchema: z.ZodObject<{
|
|
9369
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9370
|
+
action: z.ZodEnum<{
|
|
9371
|
+
ATTACH: "ATTACH";
|
|
9372
|
+
RESUME: "RESUME";
|
|
9373
|
+
}>;
|
|
9374
|
+
videoId: z.ZodString;
|
|
9375
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9376
|
+
confirmationToken: z.ZodString;
|
|
9377
|
+
}, z.core.$strict>;
|
|
9378
|
+
type PostRecoveryExecuteInput = z.infer<typeof PostRecoveryExecuteInputSchema>;
|
|
9379
|
+
declare const PostRecoveryPreviewSchema: z.ZodObject<{
|
|
9380
|
+
operation: z.ZodLiteral<"posts.recovery.execute">;
|
|
9381
|
+
projectId: z.ZodString;
|
|
9382
|
+
postId: z.ZodString;
|
|
9383
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9384
|
+
action: z.ZodEnum<{
|
|
9385
|
+
ATTACH: "ATTACH";
|
|
9386
|
+
RESUME: "RESUME";
|
|
9387
|
+
}>;
|
|
9388
|
+
videoId: z.ZodString;
|
|
9389
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9390
|
+
version: z.ZodNumber;
|
|
9391
|
+
title: z.ZodString;
|
|
9392
|
+
description: z.ZodString;
|
|
9393
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
9394
|
+
accountId: z.ZodString;
|
|
9395
|
+
privacy: z.ZodString;
|
|
9396
|
+
consequence: z.ZodString;
|
|
9397
|
+
confirmation: z.ZodObject<{
|
|
9398
|
+
token: z.ZodString;
|
|
9399
|
+
expiresAt: z.ZodString;
|
|
9400
|
+
}, z.core.$strip>;
|
|
9401
|
+
}, z.core.$strip>;
|
|
9402
|
+
type PostRecoveryPreview = z.infer<typeof PostRecoveryPreviewSchema>;
|
|
9403
|
+
declare const PostRecoveryPreviewResponseSchema: z.ZodObject<{
|
|
9404
|
+
data: z.ZodObject<{
|
|
9405
|
+
operation: z.ZodLiteral<"posts.recovery.execute">;
|
|
9406
|
+
projectId: z.ZodString;
|
|
9407
|
+
postId: z.ZodString;
|
|
9408
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9409
|
+
action: z.ZodEnum<{
|
|
9410
|
+
ATTACH: "ATTACH";
|
|
9411
|
+
RESUME: "RESUME";
|
|
9412
|
+
}>;
|
|
9413
|
+
videoId: z.ZodString;
|
|
9414
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9415
|
+
version: z.ZodNumber;
|
|
9416
|
+
title: z.ZodString;
|
|
9417
|
+
description: z.ZodString;
|
|
9418
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
9419
|
+
accountId: z.ZodString;
|
|
9420
|
+
privacy: z.ZodString;
|
|
9421
|
+
consequence: z.ZodString;
|
|
9422
|
+
confirmation: z.ZodObject<{
|
|
9423
|
+
token: z.ZodString;
|
|
9424
|
+
expiresAt: z.ZodString;
|
|
9425
|
+
}, z.core.$strip>;
|
|
9426
|
+
}, z.core.$strip>;
|
|
9427
|
+
meta: z.ZodObject<{
|
|
9428
|
+
requestId: z.ZodString;
|
|
9429
|
+
}, z.core.$strip>;
|
|
9430
|
+
}, z.core.$strip>;
|
|
9431
|
+
declare const PostRecoveryResultSchema: z.ZodObject<{
|
|
9432
|
+
postId: z.ZodString;
|
|
9433
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9434
|
+
action: z.ZodEnum<{
|
|
9435
|
+
ATTACH: "ATTACH";
|
|
9436
|
+
RESUME: "RESUME";
|
|
9437
|
+
}>;
|
|
9438
|
+
videoId: z.ZodString;
|
|
9439
|
+
kind: z.ZodEnum<{
|
|
9440
|
+
QUEUED: "QUEUED";
|
|
9441
|
+
PUBLISHED: "PUBLISHED";
|
|
9442
|
+
ATTACHED: "ATTACHED";
|
|
9443
|
+
}>;
|
|
9444
|
+
version: z.ZodNumber;
|
|
9445
|
+
}, z.core.$strip>;
|
|
9446
|
+
type PostRecoveryResult = z.infer<typeof PostRecoveryResultSchema>;
|
|
9447
|
+
declare const PostRecoveryResponseSchema: z.ZodObject<{
|
|
9448
|
+
data: z.ZodObject<{
|
|
9449
|
+
postId: z.ZodString;
|
|
9450
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9451
|
+
action: z.ZodEnum<{
|
|
9452
|
+
ATTACH: "ATTACH";
|
|
9453
|
+
RESUME: "RESUME";
|
|
9454
|
+
}>;
|
|
9455
|
+
videoId: z.ZodString;
|
|
9456
|
+
kind: z.ZodEnum<{
|
|
9457
|
+
QUEUED: "QUEUED";
|
|
9458
|
+
PUBLISHED: "PUBLISHED";
|
|
9459
|
+
ATTACHED: "ATTACHED";
|
|
9460
|
+
}>;
|
|
9461
|
+
version: z.ZodNumber;
|
|
9462
|
+
}, z.core.$strip>;
|
|
9463
|
+
meta: z.ZodObject<{
|
|
9464
|
+
requestId: z.ZodString;
|
|
9465
|
+
}, z.core.$strip>;
|
|
9466
|
+
}, z.core.$strip>;
|
|
9272
9467
|
|
|
9273
|
-
export { AGENT_CAPABILITIES, API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQualitySummarySchema, 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, AgentBlogMetricSourceSchema, AgentBlogPerformanceObservationSchema, 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, type BacklinkContact, BacklinkContactListDataSchema, BacklinkContactListQuerySchema, BacklinkContactListResponseSchema, BacklinkContactSchema, BacklinkContactStateSchema, BacklinkDiscoveryInputSchema, type BacklinkDiscoveryRun, BacklinkDiscoveryRunResponseSchema, BacklinkDiscoveryRunSchema, BacklinkNextActionSchema, BacklinkOpportunityTypeSchema, BacklinkOutreachDraftResponseSchema, BacklinkOutreachDraftSchema, BacklinkOutreachUpdateInputSchema, type BacklinkProspect, BacklinkProspectListDataSchema, BacklinkProspectListQuerySchema, BacklinkProspectListResponseSchema, BacklinkProspectResponseSchema, BacklinkProspectSchema, BacklinkProspectStageSchema, BacklinkQueueResponseSchema, BacklinkScoreComponentsSchema, BacklinkStageUpdateInputSchema, type BacklinkTarget, BacklinkTargetInputSchema, BacklinkTargetListResponseSchema, BacklinkTargetResponseSchema, BacklinkTargetSchema, BacklinkVerificationInputSchema, BacklinkVerificationResponseSchema, BacklinkVerificationSchema, BacklinkVerificationStateSchema, 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 ListedMediaAsset, ListedMediaAssetSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, MediaCleanupCandidateSchema, type MediaCleanupExecuteRequest, MediaCleanupExecuteRequestSchema, MediaCleanupExecuteResponseSchema, type MediaCleanupExecuteResult, MediaCleanupExecuteResultSchema, MediaCleanupItemResultSchema, MediaCleanupItemStatusSchema, MediaCleanupOperationStatusSchema, type MediaCleanupPreview, type MediaCleanupPreviewRequest, MediaCleanupPreviewRequestSchema, MediaCleanupPreviewResponseSchema, MediaCleanupPreviewSchema, type MediaCleanupScope, MediaCleanupScopeSchema, type MediaCleanupSelectionInput, MediaCleanupSelectionInputSchema, type MediaCleanupStatus, MediaCleanupStatusQuerySchema, MediaCleanupStatusResponseSchema, MediaCleanupStatusSchema, type NormalizedMediaCleanupSelection, NormalizedMediaCleanupSelectionSchema, 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, StorageByteCountSchema, type StorageSourceBreakdown, StorageSourceBreakdownSchema, type StorageUsage, StorageUsageResponseSchema, StorageUsageSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type WorkspaceListedMediaAsset, WorkspaceListedMediaAssetSchema, type WorkspaceMediaAssetListData, WorkspaceMediaAssetListDataSchema, type WorkspaceMediaAssetListQuery, WorkspaceMediaAssetListQuerySchema, WorkspaceMediaAssetListResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|
|
9468
|
+
export { AGENT_CAPABILITIES, API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQualitySummarySchema, 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, AgentBlogMetricSourceSchema, AgentBlogPerformanceObservationSchema, 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, type BacklinkContact, BacklinkContactListDataSchema, BacklinkContactListQuerySchema, BacklinkContactListResponseSchema, BacklinkContactSchema, BacklinkContactStateSchema, BacklinkDiscoveryInputSchema, type BacklinkDiscoveryRun, BacklinkDiscoveryRunResponseSchema, BacklinkDiscoveryRunSchema, BacklinkNextActionSchema, BacklinkOpportunityTypeSchema, BacklinkOutreachDraftResponseSchema, BacklinkOutreachDraftSchema, BacklinkOutreachUpdateInputSchema, type BacklinkProspect, BacklinkProspectListDataSchema, BacklinkProspectListQuerySchema, BacklinkProspectListResponseSchema, BacklinkProspectResponseSchema, BacklinkProspectSchema, BacklinkProspectStageSchema, BacklinkQueueResponseSchema, BacklinkScoreComponentsSchema, BacklinkStageUpdateInputSchema, type BacklinkTarget, BacklinkTargetInputSchema, BacklinkTargetListResponseSchema, BacklinkTargetResponseSchema, BacklinkTargetSchema, BacklinkVerificationInputSchema, BacklinkVerificationResponseSchema, BacklinkVerificationSchema, BacklinkVerificationStateSchema, 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 ListedMediaAsset, ListedMediaAssetSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, MediaCleanupCandidateSchema, type MediaCleanupExecuteRequest, MediaCleanupExecuteRequestSchema, MediaCleanupExecuteResponseSchema, type MediaCleanupExecuteResult, MediaCleanupExecuteResultSchema, MediaCleanupItemResultSchema, MediaCleanupItemStatusSchema, MediaCleanupOperationStatusSchema, type MediaCleanupPreview, type MediaCleanupPreviewRequest, MediaCleanupPreviewRequestSchema, MediaCleanupPreviewResponseSchema, MediaCleanupPreviewSchema, type MediaCleanupScope, MediaCleanupScopeSchema, type MediaCleanupSelectionInput, MediaCleanupSelectionInputSchema, type MediaCleanupStatus, MediaCleanupStatusQuerySchema, MediaCleanupStatusResponseSchema, MediaCleanupStatusSchema, type NormalizedMediaCleanupSelection, NormalizedMediaCleanupSelectionSchema, PUBLISHING_PROVIDER_COUNT, PlatformPostStatusSchema, type Post, type PostDeliveryCheckInput, PostDeliveryCheckInputSchema, PostDeliveryCheckResponseSchema, type PostDeliveryCheckResult, PostDeliveryCheckResultSchema, 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 PostRecoveryExecuteInput, PostRecoveryExecuteInputSchema, type PostRecoveryInput, PostRecoveryInputSchema, type PostRecoveryPreview, PostRecoveryPreviewResponseSchema, PostRecoveryPreviewSchema, PostRecoveryResponseSchema, type PostRecoveryResult, PostRecoveryResultSchema, 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, StorageByteCountSchema, type StorageSourceBreakdown, StorageSourceBreakdownSchema, type StorageUsage, StorageUsageResponseSchema, StorageUsageSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type WorkspaceListedMediaAsset, WorkspaceListedMediaAssetSchema, type WorkspaceMediaAssetListData, WorkspaceMediaAssetListDataSchema, type WorkspaceMediaAssetListQuery, WorkspaceMediaAssetListQuerySchema, WorkspaceMediaAssetListResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.20.0";
|
|
5
5
|
declare const RequestMetadataSchema: z.ZodObject<{
|
|
6
6
|
requestId: z.ZodString;
|
|
7
7
|
}, z.core.$strip>;
|
|
@@ -2504,7 +2504,7 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
2504
2504
|
name: z.ZodLiteral<"Rolino">;
|
|
2505
2505
|
serverVersion: z.ZodString;
|
|
2506
2506
|
apiVersion: z.ZodLiteral<"v1">;
|
|
2507
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2507
|
+
contractVersion: z.ZodLiteral<"0.20.0">;
|
|
2508
2508
|
authentication: z.ZodObject<{
|
|
2509
2509
|
browserSession: z.ZodBoolean;
|
|
2510
2510
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -2557,7 +2557,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
2557
2557
|
name: z.ZodLiteral<"Rolino">;
|
|
2558
2558
|
serverVersion: z.ZodString;
|
|
2559
2559
|
apiVersion: z.ZodLiteral<"v1">;
|
|
2560
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2560
|
+
contractVersion: z.ZodLiteral<"0.20.0">;
|
|
2561
2561
|
authentication: z.ZodObject<{
|
|
2562
2562
|
browserSession: z.ZodBoolean;
|
|
2563
2563
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -3798,6 +3798,9 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
3798
3798
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
3799
3799
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
3800
3800
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
3801
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3802
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3803
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3801
3804
|
attemptCount: z.ZodNumber;
|
|
3802
3805
|
}, z.core.$strip>;
|
|
3803
3806
|
type PostDestination = z.infer<typeof PostDestinationSchema>;
|
|
@@ -3986,6 +3989,9 @@ declare const PostSchema: z.ZodObject<{
|
|
|
3986
3989
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
3987
3990
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
3988
3991
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
3992
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3993
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3994
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3989
3995
|
attemptCount: z.ZodNumber;
|
|
3990
3996
|
}, z.core.$strip>>;
|
|
3991
3997
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4114,6 +4120,9 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
4114
4120
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4115
4121
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4116
4122
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4123
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4124
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4125
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4117
4126
|
attemptCount: z.ZodNumber;
|
|
4118
4127
|
}, z.core.$strip>>;
|
|
4119
4128
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4234,6 +4243,9 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
4234
4243
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4235
4244
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4236
4245
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4246
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4247
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4248
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4237
4249
|
attemptCount: z.ZodNumber;
|
|
4238
4250
|
}, z.core.$strip>>;
|
|
4239
4251
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4357,6 +4369,9 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
4357
4369
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4358
4370
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4359
4371
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4372
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4373
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4374
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4360
4375
|
attemptCount: z.ZodNumber;
|
|
4361
4376
|
}, z.core.$strip>>;
|
|
4362
4377
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -5537,6 +5552,9 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
5537
5552
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
5538
5553
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
5539
5554
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
5555
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5556
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5557
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5540
5558
|
attemptCount: z.ZodNumber;
|
|
5541
5559
|
}, z.core.$strip>>;
|
|
5542
5560
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -5663,6 +5681,9 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5663
5681
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
5664
5682
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
5665
5683
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
5684
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5685
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5686
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5666
5687
|
attemptCount: z.ZodNumber;
|
|
5667
5688
|
}, z.core.$strip>>;
|
|
5668
5689
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -9269,5 +9290,179 @@ declare const BacklinkContactListResponseSchema: z.ZodObject<{
|
|
|
9269
9290
|
requestId: z.ZodString;
|
|
9270
9291
|
}, z.core.$strip>;
|
|
9271
9292
|
}, z.core.$strip>;
|
|
9293
|
+
declare const PostDeliveryCheckInputSchema: z.ZodObject<{
|
|
9294
|
+
provider: z.ZodEnum<{
|
|
9295
|
+
INSTAGRAM: "INSTAGRAM";
|
|
9296
|
+
TIKTOK: "TIKTOK";
|
|
9297
|
+
YOUTUBE: "YOUTUBE";
|
|
9298
|
+
BLUESKY: "BLUESKY";
|
|
9299
|
+
LINKEDIN: "LINKEDIN";
|
|
9300
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
9301
|
+
}>;
|
|
9302
|
+
}, z.core.$strict>;
|
|
9303
|
+
type PostDeliveryCheckInput = z.infer<typeof PostDeliveryCheckInputSchema>;
|
|
9304
|
+
declare const PostDeliveryCheckResultSchema: z.ZodObject<{
|
|
9305
|
+
postId: z.ZodString;
|
|
9306
|
+
provider: z.ZodEnum<{
|
|
9307
|
+
INSTAGRAM: "INSTAGRAM";
|
|
9308
|
+
TIKTOK: "TIKTOK";
|
|
9309
|
+
YOUTUBE: "YOUTUBE";
|
|
9310
|
+
BLUESKY: "BLUESKY";
|
|
9311
|
+
LINKEDIN: "LINKEDIN";
|
|
9312
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
9313
|
+
}>;
|
|
9314
|
+
kind: z.ZodEnum<{
|
|
9315
|
+
SCHEDULED: "SCHEDULED";
|
|
9316
|
+
PUBLISHED: "PUBLISHED";
|
|
9317
|
+
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
9318
|
+
PROCESSING: "PROCESSING";
|
|
9319
|
+
UNKNOWN: "UNKNOWN";
|
|
9320
|
+
BUSY: "BUSY";
|
|
9321
|
+
}>;
|
|
9322
|
+
message: z.ZodString;
|
|
9323
|
+
version: z.ZodNumber;
|
|
9324
|
+
remotePostId: z.ZodNullable<z.ZodString>;
|
|
9325
|
+
remoteContainerId: z.ZodNullable<z.ZodString>;
|
|
9326
|
+
studioUrl: z.ZodNullable<z.ZodString>;
|
|
9327
|
+
}, z.core.$strip>;
|
|
9328
|
+
type PostDeliveryCheckResult = z.infer<typeof PostDeliveryCheckResultSchema>;
|
|
9329
|
+
declare const PostDeliveryCheckResponseSchema: z.ZodObject<{
|
|
9330
|
+
data: z.ZodObject<{
|
|
9331
|
+
postId: z.ZodString;
|
|
9332
|
+
provider: z.ZodEnum<{
|
|
9333
|
+
INSTAGRAM: "INSTAGRAM";
|
|
9334
|
+
TIKTOK: "TIKTOK";
|
|
9335
|
+
YOUTUBE: "YOUTUBE";
|
|
9336
|
+
BLUESKY: "BLUESKY";
|
|
9337
|
+
LINKEDIN: "LINKEDIN";
|
|
9338
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
9339
|
+
}>;
|
|
9340
|
+
kind: z.ZodEnum<{
|
|
9341
|
+
SCHEDULED: "SCHEDULED";
|
|
9342
|
+
PUBLISHED: "PUBLISHED";
|
|
9343
|
+
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
9344
|
+
PROCESSING: "PROCESSING";
|
|
9345
|
+
UNKNOWN: "UNKNOWN";
|
|
9346
|
+
BUSY: "BUSY";
|
|
9347
|
+
}>;
|
|
9348
|
+
message: z.ZodString;
|
|
9349
|
+
version: z.ZodNumber;
|
|
9350
|
+
remotePostId: z.ZodNullable<z.ZodString>;
|
|
9351
|
+
remoteContainerId: z.ZodNullable<z.ZodString>;
|
|
9352
|
+
studioUrl: z.ZodNullable<z.ZodString>;
|
|
9353
|
+
}, z.core.$strip>;
|
|
9354
|
+
meta: z.ZodObject<{
|
|
9355
|
+
requestId: z.ZodString;
|
|
9356
|
+
}, z.core.$strip>;
|
|
9357
|
+
}, z.core.$strip>;
|
|
9358
|
+
declare const PostRecoveryInputSchema: z.ZodObject<{
|
|
9359
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9360
|
+
action: z.ZodEnum<{
|
|
9361
|
+
ATTACH: "ATTACH";
|
|
9362
|
+
RESUME: "RESUME";
|
|
9363
|
+
}>;
|
|
9364
|
+
videoId: z.ZodString;
|
|
9365
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9366
|
+
}, z.core.$strict>;
|
|
9367
|
+
type PostRecoveryInput = z.infer<typeof PostRecoveryInputSchema>;
|
|
9368
|
+
declare const PostRecoveryExecuteInputSchema: z.ZodObject<{
|
|
9369
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9370
|
+
action: z.ZodEnum<{
|
|
9371
|
+
ATTACH: "ATTACH";
|
|
9372
|
+
RESUME: "RESUME";
|
|
9373
|
+
}>;
|
|
9374
|
+
videoId: z.ZodString;
|
|
9375
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9376
|
+
confirmationToken: z.ZodString;
|
|
9377
|
+
}, z.core.$strict>;
|
|
9378
|
+
type PostRecoveryExecuteInput = z.infer<typeof PostRecoveryExecuteInputSchema>;
|
|
9379
|
+
declare const PostRecoveryPreviewSchema: z.ZodObject<{
|
|
9380
|
+
operation: z.ZodLiteral<"posts.recovery.execute">;
|
|
9381
|
+
projectId: z.ZodString;
|
|
9382
|
+
postId: z.ZodString;
|
|
9383
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9384
|
+
action: z.ZodEnum<{
|
|
9385
|
+
ATTACH: "ATTACH";
|
|
9386
|
+
RESUME: "RESUME";
|
|
9387
|
+
}>;
|
|
9388
|
+
videoId: z.ZodString;
|
|
9389
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9390
|
+
version: z.ZodNumber;
|
|
9391
|
+
title: z.ZodString;
|
|
9392
|
+
description: z.ZodString;
|
|
9393
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
9394
|
+
accountId: z.ZodString;
|
|
9395
|
+
privacy: z.ZodString;
|
|
9396
|
+
consequence: z.ZodString;
|
|
9397
|
+
confirmation: z.ZodObject<{
|
|
9398
|
+
token: z.ZodString;
|
|
9399
|
+
expiresAt: z.ZodString;
|
|
9400
|
+
}, z.core.$strip>;
|
|
9401
|
+
}, z.core.$strip>;
|
|
9402
|
+
type PostRecoveryPreview = z.infer<typeof PostRecoveryPreviewSchema>;
|
|
9403
|
+
declare const PostRecoveryPreviewResponseSchema: z.ZodObject<{
|
|
9404
|
+
data: z.ZodObject<{
|
|
9405
|
+
operation: z.ZodLiteral<"posts.recovery.execute">;
|
|
9406
|
+
projectId: z.ZodString;
|
|
9407
|
+
postId: z.ZodString;
|
|
9408
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9409
|
+
action: z.ZodEnum<{
|
|
9410
|
+
ATTACH: "ATTACH";
|
|
9411
|
+
RESUME: "RESUME";
|
|
9412
|
+
}>;
|
|
9413
|
+
videoId: z.ZodString;
|
|
9414
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9415
|
+
version: z.ZodNumber;
|
|
9416
|
+
title: z.ZodString;
|
|
9417
|
+
description: z.ZodString;
|
|
9418
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
9419
|
+
accountId: z.ZodString;
|
|
9420
|
+
privacy: z.ZodString;
|
|
9421
|
+
consequence: z.ZodString;
|
|
9422
|
+
confirmation: z.ZodObject<{
|
|
9423
|
+
token: z.ZodString;
|
|
9424
|
+
expiresAt: z.ZodString;
|
|
9425
|
+
}, z.core.$strip>;
|
|
9426
|
+
}, z.core.$strip>;
|
|
9427
|
+
meta: z.ZodObject<{
|
|
9428
|
+
requestId: z.ZodString;
|
|
9429
|
+
}, z.core.$strip>;
|
|
9430
|
+
}, z.core.$strip>;
|
|
9431
|
+
declare const PostRecoveryResultSchema: z.ZodObject<{
|
|
9432
|
+
postId: z.ZodString;
|
|
9433
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9434
|
+
action: z.ZodEnum<{
|
|
9435
|
+
ATTACH: "ATTACH";
|
|
9436
|
+
RESUME: "RESUME";
|
|
9437
|
+
}>;
|
|
9438
|
+
videoId: z.ZodString;
|
|
9439
|
+
kind: z.ZodEnum<{
|
|
9440
|
+
QUEUED: "QUEUED";
|
|
9441
|
+
PUBLISHED: "PUBLISHED";
|
|
9442
|
+
ATTACHED: "ATTACHED";
|
|
9443
|
+
}>;
|
|
9444
|
+
version: z.ZodNumber;
|
|
9445
|
+
}, z.core.$strip>;
|
|
9446
|
+
type PostRecoveryResult = z.infer<typeof PostRecoveryResultSchema>;
|
|
9447
|
+
declare const PostRecoveryResponseSchema: z.ZodObject<{
|
|
9448
|
+
data: z.ZodObject<{
|
|
9449
|
+
postId: z.ZodString;
|
|
9450
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9451
|
+
action: z.ZodEnum<{
|
|
9452
|
+
ATTACH: "ATTACH";
|
|
9453
|
+
RESUME: "RESUME";
|
|
9454
|
+
}>;
|
|
9455
|
+
videoId: z.ZodString;
|
|
9456
|
+
kind: z.ZodEnum<{
|
|
9457
|
+
QUEUED: "QUEUED";
|
|
9458
|
+
PUBLISHED: "PUBLISHED";
|
|
9459
|
+
ATTACHED: "ATTACHED";
|
|
9460
|
+
}>;
|
|
9461
|
+
version: z.ZodNumber;
|
|
9462
|
+
}, z.core.$strip>;
|
|
9463
|
+
meta: z.ZodObject<{
|
|
9464
|
+
requestId: z.ZodString;
|
|
9465
|
+
}, z.core.$strip>;
|
|
9466
|
+
}, z.core.$strip>;
|
|
9272
9467
|
|
|
9273
|
-
export { AGENT_CAPABILITIES, API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQualitySummarySchema, 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, AgentBlogMetricSourceSchema, AgentBlogPerformanceObservationSchema, 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, type BacklinkContact, BacklinkContactListDataSchema, BacklinkContactListQuerySchema, BacklinkContactListResponseSchema, BacklinkContactSchema, BacklinkContactStateSchema, BacklinkDiscoveryInputSchema, type BacklinkDiscoveryRun, BacklinkDiscoveryRunResponseSchema, BacklinkDiscoveryRunSchema, BacklinkNextActionSchema, BacklinkOpportunityTypeSchema, BacklinkOutreachDraftResponseSchema, BacklinkOutreachDraftSchema, BacklinkOutreachUpdateInputSchema, type BacklinkProspect, BacklinkProspectListDataSchema, BacklinkProspectListQuerySchema, BacklinkProspectListResponseSchema, BacklinkProspectResponseSchema, BacklinkProspectSchema, BacklinkProspectStageSchema, BacklinkQueueResponseSchema, BacklinkScoreComponentsSchema, BacklinkStageUpdateInputSchema, type BacklinkTarget, BacklinkTargetInputSchema, BacklinkTargetListResponseSchema, BacklinkTargetResponseSchema, BacklinkTargetSchema, BacklinkVerificationInputSchema, BacklinkVerificationResponseSchema, BacklinkVerificationSchema, BacklinkVerificationStateSchema, 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 ListedMediaAsset, ListedMediaAssetSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, MediaCleanupCandidateSchema, type MediaCleanupExecuteRequest, MediaCleanupExecuteRequestSchema, MediaCleanupExecuteResponseSchema, type MediaCleanupExecuteResult, MediaCleanupExecuteResultSchema, MediaCleanupItemResultSchema, MediaCleanupItemStatusSchema, MediaCleanupOperationStatusSchema, type MediaCleanupPreview, type MediaCleanupPreviewRequest, MediaCleanupPreviewRequestSchema, MediaCleanupPreviewResponseSchema, MediaCleanupPreviewSchema, type MediaCleanupScope, MediaCleanupScopeSchema, type MediaCleanupSelectionInput, MediaCleanupSelectionInputSchema, type MediaCleanupStatus, MediaCleanupStatusQuerySchema, MediaCleanupStatusResponseSchema, MediaCleanupStatusSchema, type NormalizedMediaCleanupSelection, NormalizedMediaCleanupSelectionSchema, 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, StorageByteCountSchema, type StorageSourceBreakdown, StorageSourceBreakdownSchema, type StorageUsage, StorageUsageResponseSchema, StorageUsageSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type WorkspaceListedMediaAsset, WorkspaceListedMediaAssetSchema, type WorkspaceMediaAssetListData, WorkspaceMediaAssetListDataSchema, type WorkspaceMediaAssetListQuery, WorkspaceMediaAssetListQuerySchema, WorkspaceMediaAssetListResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|
|
9468
|
+
export { AGENT_CAPABILITIES, API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQualitySummarySchema, 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, AgentBlogMetricSourceSchema, AgentBlogPerformanceObservationSchema, 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, type BacklinkContact, BacklinkContactListDataSchema, BacklinkContactListQuerySchema, BacklinkContactListResponseSchema, BacklinkContactSchema, BacklinkContactStateSchema, BacklinkDiscoveryInputSchema, type BacklinkDiscoveryRun, BacklinkDiscoveryRunResponseSchema, BacklinkDiscoveryRunSchema, BacklinkNextActionSchema, BacklinkOpportunityTypeSchema, BacklinkOutreachDraftResponseSchema, BacklinkOutreachDraftSchema, BacklinkOutreachUpdateInputSchema, type BacklinkProspect, BacklinkProspectListDataSchema, BacklinkProspectListQuerySchema, BacklinkProspectListResponseSchema, BacklinkProspectResponseSchema, BacklinkProspectSchema, BacklinkProspectStageSchema, BacklinkQueueResponseSchema, BacklinkScoreComponentsSchema, BacklinkStageUpdateInputSchema, type BacklinkTarget, BacklinkTargetInputSchema, BacklinkTargetListResponseSchema, BacklinkTargetResponseSchema, BacklinkTargetSchema, BacklinkVerificationInputSchema, BacklinkVerificationResponseSchema, BacklinkVerificationSchema, BacklinkVerificationStateSchema, 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 ListedMediaAsset, ListedMediaAssetSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, MediaCleanupCandidateSchema, type MediaCleanupExecuteRequest, MediaCleanupExecuteRequestSchema, MediaCleanupExecuteResponseSchema, type MediaCleanupExecuteResult, MediaCleanupExecuteResultSchema, MediaCleanupItemResultSchema, MediaCleanupItemStatusSchema, MediaCleanupOperationStatusSchema, type MediaCleanupPreview, type MediaCleanupPreviewRequest, MediaCleanupPreviewRequestSchema, MediaCleanupPreviewResponseSchema, MediaCleanupPreviewSchema, type MediaCleanupScope, MediaCleanupScopeSchema, type MediaCleanupSelectionInput, MediaCleanupSelectionInputSchema, type MediaCleanupStatus, MediaCleanupStatusQuerySchema, MediaCleanupStatusResponseSchema, MediaCleanupStatusSchema, type NormalizedMediaCleanupSelection, NormalizedMediaCleanupSelectionSchema, PUBLISHING_PROVIDER_COUNT, PlatformPostStatusSchema, type Post, type PostDeliveryCheckInput, PostDeliveryCheckInputSchema, PostDeliveryCheckResponseSchema, type PostDeliveryCheckResult, PostDeliveryCheckResultSchema, 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 PostRecoveryExecuteInput, PostRecoveryExecuteInputSchema, type PostRecoveryInput, PostRecoveryInputSchema, type PostRecoveryPreview, PostRecoveryPreviewResponseSchema, PostRecoveryPreviewSchema, PostRecoveryResponseSchema, type PostRecoveryResult, PostRecoveryResultSchema, 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, StorageByteCountSchema, type StorageSourceBreakdown, StorageSourceBreakdownSchema, type StorageUsage, StorageUsageResponseSchema, StorageUsageSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type WorkspaceListedMediaAsset, WorkspaceListedMediaAssetSchema, type WorkspaceMediaAssetListData, WorkspaceMediaAssetListDataSchema, type WorkspaceMediaAssetListQuery, WorkspaceMediaAssetListQuerySchema, WorkspaceMediaAssetListResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|