@rolino/contracts 0.9.0 → 0.10.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 +10 -0
- package/dist/index.cjs +172 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1072 -13
- package/dist/index.d.ts +1072 -13
- package/dist/index.js +154 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -154,11 +154,13 @@ declare const CapabilityIdSchema: z.ZodEnum<{
|
|
|
154
154
|
"projects:write": "projects:write";
|
|
155
155
|
"posts:read": "posts:read";
|
|
156
156
|
"posts:write": "posts:write";
|
|
157
|
+
"posts:delete": "posts:delete";
|
|
157
158
|
"posts:schedule": "posts:schedule";
|
|
158
159
|
"posts:publish": "posts:publish";
|
|
159
160
|
"storage:read": "storage:read";
|
|
160
161
|
"media:delete": "media:delete";
|
|
161
162
|
"integrations:read": "integrations:read";
|
|
163
|
+
"integrations:disconnect": "integrations:disconnect";
|
|
162
164
|
"calendar:read": "calendar:read";
|
|
163
165
|
"seo:read": "seo:read";
|
|
164
166
|
"backlinks:read": "backlinks:read";
|
|
@@ -171,7 +173,7 @@ declare const CapabilityIdSchema: z.ZodEnum<{
|
|
|
171
173
|
"blog:publish": "blog:publish";
|
|
172
174
|
}>;
|
|
173
175
|
type CapabilityId = z.infer<typeof CapabilityIdSchema>;
|
|
174
|
-
declare const AGENT_CAPABILITIES: ("identity:read" | "projects:read" | "projects:write" | "posts:read" | "posts:write" | "posts:schedule" | "posts:publish" | "storage:read" | "media:delete" | "integrations:read" | "calendar:read" | "seo:read" | "backlinks:read" | "backlinks:write" | "backlinks:contacts" | "blog:read" | "blog:write" | "blog:manage" | "blog:approve" | "blog:publish")[];
|
|
176
|
+
declare const AGENT_CAPABILITIES: ("identity:read" | "projects:read" | "projects:write" | "posts:read" | "posts:write" | "posts:delete" | "posts:schedule" | "posts:publish" | "storage:read" | "media:delete" | "integrations:read" | "integrations:disconnect" | "calendar:read" | "seo:read" | "backlinks:read" | "backlinks:write" | "backlinks:contacts" | "blog:read" | "blog:write" | "blog:manage" | "blog:approve" | "blog:publish")[];
|
|
175
177
|
declare const AgentBlogPlanSchema: z.ZodObject<{
|
|
176
178
|
id: z.ZodString;
|
|
177
179
|
version: z.ZodNumber;
|
|
@@ -2475,11 +2477,13 @@ declare const CapabilitySchema: z.ZodObject<{
|
|
|
2475
2477
|
"projects:write": "projects:write";
|
|
2476
2478
|
"posts:read": "posts:read";
|
|
2477
2479
|
"posts:write": "posts:write";
|
|
2480
|
+
"posts:delete": "posts:delete";
|
|
2478
2481
|
"posts:schedule": "posts:schedule";
|
|
2479
2482
|
"posts:publish": "posts:publish";
|
|
2480
2483
|
"storage:read": "storage:read";
|
|
2481
2484
|
"media:delete": "media:delete";
|
|
2482
2485
|
"integrations:read": "integrations:read";
|
|
2486
|
+
"integrations:disconnect": "integrations:disconnect";
|
|
2483
2487
|
"calendar:read": "calendar:read";
|
|
2484
2488
|
"seo:read": "seo:read";
|
|
2485
2489
|
"backlinks:read": "backlinks:read";
|
|
@@ -2526,11 +2530,13 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
2526
2530
|
"projects:write": "projects:write";
|
|
2527
2531
|
"posts:read": "posts:read";
|
|
2528
2532
|
"posts:write": "posts:write";
|
|
2533
|
+
"posts:delete": "posts:delete";
|
|
2529
2534
|
"posts:schedule": "posts:schedule";
|
|
2530
2535
|
"posts:publish": "posts:publish";
|
|
2531
2536
|
"storage:read": "storage:read";
|
|
2532
2537
|
"media:delete": "media:delete";
|
|
2533
2538
|
"integrations:read": "integrations:read";
|
|
2539
|
+
"integrations:disconnect": "integrations:disconnect";
|
|
2534
2540
|
"calendar:read": "calendar:read";
|
|
2535
2541
|
"seo:read": "seo:read";
|
|
2536
2542
|
"backlinks:read": "backlinks:read";
|
|
@@ -2579,11 +2585,13 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
2579
2585
|
"projects:write": "projects:write";
|
|
2580
2586
|
"posts:read": "posts:read";
|
|
2581
2587
|
"posts:write": "posts:write";
|
|
2588
|
+
"posts:delete": "posts:delete";
|
|
2582
2589
|
"posts:schedule": "posts:schedule";
|
|
2583
2590
|
"posts:publish": "posts:publish";
|
|
2584
2591
|
"storage:read": "storage:read";
|
|
2585
2592
|
"media:delete": "media:delete";
|
|
2586
2593
|
"integrations:read": "integrations:read";
|
|
2594
|
+
"integrations:disconnect": "integrations:disconnect";
|
|
2587
2595
|
"calendar:read": "calendar:read";
|
|
2588
2596
|
"seo:read": "seo:read";
|
|
2589
2597
|
"backlinks:read": "backlinks:read";
|
|
@@ -2640,11 +2648,13 @@ declare const ActorSchema: z.ZodObject<{
|
|
|
2640
2648
|
"projects:write": "projects:write";
|
|
2641
2649
|
"posts:read": "posts:read";
|
|
2642
2650
|
"posts:write": "posts:write";
|
|
2651
|
+
"posts:delete": "posts:delete";
|
|
2643
2652
|
"posts:schedule": "posts:schedule";
|
|
2644
2653
|
"posts:publish": "posts:publish";
|
|
2645
2654
|
"storage:read": "storage:read";
|
|
2646
2655
|
"media:delete": "media:delete";
|
|
2647
2656
|
"integrations:read": "integrations:read";
|
|
2657
|
+
"integrations:disconnect": "integrations:disconnect";
|
|
2648
2658
|
"calendar:read": "calendar:read";
|
|
2649
2659
|
"seo:read": "seo:read";
|
|
2650
2660
|
"backlinks:read": "backlinks:read";
|
|
@@ -2684,11 +2694,13 @@ declare const WhoAmIResponseSchema: z.ZodObject<{
|
|
|
2684
2694
|
"projects:write": "projects:write";
|
|
2685
2695
|
"posts:read": "posts:read";
|
|
2686
2696
|
"posts:write": "posts:write";
|
|
2697
|
+
"posts:delete": "posts:delete";
|
|
2687
2698
|
"posts:schedule": "posts:schedule";
|
|
2688
2699
|
"posts:publish": "posts:publish";
|
|
2689
2700
|
"storage:read": "storage:read";
|
|
2690
2701
|
"media:delete": "media:delete";
|
|
2691
2702
|
"integrations:read": "integrations:read";
|
|
2703
|
+
"integrations:disconnect": "integrations:disconnect";
|
|
2692
2704
|
"calendar:read": "calendar:read";
|
|
2693
2705
|
"seo:read": "seo:read";
|
|
2694
2706
|
"backlinks:read": "backlinks:read";
|
|
@@ -2714,11 +2726,13 @@ declare const CapabilitiesDataSchema: z.ZodObject<{
|
|
|
2714
2726
|
"projects:write": "projects:write";
|
|
2715
2727
|
"posts:read": "posts:read";
|
|
2716
2728
|
"posts:write": "posts:write";
|
|
2729
|
+
"posts:delete": "posts:delete";
|
|
2717
2730
|
"posts:schedule": "posts:schedule";
|
|
2718
2731
|
"posts:publish": "posts:publish";
|
|
2719
2732
|
"storage:read": "storage:read";
|
|
2720
2733
|
"media:delete": "media:delete";
|
|
2721
2734
|
"integrations:read": "integrations:read";
|
|
2735
|
+
"integrations:disconnect": "integrations:disconnect";
|
|
2722
2736
|
"calendar:read": "calendar:read";
|
|
2723
2737
|
"seo:read": "seo:read";
|
|
2724
2738
|
"backlinks:read": "backlinks:read";
|
|
@@ -2748,11 +2762,13 @@ declare const CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
2748
2762
|
"projects:write": "projects:write";
|
|
2749
2763
|
"posts:read": "posts:read";
|
|
2750
2764
|
"posts:write": "posts:write";
|
|
2765
|
+
"posts:delete": "posts:delete";
|
|
2751
2766
|
"posts:schedule": "posts:schedule";
|
|
2752
2767
|
"posts:publish": "posts:publish";
|
|
2753
2768
|
"storage:read": "storage:read";
|
|
2754
2769
|
"media:delete": "media:delete";
|
|
2755
2770
|
"integrations:read": "integrations:read";
|
|
2771
|
+
"integrations:disconnect": "integrations:disconnect";
|
|
2756
2772
|
"calendar:read": "calendar:read";
|
|
2757
2773
|
"seo:read": "seo:read";
|
|
2758
2774
|
"backlinks:read": "backlinks:read";
|
|
@@ -3761,6 +3777,40 @@ declare const PostDestinationStageSchema: z.ZodEnum<{
|
|
|
3761
3777
|
}>;
|
|
3762
3778
|
type PostDestinationStage = z.infer<typeof PostDestinationStageSchema>;
|
|
3763
3779
|
declare const PostDestinationSchema: z.ZodObject<{
|
|
3780
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3781
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3782
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3783
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3784
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3785
|
+
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
3786
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
3787
|
+
DIRECT_POST: "DIRECT_POST";
|
|
3788
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
3789
|
+
}>>;
|
|
3790
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
3791
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
3792
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
3793
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
3794
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
3795
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
3796
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
3797
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
3798
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
3799
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
3800
|
+
}, z.core.$strict>>>>;
|
|
3801
|
+
youtubeSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
3802
|
+
title: z.ZodString;
|
|
3803
|
+
categoryId: z.ZodString;
|
|
3804
|
+
privacyStatus: z.ZodEnum<{
|
|
3805
|
+
PUBLIC: "PUBLIC";
|
|
3806
|
+
UNLISTED: "UNLISTED";
|
|
3807
|
+
PRIVATE: "PRIVATE";
|
|
3808
|
+
}>;
|
|
3809
|
+
madeForKids: z.ZodBoolean;
|
|
3810
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
3811
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
3812
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3813
|
+
}, z.core.$strict>>>>;
|
|
3764
3814
|
provider: z.ZodEnum<{
|
|
3765
3815
|
INSTAGRAM: "INSTAGRAM";
|
|
3766
3816
|
TIKTOK: "TIKTOK";
|
|
@@ -3952,6 +4002,40 @@ declare const PostSchema: z.ZodObject<{
|
|
|
3952
4002
|
position: z.ZodNumber;
|
|
3953
4003
|
}, z.core.$strip>>;
|
|
3954
4004
|
destinations: z.ZodArray<z.ZodObject<{
|
|
4005
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4006
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4007
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4008
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4009
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4010
|
+
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
4011
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
4012
|
+
DIRECT_POST: "DIRECT_POST";
|
|
4013
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
4014
|
+
}>>;
|
|
4015
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
4016
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
4017
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
4018
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
4019
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
4020
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
4021
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
4022
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
4023
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
4024
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
4025
|
+
}, z.core.$strict>>>>;
|
|
4026
|
+
youtubeSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
4027
|
+
title: z.ZodString;
|
|
4028
|
+
categoryId: z.ZodString;
|
|
4029
|
+
privacyStatus: z.ZodEnum<{
|
|
4030
|
+
PUBLIC: "PUBLIC";
|
|
4031
|
+
UNLISTED: "UNLISTED";
|
|
4032
|
+
PRIVATE: "PRIVATE";
|
|
4033
|
+
}>;
|
|
4034
|
+
madeForKids: z.ZodBoolean;
|
|
4035
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
4036
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
4037
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4038
|
+
}, z.core.$strict>>>>;
|
|
3955
4039
|
provider: z.ZodEnum<{
|
|
3956
4040
|
INSTAGRAM: "INSTAGRAM";
|
|
3957
4041
|
TIKTOK: "TIKTOK";
|
|
@@ -4083,6 +4167,40 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
4083
4167
|
position: z.ZodNumber;
|
|
4084
4168
|
}, z.core.$strip>>;
|
|
4085
4169
|
destinations: z.ZodArray<z.ZodObject<{
|
|
4170
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4171
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4172
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4173
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4174
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4175
|
+
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
4176
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
4177
|
+
DIRECT_POST: "DIRECT_POST";
|
|
4178
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
4179
|
+
}>>;
|
|
4180
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
4181
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
4182
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
4183
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
4184
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
4185
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
4186
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
4187
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
4188
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
4189
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
4190
|
+
}, z.core.$strict>>>>;
|
|
4191
|
+
youtubeSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
4192
|
+
title: z.ZodString;
|
|
4193
|
+
categoryId: z.ZodString;
|
|
4194
|
+
privacyStatus: z.ZodEnum<{
|
|
4195
|
+
PUBLIC: "PUBLIC";
|
|
4196
|
+
UNLISTED: "UNLISTED";
|
|
4197
|
+
PRIVATE: "PRIVATE";
|
|
4198
|
+
}>;
|
|
4199
|
+
madeForKids: z.ZodBoolean;
|
|
4200
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
4201
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
4202
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4203
|
+
}, z.core.$strict>>>>;
|
|
4086
4204
|
provider: z.ZodEnum<{
|
|
4087
4205
|
INSTAGRAM: "INSTAGRAM";
|
|
4088
4206
|
TIKTOK: "TIKTOK";
|
|
@@ -4206,6 +4324,40 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
4206
4324
|
position: z.ZodNumber;
|
|
4207
4325
|
}, z.core.$strip>>;
|
|
4208
4326
|
destinations: z.ZodArray<z.ZodObject<{
|
|
4327
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4328
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4329
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4330
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4331
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4332
|
+
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
4333
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
4334
|
+
DIRECT_POST: "DIRECT_POST";
|
|
4335
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
4336
|
+
}>>;
|
|
4337
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
4338
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
4339
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
4340
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
4341
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
4342
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
4343
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
4344
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
4345
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
4346
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
4347
|
+
}, z.core.$strict>>>>;
|
|
4348
|
+
youtubeSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
4349
|
+
title: z.ZodString;
|
|
4350
|
+
categoryId: z.ZodString;
|
|
4351
|
+
privacyStatus: z.ZodEnum<{
|
|
4352
|
+
PUBLIC: "PUBLIC";
|
|
4353
|
+
UNLISTED: "UNLISTED";
|
|
4354
|
+
PRIVATE: "PRIVATE";
|
|
4355
|
+
}>;
|
|
4356
|
+
madeForKids: z.ZodBoolean;
|
|
4357
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
4358
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
4359
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4360
|
+
}, z.core.$strict>>>>;
|
|
4209
4361
|
provider: z.ZodEnum<{
|
|
4210
4362
|
INSTAGRAM: "INSTAGRAM";
|
|
4211
4363
|
TIKTOK: "TIKTOK";
|
|
@@ -4332,6 +4484,40 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
4332
4484
|
position: z.ZodNumber;
|
|
4333
4485
|
}, z.core.$strip>>;
|
|
4334
4486
|
destinations: z.ZodArray<z.ZodObject<{
|
|
4487
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4488
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4489
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4490
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4491
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4492
|
+
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
4493
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
4494
|
+
DIRECT_POST: "DIRECT_POST";
|
|
4495
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
4496
|
+
}>>;
|
|
4497
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
4498
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
4499
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
4500
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
4501
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
4502
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
4503
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
4504
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
4505
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
4506
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
4507
|
+
}, z.core.$strict>>>>;
|
|
4508
|
+
youtubeSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
4509
|
+
title: z.ZodString;
|
|
4510
|
+
categoryId: z.ZodString;
|
|
4511
|
+
privacyStatus: z.ZodEnum<{
|
|
4512
|
+
PUBLIC: "PUBLIC";
|
|
4513
|
+
UNLISTED: "UNLISTED";
|
|
4514
|
+
PRIVATE: "PRIVATE";
|
|
4515
|
+
}>;
|
|
4516
|
+
madeForKids: z.ZodBoolean;
|
|
4517
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
4518
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
4519
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4520
|
+
}, z.core.$strict>>>>;
|
|
4335
4521
|
provider: z.ZodEnum<{
|
|
4336
4522
|
INSTAGRAM: "INSTAGRAM";
|
|
4337
4523
|
TIKTOK: "TIKTOK";
|
|
@@ -4411,7 +4597,141 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
4411
4597
|
}, z.core.$strip>;
|
|
4412
4598
|
}, z.core.$strip>;
|
|
4413
4599
|
type PostResponse = z.infer<typeof PostResponseSchema>;
|
|
4600
|
+
declare const DraftAccountDestinationSchema: z.ZodObject<{
|
|
4601
|
+
integrationId: z.ZodString;
|
|
4602
|
+
provider: z.ZodEnum<{
|
|
4603
|
+
INSTAGRAM: "INSTAGRAM";
|
|
4604
|
+
TIKTOK: "TIKTOK";
|
|
4605
|
+
YOUTUBE: "YOUTUBE";
|
|
4606
|
+
BLUESKY: "BLUESKY";
|
|
4607
|
+
LINKEDIN: "LINKEDIN";
|
|
4608
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4609
|
+
}>;
|
|
4610
|
+
captionOverride: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
4611
|
+
tiktokSettings: z.ZodDefault<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
4612
|
+
postMode: z.ZodOptional<z.ZodEnum<{
|
|
4613
|
+
DIRECT_POST: "DIRECT_POST";
|
|
4614
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
4615
|
+
}>>;
|
|
4616
|
+
privacyLevel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4617
|
+
allowComment: z.ZodOptional<z.ZodBoolean>;
|
|
4618
|
+
allowDuet: z.ZodOptional<z.ZodBoolean>;
|
|
4619
|
+
allowStitch: z.ZodOptional<z.ZodBoolean>;
|
|
4620
|
+
commercialContentEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4621
|
+
promotesOwnBrand: z.ZodOptional<z.ZodBoolean>;
|
|
4622
|
+
promotesThirdParty: z.ZodOptional<z.ZodBoolean>;
|
|
4623
|
+
isAiGenerated: z.ZodOptional<z.ZodBoolean>;
|
|
4624
|
+
videoCoverTimestampMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4625
|
+
reviewed: z.ZodOptional<z.ZodBoolean>;
|
|
4626
|
+
consentedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
4627
|
+
}, z.core.$strict>, z.ZodTransform<{
|
|
4628
|
+
postMode: "DIRECT_POST" | "MEDIA_UPLOAD";
|
|
4629
|
+
privacyLevel: string | null;
|
|
4630
|
+
allowComment: boolean;
|
|
4631
|
+
allowDuet: boolean;
|
|
4632
|
+
allowStitch: boolean;
|
|
4633
|
+
commercialContentEnabled: boolean;
|
|
4634
|
+
promotesOwnBrand: boolean;
|
|
4635
|
+
promotesThirdParty: boolean;
|
|
4636
|
+
isAiGenerated: boolean;
|
|
4637
|
+
videoCoverTimestampMs: number | null;
|
|
4638
|
+
reviewed: boolean;
|
|
4639
|
+
}, {
|
|
4640
|
+
postMode?: "DIRECT_POST" | "MEDIA_UPLOAD" | undefined;
|
|
4641
|
+
privacyLevel?: string | null | undefined;
|
|
4642
|
+
allowComment?: boolean | undefined;
|
|
4643
|
+
allowDuet?: boolean | undefined;
|
|
4644
|
+
allowStitch?: boolean | undefined;
|
|
4645
|
+
commercialContentEnabled?: boolean | undefined;
|
|
4646
|
+
promotesOwnBrand?: boolean | undefined;
|
|
4647
|
+
promotesThirdParty?: boolean | undefined;
|
|
4648
|
+
isAiGenerated?: boolean | undefined;
|
|
4649
|
+
videoCoverTimestampMs?: number | null | undefined;
|
|
4650
|
+
reviewed?: boolean | undefined;
|
|
4651
|
+
consentedAt?: string | undefined;
|
|
4652
|
+
}>>>>;
|
|
4653
|
+
youtubeSettings: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4654
|
+
title: z.ZodString;
|
|
4655
|
+
categoryId: z.ZodString;
|
|
4656
|
+
privacyStatus: z.ZodEnum<{
|
|
4657
|
+
PUBLIC: "PUBLIC";
|
|
4658
|
+
UNLISTED: "UNLISTED";
|
|
4659
|
+
PRIVATE: "PRIVATE";
|
|
4660
|
+
}>;
|
|
4661
|
+
madeForKids: z.ZodBoolean;
|
|
4662
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
4663
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
4664
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4665
|
+
}, z.core.$strict>>>;
|
|
4666
|
+
}, z.core.$strict>;
|
|
4414
4667
|
declare const DraftPostInputSchema: z.ZodObject<{
|
|
4668
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4669
|
+
integrationId: z.ZodString;
|
|
4670
|
+
provider: z.ZodEnum<{
|
|
4671
|
+
INSTAGRAM: "INSTAGRAM";
|
|
4672
|
+
TIKTOK: "TIKTOK";
|
|
4673
|
+
YOUTUBE: "YOUTUBE";
|
|
4674
|
+
BLUESKY: "BLUESKY";
|
|
4675
|
+
LINKEDIN: "LINKEDIN";
|
|
4676
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4677
|
+
}>;
|
|
4678
|
+
captionOverride: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
4679
|
+
tiktokSettings: z.ZodDefault<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
4680
|
+
postMode: z.ZodOptional<z.ZodEnum<{
|
|
4681
|
+
DIRECT_POST: "DIRECT_POST";
|
|
4682
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
4683
|
+
}>>;
|
|
4684
|
+
privacyLevel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4685
|
+
allowComment: z.ZodOptional<z.ZodBoolean>;
|
|
4686
|
+
allowDuet: z.ZodOptional<z.ZodBoolean>;
|
|
4687
|
+
allowStitch: z.ZodOptional<z.ZodBoolean>;
|
|
4688
|
+
commercialContentEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4689
|
+
promotesOwnBrand: z.ZodOptional<z.ZodBoolean>;
|
|
4690
|
+
promotesThirdParty: z.ZodOptional<z.ZodBoolean>;
|
|
4691
|
+
isAiGenerated: z.ZodOptional<z.ZodBoolean>;
|
|
4692
|
+
videoCoverTimestampMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4693
|
+
reviewed: z.ZodOptional<z.ZodBoolean>;
|
|
4694
|
+
consentedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
4695
|
+
}, z.core.$strict>, z.ZodTransform<{
|
|
4696
|
+
postMode: "DIRECT_POST" | "MEDIA_UPLOAD";
|
|
4697
|
+
privacyLevel: string | null;
|
|
4698
|
+
allowComment: boolean;
|
|
4699
|
+
allowDuet: boolean;
|
|
4700
|
+
allowStitch: boolean;
|
|
4701
|
+
commercialContentEnabled: boolean;
|
|
4702
|
+
promotesOwnBrand: boolean;
|
|
4703
|
+
promotesThirdParty: boolean;
|
|
4704
|
+
isAiGenerated: boolean;
|
|
4705
|
+
videoCoverTimestampMs: number | null;
|
|
4706
|
+
reviewed: boolean;
|
|
4707
|
+
}, {
|
|
4708
|
+
postMode?: "DIRECT_POST" | "MEDIA_UPLOAD" | undefined;
|
|
4709
|
+
privacyLevel?: string | null | undefined;
|
|
4710
|
+
allowComment?: boolean | undefined;
|
|
4711
|
+
allowDuet?: boolean | undefined;
|
|
4712
|
+
allowStitch?: boolean | undefined;
|
|
4713
|
+
commercialContentEnabled?: boolean | undefined;
|
|
4714
|
+
promotesOwnBrand?: boolean | undefined;
|
|
4715
|
+
promotesThirdParty?: boolean | undefined;
|
|
4716
|
+
isAiGenerated?: boolean | undefined;
|
|
4717
|
+
videoCoverTimestampMs?: number | null | undefined;
|
|
4718
|
+
reviewed?: boolean | undefined;
|
|
4719
|
+
consentedAt?: string | undefined;
|
|
4720
|
+
}>>>>;
|
|
4721
|
+
youtubeSettings: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4722
|
+
title: z.ZodString;
|
|
4723
|
+
categoryId: z.ZodString;
|
|
4724
|
+
privacyStatus: z.ZodEnum<{
|
|
4725
|
+
PUBLIC: "PUBLIC";
|
|
4726
|
+
UNLISTED: "UNLISTED";
|
|
4727
|
+
PRIVATE: "PRIVATE";
|
|
4728
|
+
}>;
|
|
4729
|
+
madeForKids: z.ZodBoolean;
|
|
4730
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
4731
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
4732
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4733
|
+
}, z.core.$strict>>>;
|
|
4734
|
+
}, z.core.$strict>>>;
|
|
4415
4735
|
caption: z.ZodDefault<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
4416
4736
|
platforms: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4417
4737
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -4422,6 +4742,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
4422
4742
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4423
4743
|
}>>>;
|
|
4424
4744
|
mediaAssetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4745
|
+
mediaAltText: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>;
|
|
4425
4746
|
captionOverrides: z.ZodDefault<z.ZodObject<{
|
|
4426
4747
|
INSTAGRAM: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4427
4748
|
TIKTOK: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4489,6 +4810,73 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
4489
4810
|
type DraftPostInput = z.input<typeof DraftPostInputSchema>;
|
|
4490
4811
|
type DraftPostData = z.infer<typeof DraftPostInputSchema>;
|
|
4491
4812
|
declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
4813
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4814
|
+
integrationId: z.ZodString;
|
|
4815
|
+
provider: z.ZodEnum<{
|
|
4816
|
+
INSTAGRAM: "INSTAGRAM";
|
|
4817
|
+
TIKTOK: "TIKTOK";
|
|
4818
|
+
YOUTUBE: "YOUTUBE";
|
|
4819
|
+
BLUESKY: "BLUESKY";
|
|
4820
|
+
LINKEDIN: "LINKEDIN";
|
|
4821
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4822
|
+
}>;
|
|
4823
|
+
captionOverride: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
4824
|
+
tiktokSettings: z.ZodDefault<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
4825
|
+
postMode: z.ZodOptional<z.ZodEnum<{
|
|
4826
|
+
DIRECT_POST: "DIRECT_POST";
|
|
4827
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
4828
|
+
}>>;
|
|
4829
|
+
privacyLevel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4830
|
+
allowComment: z.ZodOptional<z.ZodBoolean>;
|
|
4831
|
+
allowDuet: z.ZodOptional<z.ZodBoolean>;
|
|
4832
|
+
allowStitch: z.ZodOptional<z.ZodBoolean>;
|
|
4833
|
+
commercialContentEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4834
|
+
promotesOwnBrand: z.ZodOptional<z.ZodBoolean>;
|
|
4835
|
+
promotesThirdParty: z.ZodOptional<z.ZodBoolean>;
|
|
4836
|
+
isAiGenerated: z.ZodOptional<z.ZodBoolean>;
|
|
4837
|
+
videoCoverTimestampMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4838
|
+
reviewed: z.ZodOptional<z.ZodBoolean>;
|
|
4839
|
+
consentedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
4840
|
+
}, z.core.$strict>, z.ZodTransform<{
|
|
4841
|
+
postMode: "DIRECT_POST" | "MEDIA_UPLOAD";
|
|
4842
|
+
privacyLevel: string | null;
|
|
4843
|
+
allowComment: boolean;
|
|
4844
|
+
allowDuet: boolean;
|
|
4845
|
+
allowStitch: boolean;
|
|
4846
|
+
commercialContentEnabled: boolean;
|
|
4847
|
+
promotesOwnBrand: boolean;
|
|
4848
|
+
promotesThirdParty: boolean;
|
|
4849
|
+
isAiGenerated: boolean;
|
|
4850
|
+
videoCoverTimestampMs: number | null;
|
|
4851
|
+
reviewed: boolean;
|
|
4852
|
+
}, {
|
|
4853
|
+
postMode?: "DIRECT_POST" | "MEDIA_UPLOAD" | undefined;
|
|
4854
|
+
privacyLevel?: string | null | undefined;
|
|
4855
|
+
allowComment?: boolean | undefined;
|
|
4856
|
+
allowDuet?: boolean | undefined;
|
|
4857
|
+
allowStitch?: boolean | undefined;
|
|
4858
|
+
commercialContentEnabled?: boolean | undefined;
|
|
4859
|
+
promotesOwnBrand?: boolean | undefined;
|
|
4860
|
+
promotesThirdParty?: boolean | undefined;
|
|
4861
|
+
isAiGenerated?: boolean | undefined;
|
|
4862
|
+
videoCoverTimestampMs?: number | null | undefined;
|
|
4863
|
+
reviewed?: boolean | undefined;
|
|
4864
|
+
consentedAt?: string | undefined;
|
|
4865
|
+
}>>>>;
|
|
4866
|
+
youtubeSettings: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
4867
|
+
title: z.ZodString;
|
|
4868
|
+
categoryId: z.ZodString;
|
|
4869
|
+
privacyStatus: z.ZodEnum<{
|
|
4870
|
+
PUBLIC: "PUBLIC";
|
|
4871
|
+
UNLISTED: "UNLISTED";
|
|
4872
|
+
PRIVATE: "PRIVATE";
|
|
4873
|
+
}>;
|
|
4874
|
+
madeForKids: z.ZodBoolean;
|
|
4875
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
4876
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
4877
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4878
|
+
}, z.core.$strict>>>;
|
|
4879
|
+
}, z.core.$strict>>>;
|
|
4492
4880
|
caption: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
4493
4881
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4494
4882
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -4499,6 +4887,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
4499
4887
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4500
4888
|
}>>>;
|
|
4501
4889
|
mediaAssetIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4890
|
+
mediaAltText: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>;
|
|
4502
4891
|
captionOverrides: z.ZodOptional<z.ZodObject<{
|
|
4503
4892
|
INSTAGRAM: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4504
4893
|
TIKTOK: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4578,6 +4967,8 @@ declare const ProviderHealthStatusSchema: z.ZodEnum<{
|
|
|
4578
4967
|
blocking: "blocking";
|
|
4579
4968
|
}>;
|
|
4580
4969
|
declare const IntegrationHealthSchema: z.ZodObject<{
|
|
4970
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4971
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4581
4972
|
provider: z.ZodEnum<{
|
|
4582
4973
|
INSTAGRAM: "INSTAGRAM";
|
|
4583
4974
|
TIKTOK: "TIKTOK";
|
|
@@ -4618,6 +5009,8 @@ declare const IntegrationHealthSchema: z.ZodObject<{
|
|
|
4618
5009
|
type IntegrationHealth = z.infer<typeof IntegrationHealthSchema>;
|
|
4619
5010
|
declare const IntegrationHealthListDataSchema: z.ZodObject<{
|
|
4620
5011
|
items: z.ZodArray<z.ZodObject<{
|
|
5012
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5013
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4621
5014
|
provider: z.ZodEnum<{
|
|
4622
5015
|
INSTAGRAM: "INSTAGRAM";
|
|
4623
5016
|
TIKTOK: "TIKTOK";
|
|
@@ -4660,6 +5053,8 @@ type IntegrationHealthListData = z.infer<typeof IntegrationHealthListDataSchema>
|
|
|
4660
5053
|
declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
4661
5054
|
data: z.ZodObject<{
|
|
4662
5055
|
items: z.ZodArray<z.ZodObject<{
|
|
5056
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5057
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4663
5058
|
provider: z.ZodEnum<{
|
|
4664
5059
|
INSTAGRAM: "INSTAGRAM";
|
|
4665
5060
|
TIKTOK: "TIKTOK";
|
|
@@ -4704,10 +5099,13 @@ declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
|
4704
5099
|
}, z.core.$strip>;
|
|
4705
5100
|
declare const ProviderDeliveryOptionsProviderSchema: z.ZodEnum<{
|
|
4706
5101
|
TIKTOK: "TIKTOK";
|
|
5102
|
+
BLUESKY: "BLUESKY";
|
|
4707
5103
|
LINKEDIN: "LINKEDIN";
|
|
4708
5104
|
}>;
|
|
4709
5105
|
type ProviderDeliveryOptionsProvider = z.infer<typeof ProviderDeliveryOptionsProviderSchema>;
|
|
4710
5106
|
declare const TikTokDeliveryOptionsSchema: z.ZodObject<{
|
|
5107
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5108
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4711
5109
|
provider: z.ZodLiteral<"TIKTOK">;
|
|
4712
5110
|
account: z.ZodObject<{
|
|
4713
5111
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4743,6 +5141,8 @@ declare const TikTokDeliveryOptionsSchema: z.ZodObject<{
|
|
|
4743
5141
|
checkedAt: z.ZodString;
|
|
4744
5142
|
}, z.core.$strip>;
|
|
4745
5143
|
declare const LinkedInDeliveryOptionsSchema: z.ZodObject<{
|
|
5144
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5145
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4746
5146
|
provider: z.ZodLiteral<"LINKEDIN">;
|
|
4747
5147
|
account: z.ZodObject<{
|
|
4748
5148
|
displayName: z.ZodNullable<z.ZodString>;
|
|
@@ -4779,7 +5179,42 @@ declare const LinkedInDeliveryOptionsSchema: z.ZodObject<{
|
|
|
4779
5179
|
}, z.core.$strip>;
|
|
4780
5180
|
checkedAt: z.ZodString;
|
|
4781
5181
|
}, z.core.$strip>;
|
|
5182
|
+
declare const BlueskyDeliveryOptionsSchema: z.ZodObject<{
|
|
5183
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5184
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5185
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5186
|
+
account: z.ZodObject<{
|
|
5187
|
+
username: z.ZodNullable<z.ZodString>;
|
|
5188
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
5189
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
5190
|
+
}, z.core.$strip>;
|
|
5191
|
+
supportedPostTypes: z.ZodTuple<[z.ZodLiteral<"TEXT">, z.ZodLiteral<"SINGLE_IMAGE">, z.ZodLiteral<"MULTI_IMAGE">], null>;
|
|
5192
|
+
maxCaptionGraphemes: z.ZodLiteral<300>;
|
|
5193
|
+
image: z.ZodObject<{
|
|
5194
|
+
maxItems: z.ZodLiteral<4>;
|
|
5195
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">, z.ZodLiteral<"image/webp">], null>;
|
|
5196
|
+
maxBytes: z.ZodLiteral<2000000>;
|
|
5197
|
+
maxProcessedBytes: z.ZodLiteral<2000000>;
|
|
5198
|
+
}, z.core.$strip>;
|
|
5199
|
+
authorization: z.ZodObject<{
|
|
5200
|
+
kind: z.ZodLiteral<"HUMAN_OAUTH">;
|
|
5201
|
+
path: z.ZodString;
|
|
5202
|
+
instruction: z.ZodString;
|
|
5203
|
+
}, z.core.$strip>;
|
|
5204
|
+
health: z.ZodObject<{
|
|
5205
|
+
status: z.ZodEnum<{
|
|
5206
|
+
unknown: "unknown";
|
|
5207
|
+
pass: "pass";
|
|
5208
|
+
blocking: "blocking";
|
|
5209
|
+
}>;
|
|
5210
|
+
code: z.ZodString;
|
|
5211
|
+
message: z.ZodString;
|
|
5212
|
+
}, z.core.$strip>;
|
|
5213
|
+
checkedAt: z.ZodString;
|
|
5214
|
+
}, z.core.$strip>;
|
|
4782
5215
|
declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5216
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5217
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4783
5218
|
provider: z.ZodLiteral<"TIKTOK">;
|
|
4784
5219
|
account: z.ZodObject<{
|
|
4785
5220
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4814,6 +5249,8 @@ declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4814
5249
|
}, z.core.$strip>;
|
|
4815
5250
|
checkedAt: z.ZodString;
|
|
4816
5251
|
}, z.core.$strip>, z.ZodObject<{
|
|
5252
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5253
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4817
5254
|
provider: z.ZodLiteral<"LINKEDIN">;
|
|
4818
5255
|
account: z.ZodObject<{
|
|
4819
5256
|
displayName: z.ZodNullable<z.ZodString>;
|
|
@@ -4849,10 +5286,44 @@ declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4849
5286
|
message: z.ZodString;
|
|
4850
5287
|
}, z.core.$strip>;
|
|
4851
5288
|
checkedAt: z.ZodString;
|
|
5289
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5290
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5291
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5292
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5293
|
+
account: z.ZodObject<{
|
|
5294
|
+
username: z.ZodNullable<z.ZodString>;
|
|
5295
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
5296
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
5297
|
+
}, z.core.$strip>;
|
|
5298
|
+
supportedPostTypes: z.ZodTuple<[z.ZodLiteral<"TEXT">, z.ZodLiteral<"SINGLE_IMAGE">, z.ZodLiteral<"MULTI_IMAGE">], null>;
|
|
5299
|
+
maxCaptionGraphemes: z.ZodLiteral<300>;
|
|
5300
|
+
image: z.ZodObject<{
|
|
5301
|
+
maxItems: z.ZodLiteral<4>;
|
|
5302
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">, z.ZodLiteral<"image/webp">], null>;
|
|
5303
|
+
maxBytes: z.ZodLiteral<2000000>;
|
|
5304
|
+
maxProcessedBytes: z.ZodLiteral<2000000>;
|
|
5305
|
+
}, z.core.$strip>;
|
|
5306
|
+
authorization: z.ZodObject<{
|
|
5307
|
+
kind: z.ZodLiteral<"HUMAN_OAUTH">;
|
|
5308
|
+
path: z.ZodString;
|
|
5309
|
+
instruction: z.ZodString;
|
|
5310
|
+
}, z.core.$strip>;
|
|
5311
|
+
health: z.ZodObject<{
|
|
5312
|
+
status: z.ZodEnum<{
|
|
5313
|
+
unknown: "unknown";
|
|
5314
|
+
pass: "pass";
|
|
5315
|
+
blocking: "blocking";
|
|
5316
|
+
}>;
|
|
5317
|
+
code: z.ZodString;
|
|
5318
|
+
message: z.ZodString;
|
|
5319
|
+
}, z.core.$strip>;
|
|
5320
|
+
checkedAt: z.ZodString;
|
|
4852
5321
|
}, z.core.$strip>], "provider">;
|
|
4853
5322
|
type ProviderDeliveryOptions = z.infer<typeof ProviderDeliveryOptionsSchema>;
|
|
4854
5323
|
declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
4855
5324
|
data: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5325
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5326
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4856
5327
|
provider: z.ZodLiteral<"TIKTOK">;
|
|
4857
5328
|
account: z.ZodObject<{
|
|
4858
5329
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4887,6 +5358,8 @@ declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
|
4887
5358
|
}, z.core.$strip>;
|
|
4888
5359
|
checkedAt: z.ZodString;
|
|
4889
5360
|
}, z.core.$strip>, z.ZodObject<{
|
|
5361
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5362
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4890
5363
|
provider: z.ZodLiteral<"LINKEDIN">;
|
|
4891
5364
|
account: z.ZodObject<{
|
|
4892
5365
|
displayName: z.ZodNullable<z.ZodString>;
|
|
@@ -4921,12 +5394,261 @@ declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
|
4921
5394
|
code: z.ZodString;
|
|
4922
5395
|
message: z.ZodString;
|
|
4923
5396
|
}, z.core.$strip>;
|
|
4924
|
-
checkedAt: z.ZodString;
|
|
4925
|
-
}, z.core.$strip
|
|
5397
|
+
checkedAt: z.ZodString;
|
|
5398
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5399
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5400
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5401
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5402
|
+
account: z.ZodObject<{
|
|
5403
|
+
username: z.ZodNullable<z.ZodString>;
|
|
5404
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
5405
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
5406
|
+
}, z.core.$strip>;
|
|
5407
|
+
supportedPostTypes: z.ZodTuple<[z.ZodLiteral<"TEXT">, z.ZodLiteral<"SINGLE_IMAGE">, z.ZodLiteral<"MULTI_IMAGE">], null>;
|
|
5408
|
+
maxCaptionGraphemes: z.ZodLiteral<300>;
|
|
5409
|
+
image: z.ZodObject<{
|
|
5410
|
+
maxItems: z.ZodLiteral<4>;
|
|
5411
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">, z.ZodLiteral<"image/webp">], null>;
|
|
5412
|
+
maxBytes: z.ZodLiteral<2000000>;
|
|
5413
|
+
maxProcessedBytes: z.ZodLiteral<2000000>;
|
|
5414
|
+
}, z.core.$strip>;
|
|
5415
|
+
authorization: z.ZodObject<{
|
|
5416
|
+
kind: z.ZodLiteral<"HUMAN_OAUTH">;
|
|
5417
|
+
path: z.ZodString;
|
|
5418
|
+
instruction: z.ZodString;
|
|
5419
|
+
}, z.core.$strip>;
|
|
5420
|
+
health: z.ZodObject<{
|
|
5421
|
+
status: z.ZodEnum<{
|
|
5422
|
+
unknown: "unknown";
|
|
5423
|
+
pass: "pass";
|
|
5424
|
+
blocking: "blocking";
|
|
5425
|
+
}>;
|
|
5426
|
+
code: z.ZodString;
|
|
5427
|
+
message: z.ZodString;
|
|
5428
|
+
}, z.core.$strip>;
|
|
5429
|
+
checkedAt: z.ZodString;
|
|
5430
|
+
}, z.core.$strip>], "provider">;
|
|
5431
|
+
meta: z.ZodObject<{
|
|
5432
|
+
requestId: z.ZodString;
|
|
5433
|
+
}, z.core.$strip>;
|
|
5434
|
+
}, z.core.$strip>;
|
|
5435
|
+
declare const IntegrationDisconnectInputSchema: z.ZodObject<{
|
|
5436
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5437
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5438
|
+
}, z.core.$strict>;
|
|
5439
|
+
declare const IntegrationDisconnectExecuteInputSchema: z.ZodObject<{
|
|
5440
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5441
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5442
|
+
expectedVersion: z.ZodString;
|
|
5443
|
+
confirmationToken: z.ZodString;
|
|
5444
|
+
}, z.core.$strict>;
|
|
5445
|
+
declare const IntegrationDisconnectPreviewSchema: z.ZodObject<{
|
|
5446
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5447
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5448
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5449
|
+
projectId: z.ZodString;
|
|
5450
|
+
expectedVersion: z.ZodString;
|
|
5451
|
+
account: z.ZodNullable<z.ZodString>;
|
|
5452
|
+
pendingDeliveries: z.ZodNumber;
|
|
5453
|
+
consequence: z.ZodString;
|
|
5454
|
+
confirmation: z.ZodObject<{
|
|
5455
|
+
token: z.ZodString;
|
|
5456
|
+
expiresAt: z.ZodString;
|
|
5457
|
+
}, z.core.$strip>;
|
|
5458
|
+
}, z.core.$strip>;
|
|
5459
|
+
declare const IntegrationDisconnectResultSchema: z.ZodObject<{
|
|
5460
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5461
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5462
|
+
projectId: z.ZodString;
|
|
5463
|
+
status: z.ZodLiteral<"DISCONNECTED">;
|
|
5464
|
+
remoteRevocation: z.ZodEnum<{
|
|
5465
|
+
PENDING: "PENDING";
|
|
5466
|
+
REVOKED: "REVOKED";
|
|
5467
|
+
UNRESOLVED: "UNRESOLVED";
|
|
5468
|
+
NOT_REQUIRED: "NOT_REQUIRED";
|
|
5469
|
+
}>;
|
|
5470
|
+
}, z.core.$strip>;
|
|
5471
|
+
declare const IntegrationDisconnectPreviewResponseSchema: z.ZodObject<{
|
|
5472
|
+
data: z.ZodObject<{
|
|
5473
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5474
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5475
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5476
|
+
projectId: z.ZodString;
|
|
5477
|
+
expectedVersion: z.ZodString;
|
|
5478
|
+
account: z.ZodNullable<z.ZodString>;
|
|
5479
|
+
pendingDeliveries: z.ZodNumber;
|
|
5480
|
+
consequence: z.ZodString;
|
|
5481
|
+
confirmation: z.ZodObject<{
|
|
5482
|
+
token: z.ZodString;
|
|
5483
|
+
expiresAt: z.ZodString;
|
|
5484
|
+
}, z.core.$strip>;
|
|
5485
|
+
}, z.core.$strip>;
|
|
5486
|
+
meta: z.ZodObject<{
|
|
5487
|
+
requestId: z.ZodString;
|
|
5488
|
+
}, z.core.$strip>;
|
|
5489
|
+
}, z.core.$strip>;
|
|
5490
|
+
declare const IntegrationDisconnectResponseSchema: z.ZodObject<{
|
|
5491
|
+
data: z.ZodObject<{
|
|
5492
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5493
|
+
provider: z.ZodLiteral<"BLUESKY">;
|
|
5494
|
+
projectId: z.ZodString;
|
|
5495
|
+
status: z.ZodLiteral<"DISCONNECTED">;
|
|
5496
|
+
remoteRevocation: z.ZodEnum<{
|
|
5497
|
+
PENDING: "PENDING";
|
|
5498
|
+
REVOKED: "REVOKED";
|
|
5499
|
+
UNRESOLVED: "UNRESOLVED";
|
|
5500
|
+
NOT_REQUIRED: "NOT_REQUIRED";
|
|
5501
|
+
}>;
|
|
5502
|
+
}, z.core.$strip>;
|
|
5503
|
+
meta: z.ZodObject<{
|
|
5504
|
+
requestId: z.ZodString;
|
|
5505
|
+
}, z.core.$strip>;
|
|
5506
|
+
}, z.core.$strip>;
|
|
5507
|
+
type IntegrationDisconnectPreview = z.infer<typeof IntegrationDisconnectPreviewSchema>;
|
|
5508
|
+
type IntegrationDisconnectResult = z.infer<typeof IntegrationDisconnectResultSchema>;
|
|
5509
|
+
type IntegrationDisconnectExecuteInput = z.infer<typeof IntegrationDisconnectExecuteInputSchema>;
|
|
5510
|
+
declare const DraftDeletePreviewSchema: z.ZodObject<{
|
|
5511
|
+
operation: z.ZodLiteral<"posts.delete.execute">;
|
|
5512
|
+
projectId: z.ZodString;
|
|
5513
|
+
postId: z.ZodString;
|
|
5514
|
+
version: z.ZodNumber;
|
|
5515
|
+
caption: z.ZodString;
|
|
5516
|
+
mediaCount: z.ZodNumber;
|
|
5517
|
+
consequence: z.ZodString;
|
|
5518
|
+
confirmation: z.ZodObject<{
|
|
5519
|
+
token: z.ZodString;
|
|
5520
|
+
expiresAt: z.ZodString;
|
|
5521
|
+
}, z.core.$strip>;
|
|
5522
|
+
}, z.core.$strip>;
|
|
5523
|
+
declare const DraftDeleteResultSchema: z.ZodObject<{
|
|
5524
|
+
postId: z.ZodString;
|
|
5525
|
+
status: z.ZodLiteral<"DELETED">;
|
|
5526
|
+
}, z.core.$strip>;
|
|
5527
|
+
declare const DraftDeletePreviewResponseSchema: z.ZodObject<{
|
|
5528
|
+
data: z.ZodObject<{
|
|
5529
|
+
operation: z.ZodLiteral<"posts.delete.execute">;
|
|
5530
|
+
projectId: z.ZodString;
|
|
5531
|
+
postId: z.ZodString;
|
|
5532
|
+
version: z.ZodNumber;
|
|
5533
|
+
caption: z.ZodString;
|
|
5534
|
+
mediaCount: z.ZodNumber;
|
|
5535
|
+
consequence: z.ZodString;
|
|
5536
|
+
confirmation: z.ZodObject<{
|
|
5537
|
+
token: z.ZodString;
|
|
5538
|
+
expiresAt: z.ZodString;
|
|
5539
|
+
}, z.core.$strip>;
|
|
5540
|
+
}, z.core.$strip>;
|
|
5541
|
+
meta: z.ZodObject<{
|
|
5542
|
+
requestId: z.ZodString;
|
|
5543
|
+
}, z.core.$strip>;
|
|
5544
|
+
}, z.core.$strip>;
|
|
5545
|
+
declare const DraftDeleteResponseSchema: z.ZodObject<{
|
|
5546
|
+
data: z.ZodObject<{
|
|
5547
|
+
postId: z.ZodString;
|
|
5548
|
+
status: z.ZodLiteral<"DELETED">;
|
|
5549
|
+
}, z.core.$strip>;
|
|
5550
|
+
meta: z.ZodObject<{
|
|
5551
|
+
requestId: z.ZodString;
|
|
5552
|
+
}, z.core.$strip>;
|
|
5553
|
+
}, z.core.$strip>;
|
|
5554
|
+
type DraftDeletePreview = z.infer<typeof DraftDeletePreviewSchema>;
|
|
5555
|
+
type DraftDeleteResult = z.infer<typeof DraftDeleteResultSchema>;
|
|
5556
|
+
declare const PostScheduleCancelInputSchema: z.ZodObject<{}, z.core.$strict>;
|
|
5557
|
+
declare const PostScheduleCancelExecuteInputSchema: z.ZodObject<{
|
|
5558
|
+
confirmationToken: z.ZodString;
|
|
5559
|
+
}, z.core.$strict>;
|
|
5560
|
+
declare const PostScheduleCancelResultSchema: z.ZodObject<{
|
|
5561
|
+
postId: z.ZodString;
|
|
5562
|
+
version: z.ZodNumber;
|
|
5563
|
+
status: z.ZodLiteral<"DRAFT">;
|
|
5564
|
+
}, z.core.$strip>;
|
|
5565
|
+
declare const PostScheduleCancelPreviewSchema: z.ZodObject<{
|
|
5566
|
+
accounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5567
|
+
destinationId: z.ZodString;
|
|
5568
|
+
integrationId: z.ZodNullable<z.ZodString>;
|
|
5569
|
+
provider: z.ZodEnum<{
|
|
5570
|
+
INSTAGRAM: "INSTAGRAM";
|
|
5571
|
+
TIKTOK: "TIKTOK";
|
|
5572
|
+
YOUTUBE: "YOUTUBE";
|
|
5573
|
+
BLUESKY: "BLUESKY";
|
|
5574
|
+
LINKEDIN: "LINKEDIN";
|
|
5575
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5576
|
+
}>;
|
|
5577
|
+
accountId: z.ZodNullable<z.ZodString>;
|
|
5578
|
+
accountName: z.ZodNullable<z.ZodString>;
|
|
5579
|
+
}, z.core.$strip>>>;
|
|
5580
|
+
operation: z.ZodLiteral<"posts.schedule.cancel.execute">;
|
|
5581
|
+
projectId: z.ZodString;
|
|
5582
|
+
postId: z.ZodString;
|
|
5583
|
+
version: z.ZodNumber;
|
|
5584
|
+
scheduledAt: z.ZodString;
|
|
5585
|
+
timezone: z.ZodNullable<z.ZodString>;
|
|
5586
|
+
destinations: z.ZodArray<z.ZodEnum<{
|
|
5587
|
+
INSTAGRAM: "INSTAGRAM";
|
|
5588
|
+
TIKTOK: "TIKTOK";
|
|
5589
|
+
YOUTUBE: "YOUTUBE";
|
|
5590
|
+
BLUESKY: "BLUESKY";
|
|
5591
|
+
LINKEDIN: "LINKEDIN";
|
|
5592
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5593
|
+
}>>;
|
|
5594
|
+
consequence: z.ZodString;
|
|
5595
|
+
confirmation: z.ZodObject<{
|
|
5596
|
+
token: z.ZodString;
|
|
5597
|
+
expiresAt: z.ZodString;
|
|
5598
|
+
}, z.core.$strip>;
|
|
5599
|
+
}, z.core.$strip>;
|
|
5600
|
+
declare const PostScheduleCancelPreviewResponseSchema: z.ZodObject<{
|
|
5601
|
+
data: z.ZodObject<{
|
|
5602
|
+
accounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5603
|
+
destinationId: z.ZodString;
|
|
5604
|
+
integrationId: z.ZodNullable<z.ZodString>;
|
|
5605
|
+
provider: z.ZodEnum<{
|
|
5606
|
+
INSTAGRAM: "INSTAGRAM";
|
|
5607
|
+
TIKTOK: "TIKTOK";
|
|
5608
|
+
YOUTUBE: "YOUTUBE";
|
|
5609
|
+
BLUESKY: "BLUESKY";
|
|
5610
|
+
LINKEDIN: "LINKEDIN";
|
|
5611
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5612
|
+
}>;
|
|
5613
|
+
accountId: z.ZodNullable<z.ZodString>;
|
|
5614
|
+
accountName: z.ZodNullable<z.ZodString>;
|
|
5615
|
+
}, z.core.$strip>>>;
|
|
5616
|
+
operation: z.ZodLiteral<"posts.schedule.cancel.execute">;
|
|
5617
|
+
projectId: z.ZodString;
|
|
5618
|
+
postId: z.ZodString;
|
|
5619
|
+
version: z.ZodNumber;
|
|
5620
|
+
scheduledAt: z.ZodString;
|
|
5621
|
+
timezone: z.ZodNullable<z.ZodString>;
|
|
5622
|
+
destinations: z.ZodArray<z.ZodEnum<{
|
|
5623
|
+
INSTAGRAM: "INSTAGRAM";
|
|
5624
|
+
TIKTOK: "TIKTOK";
|
|
5625
|
+
YOUTUBE: "YOUTUBE";
|
|
5626
|
+
BLUESKY: "BLUESKY";
|
|
5627
|
+
LINKEDIN: "LINKEDIN";
|
|
5628
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5629
|
+
}>>;
|
|
5630
|
+
consequence: z.ZodString;
|
|
5631
|
+
confirmation: z.ZodObject<{
|
|
5632
|
+
token: z.ZodString;
|
|
5633
|
+
expiresAt: z.ZodString;
|
|
5634
|
+
}, z.core.$strip>;
|
|
5635
|
+
}, z.core.$strip>;
|
|
5636
|
+
meta: z.ZodObject<{
|
|
5637
|
+
requestId: z.ZodString;
|
|
5638
|
+
}, z.core.$strip>;
|
|
5639
|
+
}, z.core.$strip>;
|
|
5640
|
+
declare const PostScheduleCancelResponseSchema: z.ZodObject<{
|
|
5641
|
+
data: z.ZodObject<{
|
|
5642
|
+
postId: z.ZodString;
|
|
5643
|
+
version: z.ZodNumber;
|
|
5644
|
+
status: z.ZodLiteral<"DRAFT">;
|
|
5645
|
+
}, z.core.$strip>;
|
|
4926
5646
|
meta: z.ZodObject<{
|
|
4927
5647
|
requestId: z.ZodString;
|
|
4928
5648
|
}, z.core.$strip>;
|
|
4929
5649
|
}, z.core.$strip>;
|
|
5650
|
+
type PostScheduleCancelPreview = z.infer<typeof PostScheduleCancelPreviewSchema>;
|
|
5651
|
+
type PostScheduleCancelResult = z.infer<typeof PostScheduleCancelResultSchema>;
|
|
4930
5652
|
declare const ReadinessStatusSchema: z.ZodEnum<{
|
|
4931
5653
|
unknown: "unknown";
|
|
4932
5654
|
pass: "pass";
|
|
@@ -4935,6 +5657,7 @@ declare const ReadinessStatusSchema: z.ZodEnum<{
|
|
|
4935
5657
|
warning: "warning";
|
|
4936
5658
|
}>;
|
|
4937
5659
|
declare const ReadinessActionSchema: z.ZodObject<{
|
|
5660
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4938
5661
|
kind: z.ZodEnum<{
|
|
4939
5662
|
reconnect: "reconnect";
|
|
4940
5663
|
replace_media: "replace_media";
|
|
@@ -4942,6 +5665,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
4942
5665
|
review_settings: "review_settings";
|
|
4943
5666
|
edit_caption: "edit_caption";
|
|
4944
5667
|
refresh_health: "refresh_health";
|
|
5668
|
+
refresh_readiness: "refresh_readiness";
|
|
4945
5669
|
}>;
|
|
4946
5670
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
4947
5671
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -4954,6 +5678,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
4954
5678
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4955
5679
|
}, z.core.$strip>;
|
|
4956
5680
|
declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
5681
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4957
5682
|
key: z.ZodString;
|
|
4958
5683
|
id: z.ZodEnum<{
|
|
4959
5684
|
caption: "caption";
|
|
@@ -4992,6 +5717,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
4992
5717
|
message: z.ZodString;
|
|
4993
5718
|
code: z.ZodString;
|
|
4994
5719
|
action: z.ZodNullable<z.ZodObject<{
|
|
5720
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4995
5721
|
kind: z.ZodEnum<{
|
|
4996
5722
|
reconnect: "reconnect";
|
|
4997
5723
|
replace_media: "replace_media";
|
|
@@ -4999,6 +5725,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
4999
5725
|
review_settings: "review_settings";
|
|
5000
5726
|
edit_caption: "edit_caption";
|
|
5001
5727
|
refresh_health: "refresh_health";
|
|
5728
|
+
refresh_readiness: "refresh_readiness";
|
|
5002
5729
|
}>;
|
|
5003
5730
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5004
5731
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5013,6 +5740,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
5013
5740
|
}, z.core.$strip>;
|
|
5014
5741
|
declare const PostReadinessSchema: z.ZodObject<{
|
|
5015
5742
|
checks: z.ZodArray<z.ZodObject<{
|
|
5743
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5016
5744
|
key: z.ZodString;
|
|
5017
5745
|
id: z.ZodEnum<{
|
|
5018
5746
|
caption: "caption";
|
|
@@ -5051,6 +5779,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
5051
5779
|
message: z.ZodString;
|
|
5052
5780
|
code: z.ZodString;
|
|
5053
5781
|
action: z.ZodNullable<z.ZodObject<{
|
|
5782
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5054
5783
|
kind: z.ZodEnum<{
|
|
5055
5784
|
reconnect: "reconnect";
|
|
5056
5785
|
replace_media: "replace_media";
|
|
@@ -5058,6 +5787,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
5058
5787
|
review_settings: "review_settings";
|
|
5059
5788
|
edit_caption: "edit_caption";
|
|
5060
5789
|
refresh_health: "refresh_health";
|
|
5790
|
+
refresh_readiness: "refresh_readiness";
|
|
5061
5791
|
}>;
|
|
5062
5792
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5063
5793
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5071,6 +5801,8 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
5071
5801
|
}, z.core.$strip>>;
|
|
5072
5802
|
}, z.core.$strip>>;
|
|
5073
5803
|
accounts: z.ZodArray<z.ZodObject<{
|
|
5804
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5805
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5074
5806
|
provider: z.ZodEnum<{
|
|
5075
5807
|
INSTAGRAM: "INSTAGRAM";
|
|
5076
5808
|
TIKTOK: "TIKTOK";
|
|
@@ -5099,6 +5831,7 @@ type PostReadiness = z.infer<typeof PostReadinessSchema>;
|
|
|
5099
5831
|
declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
5100
5832
|
data: z.ZodObject<{
|
|
5101
5833
|
checks: z.ZodArray<z.ZodObject<{
|
|
5834
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5102
5835
|
key: z.ZodString;
|
|
5103
5836
|
id: z.ZodEnum<{
|
|
5104
5837
|
caption: "caption";
|
|
@@ -5137,6 +5870,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
5137
5870
|
message: z.ZodString;
|
|
5138
5871
|
code: z.ZodString;
|
|
5139
5872
|
action: z.ZodNullable<z.ZodObject<{
|
|
5873
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5140
5874
|
kind: z.ZodEnum<{
|
|
5141
5875
|
reconnect: "reconnect";
|
|
5142
5876
|
replace_media: "replace_media";
|
|
@@ -5144,6 +5878,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
5144
5878
|
review_settings: "review_settings";
|
|
5145
5879
|
edit_caption: "edit_caption";
|
|
5146
5880
|
refresh_health: "refresh_health";
|
|
5881
|
+
refresh_readiness: "refresh_readiness";
|
|
5147
5882
|
}>;
|
|
5148
5883
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5149
5884
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5157,6 +5892,8 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
5157
5892
|
}, z.core.$strip>>;
|
|
5158
5893
|
}, z.core.$strip>>;
|
|
5159
5894
|
accounts: z.ZodArray<z.ZodObject<{
|
|
5895
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5896
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5160
5897
|
provider: z.ZodEnum<{
|
|
5161
5898
|
INSTAGRAM: "INSTAGRAM";
|
|
5162
5899
|
TIKTOK: "TIKTOK";
|
|
@@ -5197,6 +5934,51 @@ declare const PostScheduleExecuteInputSchema: z.ZodObject<{
|
|
|
5197
5934
|
}, z.core.$strict>;
|
|
5198
5935
|
type PostScheduleExecuteInput = z.infer<typeof PostScheduleExecuteInputSchema>;
|
|
5199
5936
|
declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
5937
|
+
accounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5938
|
+
destinationId: z.ZodString;
|
|
5939
|
+
integrationId: z.ZodString;
|
|
5940
|
+
provider: z.ZodEnum<{
|
|
5941
|
+
INSTAGRAM: "INSTAGRAM";
|
|
5942
|
+
TIKTOK: "TIKTOK";
|
|
5943
|
+
YOUTUBE: "YOUTUBE";
|
|
5944
|
+
BLUESKY: "BLUESKY";
|
|
5945
|
+
LINKEDIN: "LINKEDIN";
|
|
5946
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5947
|
+
}>;
|
|
5948
|
+
accountId: z.ZodNullable<z.ZodString>;
|
|
5949
|
+
accountName: z.ZodNullable<z.ZodString>;
|
|
5950
|
+
accountAvatar: z.ZodNullable<z.ZodString>;
|
|
5951
|
+
caption: z.ZodString;
|
|
5952
|
+
tiktokSettings: z.ZodNullable<z.ZodObject<{
|
|
5953
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
5954
|
+
DIRECT_POST: "DIRECT_POST";
|
|
5955
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
5956
|
+
}>>;
|
|
5957
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
5958
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
5959
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
5960
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
5961
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
5962
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
5963
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
5964
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
5965
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
5966
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
5967
|
+
}, z.core.$strict>>;
|
|
5968
|
+
youtubeSettings: z.ZodNullable<z.ZodObject<{
|
|
5969
|
+
title: z.ZodString;
|
|
5970
|
+
categoryId: z.ZodString;
|
|
5971
|
+
privacyStatus: z.ZodEnum<{
|
|
5972
|
+
PUBLIC: "PUBLIC";
|
|
5973
|
+
UNLISTED: "UNLISTED";
|
|
5974
|
+
PRIVATE: "PRIVATE";
|
|
5975
|
+
}>;
|
|
5976
|
+
madeForKids: z.ZodBoolean;
|
|
5977
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
5978
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
5979
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5980
|
+
}, z.core.$strict>>;
|
|
5981
|
+
}, z.core.$strip>>>;
|
|
5200
5982
|
operation: z.ZodLiteral<"posts.schedule.execute">;
|
|
5201
5983
|
deliveryMode: z.ZodLiteral<"SCHEDULED">;
|
|
5202
5984
|
post: z.ZodObject<{
|
|
@@ -5238,6 +6020,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5238
6020
|
}, z.core.$strip>>>;
|
|
5239
6021
|
readiness: z.ZodObject<{
|
|
5240
6022
|
checks: z.ZodArray<z.ZodObject<{
|
|
6023
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5241
6024
|
key: z.ZodString;
|
|
5242
6025
|
id: z.ZodEnum<{
|
|
5243
6026
|
caption: "caption";
|
|
@@ -5276,6 +6059,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5276
6059
|
message: z.ZodString;
|
|
5277
6060
|
code: z.ZodString;
|
|
5278
6061
|
action: z.ZodNullable<z.ZodObject<{
|
|
6062
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5279
6063
|
kind: z.ZodEnum<{
|
|
5280
6064
|
reconnect: "reconnect";
|
|
5281
6065
|
replace_media: "replace_media";
|
|
@@ -5283,6 +6067,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5283
6067
|
review_settings: "review_settings";
|
|
5284
6068
|
edit_caption: "edit_caption";
|
|
5285
6069
|
refresh_health: "refresh_health";
|
|
6070
|
+
refresh_readiness: "refresh_readiness";
|
|
5286
6071
|
}>;
|
|
5287
6072
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5288
6073
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5296,6 +6081,8 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5296
6081
|
}, z.core.$strip>>;
|
|
5297
6082
|
}, z.core.$strip>>;
|
|
5298
6083
|
accounts: z.ZodArray<z.ZodObject<{
|
|
6084
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6085
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5299
6086
|
provider: z.ZodEnum<{
|
|
5300
6087
|
INSTAGRAM: "INSTAGRAM";
|
|
5301
6088
|
TIKTOK: "TIKTOK";
|
|
@@ -5328,6 +6115,51 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5328
6115
|
type PostSchedulePreview = z.infer<typeof PostSchedulePreviewSchema>;
|
|
5329
6116
|
declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
5330
6117
|
data: z.ZodObject<{
|
|
6118
|
+
accounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6119
|
+
destinationId: z.ZodString;
|
|
6120
|
+
integrationId: z.ZodString;
|
|
6121
|
+
provider: z.ZodEnum<{
|
|
6122
|
+
INSTAGRAM: "INSTAGRAM";
|
|
6123
|
+
TIKTOK: "TIKTOK";
|
|
6124
|
+
YOUTUBE: "YOUTUBE";
|
|
6125
|
+
BLUESKY: "BLUESKY";
|
|
6126
|
+
LINKEDIN: "LINKEDIN";
|
|
6127
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
6128
|
+
}>;
|
|
6129
|
+
accountId: z.ZodNullable<z.ZodString>;
|
|
6130
|
+
accountName: z.ZodNullable<z.ZodString>;
|
|
6131
|
+
accountAvatar: z.ZodNullable<z.ZodString>;
|
|
6132
|
+
caption: z.ZodString;
|
|
6133
|
+
tiktokSettings: z.ZodNullable<z.ZodObject<{
|
|
6134
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
6135
|
+
DIRECT_POST: "DIRECT_POST";
|
|
6136
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
6137
|
+
}>>;
|
|
6138
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
6139
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
6140
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
6141
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
6142
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
6143
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
6144
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
6145
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
6146
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
6147
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
6148
|
+
}, z.core.$strict>>;
|
|
6149
|
+
youtubeSettings: z.ZodNullable<z.ZodObject<{
|
|
6150
|
+
title: z.ZodString;
|
|
6151
|
+
categoryId: z.ZodString;
|
|
6152
|
+
privacyStatus: z.ZodEnum<{
|
|
6153
|
+
PUBLIC: "PUBLIC";
|
|
6154
|
+
UNLISTED: "UNLISTED";
|
|
6155
|
+
PRIVATE: "PRIVATE";
|
|
6156
|
+
}>;
|
|
6157
|
+
madeForKids: z.ZodBoolean;
|
|
6158
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
6159
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
6160
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
6161
|
+
}, z.core.$strict>>;
|
|
6162
|
+
}, z.core.$strip>>>;
|
|
5331
6163
|
operation: z.ZodLiteral<"posts.schedule.execute">;
|
|
5332
6164
|
deliveryMode: z.ZodLiteral<"SCHEDULED">;
|
|
5333
6165
|
post: z.ZodObject<{
|
|
@@ -5369,6 +6201,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5369
6201
|
}, z.core.$strip>>>;
|
|
5370
6202
|
readiness: z.ZodObject<{
|
|
5371
6203
|
checks: z.ZodArray<z.ZodObject<{
|
|
6204
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5372
6205
|
key: z.ZodString;
|
|
5373
6206
|
id: z.ZodEnum<{
|
|
5374
6207
|
caption: "caption";
|
|
@@ -5407,6 +6240,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5407
6240
|
message: z.ZodString;
|
|
5408
6241
|
code: z.ZodString;
|
|
5409
6242
|
action: z.ZodNullable<z.ZodObject<{
|
|
6243
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5410
6244
|
kind: z.ZodEnum<{
|
|
5411
6245
|
reconnect: "reconnect";
|
|
5412
6246
|
replace_media: "replace_media";
|
|
@@ -5414,6 +6248,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5414
6248
|
review_settings: "review_settings";
|
|
5415
6249
|
edit_caption: "edit_caption";
|
|
5416
6250
|
refresh_health: "refresh_health";
|
|
6251
|
+
refresh_readiness: "refresh_readiness";
|
|
5417
6252
|
}>;
|
|
5418
6253
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5419
6254
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5427,6 +6262,8 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5427
6262
|
}, z.core.$strip>>;
|
|
5428
6263
|
}, z.core.$strip>>;
|
|
5429
6264
|
accounts: z.ZodArray<z.ZodObject<{
|
|
6265
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6266
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5430
6267
|
provider: z.ZodEnum<{
|
|
5431
6268
|
INSTAGRAM: "INSTAGRAM";
|
|
5432
6269
|
TIKTOK: "TIKTOK";
|
|
@@ -5461,6 +6298,11 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5461
6298
|
}, z.core.$strip>;
|
|
5462
6299
|
}, z.core.$strip>;
|
|
5463
6300
|
declare const PostSchedulePendingSchema: z.ZodObject<{
|
|
6301
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6302
|
+
destinationId: z.ZodString;
|
|
6303
|
+
integrationId: z.ZodString;
|
|
6304
|
+
mutationId: z.ZodString;
|
|
6305
|
+
}, z.core.$strip>>>;
|
|
5464
6306
|
status: z.ZodLiteral<"PENDING">;
|
|
5465
6307
|
postId: z.ZodString;
|
|
5466
6308
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -5515,6 +6357,40 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
5515
6357
|
position: z.ZodNumber;
|
|
5516
6358
|
}, z.core.$strip>>;
|
|
5517
6359
|
destinations: z.ZodArray<z.ZodObject<{
|
|
6360
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6361
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6362
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6363
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6364
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6365
|
+
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
6366
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
6367
|
+
DIRECT_POST: "DIRECT_POST";
|
|
6368
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
6369
|
+
}>>;
|
|
6370
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
6371
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
6372
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
6373
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
6374
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
6375
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
6376
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
6377
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
6378
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
6379
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
6380
|
+
}, z.core.$strict>>>>;
|
|
6381
|
+
youtubeSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
6382
|
+
title: z.ZodString;
|
|
6383
|
+
categoryId: z.ZodString;
|
|
6384
|
+
privacyStatus: z.ZodEnum<{
|
|
6385
|
+
PUBLIC: "PUBLIC";
|
|
6386
|
+
UNLISTED: "UNLISTED";
|
|
6387
|
+
PRIVATE: "PRIVATE";
|
|
6388
|
+
}>;
|
|
6389
|
+
madeForKids: z.ZodBoolean;
|
|
6390
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
6391
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
6392
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
6393
|
+
}, z.core.$strict>>>>;
|
|
5518
6394
|
provider: z.ZodEnum<{
|
|
5519
6395
|
INSTAGRAM: "INSTAGRAM";
|
|
5520
6396
|
TIKTOK: "TIKTOK";
|
|
@@ -5589,6 +6465,11 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
5589
6465
|
}, z.core.$strict>>>;
|
|
5590
6466
|
}, z.core.$strict>>>;
|
|
5591
6467
|
}, z.core.$strip>, z.ZodObject<{
|
|
6468
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6469
|
+
destinationId: z.ZodString;
|
|
6470
|
+
integrationId: z.ZodString;
|
|
6471
|
+
mutationId: z.ZodString;
|
|
6472
|
+
}, z.core.$strip>>>;
|
|
5592
6473
|
status: z.ZodLiteral<"PENDING">;
|
|
5593
6474
|
postId: z.ZodString;
|
|
5594
6475
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -5644,6 +6525,40 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5644
6525
|
position: z.ZodNumber;
|
|
5645
6526
|
}, z.core.$strip>>;
|
|
5646
6527
|
destinations: z.ZodArray<z.ZodObject<{
|
|
6528
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6529
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6530
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6531
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6532
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6533
|
+
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
6534
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
6535
|
+
DIRECT_POST: "DIRECT_POST";
|
|
6536
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
6537
|
+
}>>;
|
|
6538
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
6539
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
6540
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
6541
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
6542
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
6543
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
6544
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
6545
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
6546
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
6547
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
6548
|
+
}, z.core.$strict>>>>;
|
|
6549
|
+
youtubeSettings: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
6550
|
+
title: z.ZodString;
|
|
6551
|
+
categoryId: z.ZodString;
|
|
6552
|
+
privacyStatus: z.ZodEnum<{
|
|
6553
|
+
PUBLIC: "PUBLIC";
|
|
6554
|
+
UNLISTED: "UNLISTED";
|
|
6555
|
+
PRIVATE: "PRIVATE";
|
|
6556
|
+
}>;
|
|
6557
|
+
madeForKids: z.ZodBoolean;
|
|
6558
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
6559
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
6560
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
6561
|
+
}, z.core.$strict>>>>;
|
|
5647
6562
|
provider: z.ZodEnum<{
|
|
5648
6563
|
INSTAGRAM: "INSTAGRAM";
|
|
5649
6564
|
TIKTOK: "TIKTOK";
|
|
@@ -5718,6 +6633,11 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5718
6633
|
}, z.core.$strict>>>;
|
|
5719
6634
|
}, z.core.$strict>>>;
|
|
5720
6635
|
}, z.core.$strip>, z.ZodObject<{
|
|
6636
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6637
|
+
destinationId: z.ZodString;
|
|
6638
|
+
integrationId: z.ZodString;
|
|
6639
|
+
mutationId: z.ZodString;
|
|
6640
|
+
}, z.core.$strip>>>;
|
|
5721
6641
|
status: z.ZodLiteral<"PENDING">;
|
|
5722
6642
|
postId: z.ZodString;
|
|
5723
6643
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -5735,25 +6655,28 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5735
6655
|
}, z.core.$strip>;
|
|
5736
6656
|
}, z.core.$strip>;
|
|
5737
6657
|
declare const PostPublishInputSchema: z.ZodObject<{
|
|
5738
|
-
|
|
6658
|
+
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6659
|
+
destinations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
5739
6660
|
INSTAGRAM: "INSTAGRAM";
|
|
5740
6661
|
TIKTOK: "TIKTOK";
|
|
5741
6662
|
YOUTUBE: "YOUTUBE";
|
|
5742
6663
|
BLUESKY: "BLUESKY";
|
|
5743
6664
|
LINKEDIN: "LINKEDIN";
|
|
5744
6665
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5745
|
-
}
|
|
6666
|
+
}>>>;
|
|
5746
6667
|
}, z.core.$strict>;
|
|
5747
|
-
type PostPublishInput = z.
|
|
6668
|
+
type PostPublishInput = z.input<typeof PostPublishInputSchema>;
|
|
6669
|
+
type PostPublishData = z.infer<typeof PostPublishInputSchema>;
|
|
5748
6670
|
declare const PostPublishExecuteInputSchema: z.ZodObject<{
|
|
5749
|
-
|
|
6671
|
+
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6672
|
+
destinations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
5750
6673
|
INSTAGRAM: "INSTAGRAM";
|
|
5751
6674
|
TIKTOK: "TIKTOK";
|
|
5752
6675
|
YOUTUBE: "YOUTUBE";
|
|
5753
6676
|
BLUESKY: "BLUESKY";
|
|
5754
6677
|
LINKEDIN: "LINKEDIN";
|
|
5755
6678
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5756
|
-
}
|
|
6679
|
+
}>>>;
|
|
5757
6680
|
confirmationToken: z.ZodString;
|
|
5758
6681
|
}, z.core.$strict>;
|
|
5759
6682
|
type PostPublishExecuteInput = z.infer<typeof PostPublishExecuteInputSchema>;
|
|
@@ -5774,14 +6697,60 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5774
6697
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
5775
6698
|
}>;
|
|
5776
6699
|
}, z.core.$strip>;
|
|
5777
|
-
destinations: z.ZodArray<z.ZodEnum<{
|
|
6700
|
+
destinations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
5778
6701
|
INSTAGRAM: "INSTAGRAM";
|
|
5779
6702
|
TIKTOK: "TIKTOK";
|
|
5780
6703
|
YOUTUBE: "YOUTUBE";
|
|
5781
6704
|
BLUESKY: "BLUESKY";
|
|
5782
6705
|
LINKEDIN: "LINKEDIN";
|
|
5783
6706
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5784
|
-
}
|
|
6707
|
+
}>>>;
|
|
6708
|
+
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6709
|
+
accounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6710
|
+
destinationId: z.ZodString;
|
|
6711
|
+
integrationId: z.ZodString;
|
|
6712
|
+
provider: z.ZodEnum<{
|
|
6713
|
+
INSTAGRAM: "INSTAGRAM";
|
|
6714
|
+
TIKTOK: "TIKTOK";
|
|
6715
|
+
YOUTUBE: "YOUTUBE";
|
|
6716
|
+
BLUESKY: "BLUESKY";
|
|
6717
|
+
LINKEDIN: "LINKEDIN";
|
|
6718
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
6719
|
+
}>;
|
|
6720
|
+
accountId: z.ZodNullable<z.ZodString>;
|
|
6721
|
+
accountName: z.ZodNullable<z.ZodString>;
|
|
6722
|
+
accountAvatar: z.ZodNullable<z.ZodString>;
|
|
6723
|
+
caption: z.ZodString;
|
|
6724
|
+
tiktokSettings: z.ZodNullable<z.ZodObject<{
|
|
6725
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
6726
|
+
DIRECT_POST: "DIRECT_POST";
|
|
6727
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
6728
|
+
}>>;
|
|
6729
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
6730
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
6731
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
6732
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
6733
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
6734
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
6735
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
6736
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
6737
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
6738
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
6739
|
+
}, z.core.$strict>>;
|
|
6740
|
+
youtubeSettings: z.ZodNullable<z.ZodObject<{
|
|
6741
|
+
title: z.ZodString;
|
|
6742
|
+
categoryId: z.ZodString;
|
|
6743
|
+
privacyStatus: z.ZodEnum<{
|
|
6744
|
+
PUBLIC: "PUBLIC";
|
|
6745
|
+
UNLISTED: "UNLISTED";
|
|
6746
|
+
PRIVATE: "PRIVATE";
|
|
6747
|
+
}>;
|
|
6748
|
+
madeForKids: z.ZodBoolean;
|
|
6749
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
6750
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
6751
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
6752
|
+
}, z.core.$strict>>;
|
|
6753
|
+
}, z.core.$strip>>>;
|
|
5785
6754
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5786
6755
|
visibility: z.ZodEnum<{
|
|
5787
6756
|
PUBLIC: "PUBLIC";
|
|
@@ -5793,6 +6762,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5793
6762
|
}, z.core.$strip>>>;
|
|
5794
6763
|
readiness: z.ZodObject<{
|
|
5795
6764
|
checks: z.ZodArray<z.ZodObject<{
|
|
6765
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5796
6766
|
key: z.ZodString;
|
|
5797
6767
|
id: z.ZodEnum<{
|
|
5798
6768
|
caption: "caption";
|
|
@@ -5831,6 +6801,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5831
6801
|
message: z.ZodString;
|
|
5832
6802
|
code: z.ZodString;
|
|
5833
6803
|
action: z.ZodNullable<z.ZodObject<{
|
|
6804
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5834
6805
|
kind: z.ZodEnum<{
|
|
5835
6806
|
reconnect: "reconnect";
|
|
5836
6807
|
replace_media: "replace_media";
|
|
@@ -5838,6 +6809,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5838
6809
|
review_settings: "review_settings";
|
|
5839
6810
|
edit_caption: "edit_caption";
|
|
5840
6811
|
refresh_health: "refresh_health";
|
|
6812
|
+
refresh_readiness: "refresh_readiness";
|
|
5841
6813
|
}>;
|
|
5842
6814
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5843
6815
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5851,6 +6823,8 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5851
6823
|
}, z.core.$strip>>;
|
|
5852
6824
|
}, z.core.$strip>>;
|
|
5853
6825
|
accounts: z.ZodArray<z.ZodObject<{
|
|
6826
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6827
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5854
6828
|
provider: z.ZodEnum<{
|
|
5855
6829
|
INSTAGRAM: "INSTAGRAM";
|
|
5856
6830
|
TIKTOK: "TIKTOK";
|
|
@@ -5899,14 +6873,60 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5899
6873
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
5900
6874
|
}>;
|
|
5901
6875
|
}, z.core.$strip>;
|
|
5902
|
-
destinations: z.ZodArray<z.ZodEnum<{
|
|
6876
|
+
destinations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
5903
6877
|
INSTAGRAM: "INSTAGRAM";
|
|
5904
6878
|
TIKTOK: "TIKTOK";
|
|
5905
6879
|
YOUTUBE: "YOUTUBE";
|
|
5906
6880
|
BLUESKY: "BLUESKY";
|
|
5907
6881
|
LINKEDIN: "LINKEDIN";
|
|
5908
6882
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5909
|
-
}
|
|
6883
|
+
}>>>;
|
|
6884
|
+
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6885
|
+
accounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6886
|
+
destinationId: z.ZodString;
|
|
6887
|
+
integrationId: z.ZodString;
|
|
6888
|
+
provider: z.ZodEnum<{
|
|
6889
|
+
INSTAGRAM: "INSTAGRAM";
|
|
6890
|
+
TIKTOK: "TIKTOK";
|
|
6891
|
+
YOUTUBE: "YOUTUBE";
|
|
6892
|
+
BLUESKY: "BLUESKY";
|
|
6893
|
+
LINKEDIN: "LINKEDIN";
|
|
6894
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
6895
|
+
}>;
|
|
6896
|
+
accountId: z.ZodNullable<z.ZodString>;
|
|
6897
|
+
accountName: z.ZodNullable<z.ZodString>;
|
|
6898
|
+
accountAvatar: z.ZodNullable<z.ZodString>;
|
|
6899
|
+
caption: z.ZodString;
|
|
6900
|
+
tiktokSettings: z.ZodNullable<z.ZodObject<{
|
|
6901
|
+
postMode: z.ZodDefault<z.ZodEnum<{
|
|
6902
|
+
DIRECT_POST: "DIRECT_POST";
|
|
6903
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
6904
|
+
}>>;
|
|
6905
|
+
privacyLevel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
6906
|
+
allowComment: z.ZodDefault<z.ZodBoolean>;
|
|
6907
|
+
allowDuet: z.ZodDefault<z.ZodBoolean>;
|
|
6908
|
+
allowStitch: z.ZodDefault<z.ZodBoolean>;
|
|
6909
|
+
commercialContentEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
6910
|
+
promotesOwnBrand: z.ZodDefault<z.ZodBoolean>;
|
|
6911
|
+
promotesThirdParty: z.ZodDefault<z.ZodBoolean>;
|
|
6912
|
+
isAiGenerated: z.ZodDefault<z.ZodBoolean>;
|
|
6913
|
+
videoCoverTimestampMs: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
6914
|
+
consentedAt: z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
6915
|
+
}, z.core.$strict>>;
|
|
6916
|
+
youtubeSettings: z.ZodNullable<z.ZodObject<{
|
|
6917
|
+
title: z.ZodString;
|
|
6918
|
+
categoryId: z.ZodString;
|
|
6919
|
+
privacyStatus: z.ZodEnum<{
|
|
6920
|
+
PUBLIC: "PUBLIC";
|
|
6921
|
+
UNLISTED: "UNLISTED";
|
|
6922
|
+
PRIVATE: "PRIVATE";
|
|
6923
|
+
}>;
|
|
6924
|
+
madeForKids: z.ZodBoolean;
|
|
6925
|
+
containsSyntheticMedia: z.ZodDefault<z.ZodBoolean>;
|
|
6926
|
+
notifySubscribers: z.ZodDefault<z.ZodBoolean>;
|
|
6927
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
6928
|
+
}, z.core.$strict>>;
|
|
6929
|
+
}, z.core.$strip>>>;
|
|
5910
6930
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5911
6931
|
visibility: z.ZodEnum<{
|
|
5912
6932
|
PUBLIC: "PUBLIC";
|
|
@@ -5918,6 +6938,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5918
6938
|
}, z.core.$strip>>>;
|
|
5919
6939
|
readiness: z.ZodObject<{
|
|
5920
6940
|
checks: z.ZodArray<z.ZodObject<{
|
|
6941
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5921
6942
|
key: z.ZodString;
|
|
5922
6943
|
id: z.ZodEnum<{
|
|
5923
6944
|
caption: "caption";
|
|
@@ -5956,6 +6977,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5956
6977
|
message: z.ZodString;
|
|
5957
6978
|
code: z.ZodString;
|
|
5958
6979
|
action: z.ZodNullable<z.ZodObject<{
|
|
6980
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5959
6981
|
kind: z.ZodEnum<{
|
|
5960
6982
|
reconnect: "reconnect";
|
|
5961
6983
|
replace_media: "replace_media";
|
|
@@ -5963,6 +6985,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5963
6985
|
review_settings: "review_settings";
|
|
5964
6986
|
edit_caption: "edit_caption";
|
|
5965
6987
|
refresh_health: "refresh_health";
|
|
6988
|
+
refresh_readiness: "refresh_readiness";
|
|
5966
6989
|
}>;
|
|
5967
6990
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5968
6991
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5976,6 +6999,8 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5976
6999
|
}, z.core.$strip>>;
|
|
5977
7000
|
}, z.core.$strip>>;
|
|
5978
7001
|
accounts: z.ZodArray<z.ZodObject<{
|
|
7002
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
7003
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5979
7004
|
provider: z.ZodEnum<{
|
|
5980
7005
|
INSTAGRAM: "INSTAGRAM";
|
|
5981
7006
|
TIKTOK: "TIKTOK";
|
|
@@ -6030,6 +7055,11 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
6030
7055
|
}, z.core.$strip>>;
|
|
6031
7056
|
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
6032
7057
|
destinations: z.ZodArray<z.ZodObject<{
|
|
7058
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7059
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7060
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7061
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7062
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6033
7063
|
provider: z.ZodEnum<{
|
|
6034
7064
|
INSTAGRAM: "INSTAGRAM";
|
|
6035
7065
|
TIKTOK: "TIKTOK";
|
|
@@ -6079,6 +7109,11 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
6079
7109
|
}, z.core.$strip>>;
|
|
6080
7110
|
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
6081
7111
|
destinations: z.ZodArray<z.ZodObject<{
|
|
7112
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7113
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7114
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7115
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7116
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6082
7117
|
provider: z.ZodEnum<{
|
|
6083
7118
|
INSTAGRAM: "INSTAGRAM";
|
|
6084
7119
|
TIKTOK: "TIKTOK";
|
|
@@ -6131,6 +7166,11 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
6131
7166
|
}, z.core.$strip>>;
|
|
6132
7167
|
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
6133
7168
|
destinations: z.ZodArray<z.ZodObject<{
|
|
7169
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7170
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7171
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7172
|
+
accountName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7173
|
+
accountAvatar: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6134
7174
|
provider: z.ZodEnum<{
|
|
6135
7175
|
INSTAGRAM: "INSTAGRAM";
|
|
6136
7176
|
TIKTOK: "TIKTOK";
|
|
@@ -9299,9 +10339,13 @@ declare const PostDeliveryCheckInputSchema: z.ZodObject<{
|
|
|
9299
10339
|
LINKEDIN: "LINKEDIN";
|
|
9300
10340
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
9301
10341
|
}>;
|
|
10342
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
9302
10343
|
}, z.core.$strict>;
|
|
9303
10344
|
type PostDeliveryCheckInput = z.infer<typeof PostDeliveryCheckInputSchema>;
|
|
9304
10345
|
declare const PostDeliveryCheckResultSchema: z.ZodObject<{
|
|
10346
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10347
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10348
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9305
10349
|
postId: z.ZodString;
|
|
9306
10350
|
provider: z.ZodEnum<{
|
|
9307
10351
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -9328,6 +10372,9 @@ declare const PostDeliveryCheckResultSchema: z.ZodObject<{
|
|
|
9328
10372
|
type PostDeliveryCheckResult = z.infer<typeof PostDeliveryCheckResultSchema>;
|
|
9329
10373
|
declare const PostDeliveryCheckResponseSchema: z.ZodObject<{
|
|
9330
10374
|
data: z.ZodObject<{
|
|
10375
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10376
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10377
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9331
10378
|
postId: z.ZodString;
|
|
9332
10379
|
provider: z.ZodEnum<{
|
|
9333
10380
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -9356,6 +10403,7 @@ declare const PostDeliveryCheckResponseSchema: z.ZodObject<{
|
|
|
9356
10403
|
}, z.core.$strip>;
|
|
9357
10404
|
}, z.core.$strip>;
|
|
9358
10405
|
declare const PostRecoveryInputSchema: z.ZodObject<{
|
|
10406
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
9359
10407
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9360
10408
|
action: z.ZodEnum<{
|
|
9361
10409
|
ATTACH: "ATTACH";
|
|
@@ -9366,6 +10414,7 @@ declare const PostRecoveryInputSchema: z.ZodObject<{
|
|
|
9366
10414
|
}, z.core.$strict>;
|
|
9367
10415
|
type PostRecoveryInput = z.infer<typeof PostRecoveryInputSchema>;
|
|
9368
10416
|
declare const PostRecoveryExecuteInputSchema: z.ZodObject<{
|
|
10417
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
9369
10418
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9370
10419
|
action: z.ZodEnum<{
|
|
9371
10420
|
ATTACH: "ATTACH";
|
|
@@ -9377,6 +10426,8 @@ declare const PostRecoveryExecuteInputSchema: z.ZodObject<{
|
|
|
9377
10426
|
}, z.core.$strict>;
|
|
9378
10427
|
type PostRecoveryExecuteInput = z.infer<typeof PostRecoveryExecuteInputSchema>;
|
|
9379
10428
|
declare const PostRecoveryPreviewSchema: z.ZodObject<{
|
|
10429
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10430
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9380
10431
|
operation: z.ZodLiteral<"posts.recovery.execute">;
|
|
9381
10432
|
projectId: z.ZodString;
|
|
9382
10433
|
postId: z.ZodString;
|
|
@@ -9402,6 +10453,8 @@ declare const PostRecoveryPreviewSchema: z.ZodObject<{
|
|
|
9402
10453
|
type PostRecoveryPreview = z.infer<typeof PostRecoveryPreviewSchema>;
|
|
9403
10454
|
declare const PostRecoveryPreviewResponseSchema: z.ZodObject<{
|
|
9404
10455
|
data: z.ZodObject<{
|
|
10456
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10457
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9405
10458
|
operation: z.ZodLiteral<"posts.recovery.execute">;
|
|
9406
10459
|
projectId: z.ZodString;
|
|
9407
10460
|
postId: z.ZodString;
|
|
@@ -9429,6 +10482,9 @@ declare const PostRecoveryPreviewResponseSchema: z.ZodObject<{
|
|
|
9429
10482
|
}, z.core.$strip>;
|
|
9430
10483
|
}, z.core.$strip>;
|
|
9431
10484
|
declare const PostRecoveryResultSchema: z.ZodObject<{
|
|
10485
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10486
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10487
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9432
10488
|
postId: z.ZodString;
|
|
9433
10489
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9434
10490
|
action: z.ZodEnum<{
|
|
@@ -9446,6 +10502,9 @@ declare const PostRecoveryResultSchema: z.ZodObject<{
|
|
|
9446
10502
|
type PostRecoveryResult = z.infer<typeof PostRecoveryResultSchema>;
|
|
9447
10503
|
declare const PostRecoveryResponseSchema: z.ZodObject<{
|
|
9448
10504
|
data: z.ZodObject<{
|
|
10505
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10506
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10507
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9449
10508
|
postId: z.ZodString;
|
|
9450
10509
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
9451
10510
|
action: z.ZodEnum<{
|
|
@@ -9465,4 +10524,4 @@ declare const PostRecoveryResponseSchema: z.ZodObject<{
|
|
|
9465
10524
|
}, z.core.$strip>;
|
|
9466
10525
|
}, z.core.$strip>;
|
|
9467
10526
|
|
|
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 };
|
|
10527
|
+
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, BlueskyDeliveryOptionsSchema, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, DraftAccountDestinationSchema, type DraftDeletePreview, DraftDeletePreviewResponseSchema, DraftDeletePreviewSchema, DraftDeleteResponseSchema, type DraftDeleteResult, DraftDeleteResultSchema, type DraftPostData, type DraftPostInput, DraftPostInputSchema, type DraftPostUpdateData, type DraftPostUpdateInput, DraftPostUpdateInputSchema, IntegrationConnectionStatusSchema, type IntegrationDisconnectExecuteInput, IntegrationDisconnectExecuteInputSchema, IntegrationDisconnectInputSchema, type IntegrationDisconnectPreview, IntegrationDisconnectPreviewResponseSchema, IntegrationDisconnectPreviewSchema, IntegrationDisconnectResponseSchema, type IntegrationDisconnectResult, IntegrationDisconnectResultSchema, 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 PostPublishData, 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, PostScheduleCancelExecuteInputSchema, PostScheduleCancelInputSchema, type PostScheduleCancelPreview, PostScheduleCancelPreviewResponseSchema, PostScheduleCancelPreviewSchema, PostScheduleCancelResponseSchema, type PostScheduleCancelResult, PostScheduleCancelResultSchema, 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 };
|