@rolino/contracts 0.8.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 +17 -0
- package/dist/index.cjs +248 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1285 -31
- package/dist/index.d.ts +1285 -31
- package/dist/index.js +221 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
|
|
3
3
|
declare const API_VERSION: "v1";
|
|
4
|
-
declare const CONTRACT_VERSION: "0.
|
|
4
|
+
declare const CONTRACT_VERSION: "0.20.0";
|
|
5
5
|
declare const RequestMetadataSchema: z.ZodObject<{
|
|
6
6
|
requestId: z.ZodString;
|
|
7
7
|
}, z.core.$strip>;
|
|
@@ -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";
|
|
@@ -2504,7 +2508,7 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
2504
2508
|
name: z.ZodLiteral<"Rolino">;
|
|
2505
2509
|
serverVersion: z.ZodString;
|
|
2506
2510
|
apiVersion: z.ZodLiteral<"v1">;
|
|
2507
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2511
|
+
contractVersion: z.ZodLiteral<"0.20.0">;
|
|
2508
2512
|
authentication: z.ZodObject<{
|
|
2509
2513
|
browserSession: z.ZodBoolean;
|
|
2510
2514
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -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";
|
|
@@ -2557,7 +2563,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
2557
2563
|
name: z.ZodLiteral<"Rolino">;
|
|
2558
2564
|
serverVersion: z.ZodString;
|
|
2559
2565
|
apiVersion: z.ZodLiteral<"v1">;
|
|
2560
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2566
|
+
contractVersion: z.ZodLiteral<"0.20.0">;
|
|
2561
2567
|
authentication: z.ZodObject<{
|
|
2562
2568
|
browserSession: z.ZodBoolean;
|
|
2563
2569
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -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";
|
|
@@ -3798,6 +3848,9 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
3798
3848
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
3799
3849
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
3800
3850
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
3851
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3852
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3853
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3801
3854
|
attemptCount: z.ZodNumber;
|
|
3802
3855
|
}, z.core.$strip>;
|
|
3803
3856
|
type PostDestination = z.infer<typeof PostDestinationSchema>;
|
|
@@ -3949,6 +4002,40 @@ declare const PostSchema: z.ZodObject<{
|
|
|
3949
4002
|
position: z.ZodNumber;
|
|
3950
4003
|
}, z.core.$strip>>;
|
|
3951
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>>>>;
|
|
3952
4039
|
provider: z.ZodEnum<{
|
|
3953
4040
|
INSTAGRAM: "INSTAGRAM";
|
|
3954
4041
|
TIKTOK: "TIKTOK";
|
|
@@ -3986,6 +4073,9 @@ declare const PostSchema: z.ZodObject<{
|
|
|
3986
4073
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
3987
4074
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
3988
4075
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4076
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4077
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4078
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3989
4079
|
attemptCount: z.ZodNumber;
|
|
3990
4080
|
}, z.core.$strip>>;
|
|
3991
4081
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4077,6 +4167,40 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
4077
4167
|
position: z.ZodNumber;
|
|
4078
4168
|
}, z.core.$strip>>;
|
|
4079
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>>>>;
|
|
4080
4204
|
provider: z.ZodEnum<{
|
|
4081
4205
|
INSTAGRAM: "INSTAGRAM";
|
|
4082
4206
|
TIKTOK: "TIKTOK";
|
|
@@ -4114,6 +4238,9 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
4114
4238
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4115
4239
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4116
4240
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4241
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4242
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4243
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4117
4244
|
attemptCount: z.ZodNumber;
|
|
4118
4245
|
}, z.core.$strip>>;
|
|
4119
4246
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4197,6 +4324,40 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
4197
4324
|
position: z.ZodNumber;
|
|
4198
4325
|
}, z.core.$strip>>;
|
|
4199
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>>>>;
|
|
4200
4361
|
provider: z.ZodEnum<{
|
|
4201
4362
|
INSTAGRAM: "INSTAGRAM";
|
|
4202
4363
|
TIKTOK: "TIKTOK";
|
|
@@ -4234,6 +4395,9 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
4234
4395
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4235
4396
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4236
4397
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4398
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4399
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4400
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4237
4401
|
attemptCount: z.ZodNumber;
|
|
4238
4402
|
}, z.core.$strip>>;
|
|
4239
4403
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4320,6 +4484,40 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
4320
4484
|
position: z.ZodNumber;
|
|
4321
4485
|
}, z.core.$strip>>;
|
|
4322
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>>>>;
|
|
4323
4521
|
provider: z.ZodEnum<{
|
|
4324
4522
|
INSTAGRAM: "INSTAGRAM";
|
|
4325
4523
|
TIKTOK: "TIKTOK";
|
|
@@ -4357,6 +4555,9 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
4357
4555
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
4358
4556
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
4359
4557
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
4558
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4559
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4560
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4360
4561
|
attemptCount: z.ZodNumber;
|
|
4361
4562
|
}, z.core.$strip>>;
|
|
4362
4563
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -4396,7 +4597,141 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
4396
4597
|
}, z.core.$strip>;
|
|
4397
4598
|
}, z.core.$strip>;
|
|
4398
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>;
|
|
4399
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>>>;
|
|
4400
4735
|
caption: z.ZodDefault<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
4401
4736
|
platforms: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
4402
4737
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -4407,6 +4742,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
4407
4742
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4408
4743
|
}>>>;
|
|
4409
4744
|
mediaAssetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4745
|
+
mediaAltText: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>;
|
|
4410
4746
|
captionOverrides: z.ZodDefault<z.ZodObject<{
|
|
4411
4747
|
INSTAGRAM: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4412
4748
|
TIKTOK: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4474,6 +4810,73 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
4474
4810
|
type DraftPostInput = z.input<typeof DraftPostInputSchema>;
|
|
4475
4811
|
type DraftPostData = z.infer<typeof DraftPostInputSchema>;
|
|
4476
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>>>;
|
|
4477
4880
|
caption: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
4478
4881
|
platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4479
4882
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -4484,6 +4887,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
4484
4887
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4485
4888
|
}>>>;
|
|
4486
4889
|
mediaAssetIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4890
|
+
mediaAltText: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>;
|
|
4487
4891
|
captionOverrides: z.ZodOptional<z.ZodObject<{
|
|
4488
4892
|
INSTAGRAM: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4489
4893
|
TIKTOK: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4563,6 +4967,8 @@ declare const ProviderHealthStatusSchema: z.ZodEnum<{
|
|
|
4563
4967
|
blocking: "blocking";
|
|
4564
4968
|
}>;
|
|
4565
4969
|
declare const IntegrationHealthSchema: z.ZodObject<{
|
|
4970
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4971
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4566
4972
|
provider: z.ZodEnum<{
|
|
4567
4973
|
INSTAGRAM: "INSTAGRAM";
|
|
4568
4974
|
TIKTOK: "TIKTOK";
|
|
@@ -4603,6 +5009,8 @@ declare const IntegrationHealthSchema: z.ZodObject<{
|
|
|
4603
5009
|
type IntegrationHealth = z.infer<typeof IntegrationHealthSchema>;
|
|
4604
5010
|
declare const IntegrationHealthListDataSchema: z.ZodObject<{
|
|
4605
5011
|
items: z.ZodArray<z.ZodObject<{
|
|
5012
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5013
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4606
5014
|
provider: z.ZodEnum<{
|
|
4607
5015
|
INSTAGRAM: "INSTAGRAM";
|
|
4608
5016
|
TIKTOK: "TIKTOK";
|
|
@@ -4645,6 +5053,8 @@ type IntegrationHealthListData = z.infer<typeof IntegrationHealthListDataSchema>
|
|
|
4645
5053
|
declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
4646
5054
|
data: z.ZodObject<{
|
|
4647
5055
|
items: z.ZodArray<z.ZodObject<{
|
|
5056
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5057
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4648
5058
|
provider: z.ZodEnum<{
|
|
4649
5059
|
INSTAGRAM: "INSTAGRAM";
|
|
4650
5060
|
TIKTOK: "TIKTOK";
|
|
@@ -4689,10 +5099,13 @@ declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
|
4689
5099
|
}, z.core.$strip>;
|
|
4690
5100
|
declare const ProviderDeliveryOptionsProviderSchema: z.ZodEnum<{
|
|
4691
5101
|
TIKTOK: "TIKTOK";
|
|
5102
|
+
BLUESKY: "BLUESKY";
|
|
4692
5103
|
LINKEDIN: "LINKEDIN";
|
|
4693
5104
|
}>;
|
|
4694
5105
|
type ProviderDeliveryOptionsProvider = z.infer<typeof ProviderDeliveryOptionsProviderSchema>;
|
|
4695
5106
|
declare const TikTokDeliveryOptionsSchema: z.ZodObject<{
|
|
5107
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5108
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4696
5109
|
provider: z.ZodLiteral<"TIKTOK">;
|
|
4697
5110
|
account: z.ZodObject<{
|
|
4698
5111
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4728,6 +5141,8 @@ declare const TikTokDeliveryOptionsSchema: z.ZodObject<{
|
|
|
4728
5141
|
checkedAt: z.ZodString;
|
|
4729
5142
|
}, z.core.$strip>;
|
|
4730
5143
|
declare const LinkedInDeliveryOptionsSchema: z.ZodObject<{
|
|
5144
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5145
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4731
5146
|
provider: z.ZodLiteral<"LINKEDIN">;
|
|
4732
5147
|
account: z.ZodObject<{
|
|
4733
5148
|
displayName: z.ZodNullable<z.ZodString>;
|
|
@@ -4764,28 +5179,63 @@ declare const LinkedInDeliveryOptionsSchema: z.ZodObject<{
|
|
|
4764
5179
|
}, z.core.$strip>;
|
|
4765
5180
|
checkedAt: z.ZodString;
|
|
4766
5181
|
}, z.core.$strip>;
|
|
4767
|
-
declare const
|
|
4768
|
-
|
|
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">;
|
|
4769
5186
|
account: z.ZodObject<{
|
|
4770
5187
|
username: z.ZodNullable<z.ZodString>;
|
|
4771
5188
|
displayName: z.ZodNullable<z.ZodString>;
|
|
4772
5189
|
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
4773
5190
|
}, z.core.$strip>;
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
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>;
|
|
5215
|
+
declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5216
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5217
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5218
|
+
provider: z.ZodLiteral<"TIKTOK">;
|
|
5219
|
+
account: z.ZodObject<{
|
|
5220
|
+
username: z.ZodNullable<z.ZodString>;
|
|
5221
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
5222
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
5223
|
+
}, z.core.$strip>;
|
|
5224
|
+
allowedPostModes: z.ZodArray<z.ZodEnum<{
|
|
5225
|
+
DIRECT_POST: "DIRECT_POST";
|
|
5226
|
+
MEDIA_UPLOAD: "MEDIA_UPLOAD";
|
|
5227
|
+
}>>;
|
|
5228
|
+
visibilityOptions: z.ZodArray<z.ZodString>;
|
|
5229
|
+
interactions: z.ZodObject<{
|
|
5230
|
+
comment: z.ZodObject<{
|
|
5231
|
+
available: z.ZodBoolean;
|
|
5232
|
+
}, z.core.$strip>;
|
|
5233
|
+
duet: z.ZodObject<{
|
|
5234
|
+
available: z.ZodBoolean;
|
|
5235
|
+
}, z.core.$strip>;
|
|
5236
|
+
stitch: z.ZodObject<{
|
|
5237
|
+
available: z.ZodBoolean;
|
|
5238
|
+
}, z.core.$strip>;
|
|
4789
5239
|
}, z.core.$strip>;
|
|
4790
5240
|
maxVideoDurationMs: z.ZodNullable<z.ZodNumber>;
|
|
4791
5241
|
health: z.ZodObject<{
|
|
@@ -4799,6 +5249,8 @@ declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4799
5249
|
}, z.core.$strip>;
|
|
4800
5250
|
checkedAt: z.ZodString;
|
|
4801
5251
|
}, z.core.$strip>, z.ZodObject<{
|
|
5252
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5253
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4802
5254
|
provider: z.ZodLiteral<"LINKEDIN">;
|
|
4803
5255
|
account: z.ZodObject<{
|
|
4804
5256
|
displayName: z.ZodNullable<z.ZodString>;
|
|
@@ -4834,10 +5286,44 @@ declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4834
5286
|
message: z.ZodString;
|
|
4835
5287
|
}, z.core.$strip>;
|
|
4836
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;
|
|
4837
5321
|
}, z.core.$strip>], "provider">;
|
|
4838
5322
|
type ProviderDeliveryOptions = z.infer<typeof ProviderDeliveryOptionsSchema>;
|
|
4839
5323
|
declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
4840
5324
|
data: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5325
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5326
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4841
5327
|
provider: z.ZodLiteral<"TIKTOK">;
|
|
4842
5328
|
account: z.ZodObject<{
|
|
4843
5329
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4872,6 +5358,8 @@ declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
|
4872
5358
|
}, z.core.$strip>;
|
|
4873
5359
|
checkedAt: z.ZodString;
|
|
4874
5360
|
}, z.core.$strip>, z.ZodObject<{
|
|
5361
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5362
|
+
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4875
5363
|
provider: z.ZodLiteral<"LINKEDIN">;
|
|
4876
5364
|
account: z.ZodObject<{
|
|
4877
5365
|
displayName: z.ZodNullable<z.ZodString>;
|
|
@@ -4907,11 +5395,260 @@ declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
|
4907
5395
|
message: z.ZodString;
|
|
4908
5396
|
}, z.core.$strip>;
|
|
4909
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;
|
|
4910
5430
|
}, z.core.$strip>], "provider">;
|
|
4911
5431
|
meta: z.ZodObject<{
|
|
4912
5432
|
requestId: z.ZodString;
|
|
4913
5433
|
}, z.core.$strip>;
|
|
4914
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>;
|
|
5646
|
+
meta: z.ZodObject<{
|
|
5647
|
+
requestId: z.ZodString;
|
|
5648
|
+
}, z.core.$strip>;
|
|
5649
|
+
}, z.core.$strip>;
|
|
5650
|
+
type PostScheduleCancelPreview = z.infer<typeof PostScheduleCancelPreviewSchema>;
|
|
5651
|
+
type PostScheduleCancelResult = z.infer<typeof PostScheduleCancelResultSchema>;
|
|
4915
5652
|
declare const ReadinessStatusSchema: z.ZodEnum<{
|
|
4916
5653
|
unknown: "unknown";
|
|
4917
5654
|
pass: "pass";
|
|
@@ -4920,6 +5657,7 @@ declare const ReadinessStatusSchema: z.ZodEnum<{
|
|
|
4920
5657
|
warning: "warning";
|
|
4921
5658
|
}>;
|
|
4922
5659
|
declare const ReadinessActionSchema: z.ZodObject<{
|
|
5660
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4923
5661
|
kind: z.ZodEnum<{
|
|
4924
5662
|
reconnect: "reconnect";
|
|
4925
5663
|
replace_media: "replace_media";
|
|
@@ -4927,6 +5665,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
4927
5665
|
review_settings: "review_settings";
|
|
4928
5666
|
edit_caption: "edit_caption";
|
|
4929
5667
|
refresh_health: "refresh_health";
|
|
5668
|
+
refresh_readiness: "refresh_readiness";
|
|
4930
5669
|
}>;
|
|
4931
5670
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
4932
5671
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -4939,6 +5678,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
4939
5678
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4940
5679
|
}, z.core.$strip>;
|
|
4941
5680
|
declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
5681
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4942
5682
|
key: z.ZodString;
|
|
4943
5683
|
id: z.ZodEnum<{
|
|
4944
5684
|
caption: "caption";
|
|
@@ -4977,6 +5717,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
4977
5717
|
message: z.ZodString;
|
|
4978
5718
|
code: z.ZodString;
|
|
4979
5719
|
action: z.ZodNullable<z.ZodObject<{
|
|
5720
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
4980
5721
|
kind: z.ZodEnum<{
|
|
4981
5722
|
reconnect: "reconnect";
|
|
4982
5723
|
replace_media: "replace_media";
|
|
@@ -4984,6 +5725,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
4984
5725
|
review_settings: "review_settings";
|
|
4985
5726
|
edit_caption: "edit_caption";
|
|
4986
5727
|
refresh_health: "refresh_health";
|
|
5728
|
+
refresh_readiness: "refresh_readiness";
|
|
4987
5729
|
}>;
|
|
4988
5730
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
4989
5731
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -4998,6 +5740,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
4998
5740
|
}, z.core.$strip>;
|
|
4999
5741
|
declare const PostReadinessSchema: z.ZodObject<{
|
|
5000
5742
|
checks: z.ZodArray<z.ZodObject<{
|
|
5743
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5001
5744
|
key: z.ZodString;
|
|
5002
5745
|
id: z.ZodEnum<{
|
|
5003
5746
|
caption: "caption";
|
|
@@ -5036,6 +5779,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
5036
5779
|
message: z.ZodString;
|
|
5037
5780
|
code: z.ZodString;
|
|
5038
5781
|
action: z.ZodNullable<z.ZodObject<{
|
|
5782
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5039
5783
|
kind: z.ZodEnum<{
|
|
5040
5784
|
reconnect: "reconnect";
|
|
5041
5785
|
replace_media: "replace_media";
|
|
@@ -5043,6 +5787,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
5043
5787
|
review_settings: "review_settings";
|
|
5044
5788
|
edit_caption: "edit_caption";
|
|
5045
5789
|
refresh_health: "refresh_health";
|
|
5790
|
+
refresh_readiness: "refresh_readiness";
|
|
5046
5791
|
}>;
|
|
5047
5792
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5048
5793
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5056,6 +5801,8 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
5056
5801
|
}, z.core.$strip>>;
|
|
5057
5802
|
}, z.core.$strip>>;
|
|
5058
5803
|
accounts: z.ZodArray<z.ZodObject<{
|
|
5804
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5805
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5059
5806
|
provider: z.ZodEnum<{
|
|
5060
5807
|
INSTAGRAM: "INSTAGRAM";
|
|
5061
5808
|
TIKTOK: "TIKTOK";
|
|
@@ -5084,6 +5831,7 @@ type PostReadiness = z.infer<typeof PostReadinessSchema>;
|
|
|
5084
5831
|
declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
5085
5832
|
data: z.ZodObject<{
|
|
5086
5833
|
checks: z.ZodArray<z.ZodObject<{
|
|
5834
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5087
5835
|
key: z.ZodString;
|
|
5088
5836
|
id: z.ZodEnum<{
|
|
5089
5837
|
caption: "caption";
|
|
@@ -5122,6 +5870,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
5122
5870
|
message: z.ZodString;
|
|
5123
5871
|
code: z.ZodString;
|
|
5124
5872
|
action: z.ZodNullable<z.ZodObject<{
|
|
5873
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5125
5874
|
kind: z.ZodEnum<{
|
|
5126
5875
|
reconnect: "reconnect";
|
|
5127
5876
|
replace_media: "replace_media";
|
|
@@ -5129,6 +5878,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
5129
5878
|
review_settings: "review_settings";
|
|
5130
5879
|
edit_caption: "edit_caption";
|
|
5131
5880
|
refresh_health: "refresh_health";
|
|
5881
|
+
refresh_readiness: "refresh_readiness";
|
|
5132
5882
|
}>;
|
|
5133
5883
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5134
5884
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5142,6 +5892,8 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
5142
5892
|
}, z.core.$strip>>;
|
|
5143
5893
|
}, z.core.$strip>>;
|
|
5144
5894
|
accounts: z.ZodArray<z.ZodObject<{
|
|
5895
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5896
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5145
5897
|
provider: z.ZodEnum<{
|
|
5146
5898
|
INSTAGRAM: "INSTAGRAM";
|
|
5147
5899
|
TIKTOK: "TIKTOK";
|
|
@@ -5182,6 +5934,51 @@ declare const PostScheduleExecuteInputSchema: z.ZodObject<{
|
|
|
5182
5934
|
}, z.core.$strict>;
|
|
5183
5935
|
type PostScheduleExecuteInput = z.infer<typeof PostScheduleExecuteInputSchema>;
|
|
5184
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>>>;
|
|
5185
5982
|
operation: z.ZodLiteral<"posts.schedule.execute">;
|
|
5186
5983
|
deliveryMode: z.ZodLiteral<"SCHEDULED">;
|
|
5187
5984
|
post: z.ZodObject<{
|
|
@@ -5223,6 +6020,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5223
6020
|
}, z.core.$strip>>>;
|
|
5224
6021
|
readiness: z.ZodObject<{
|
|
5225
6022
|
checks: z.ZodArray<z.ZodObject<{
|
|
6023
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5226
6024
|
key: z.ZodString;
|
|
5227
6025
|
id: z.ZodEnum<{
|
|
5228
6026
|
caption: "caption";
|
|
@@ -5261,6 +6059,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5261
6059
|
message: z.ZodString;
|
|
5262
6060
|
code: z.ZodString;
|
|
5263
6061
|
action: z.ZodNullable<z.ZodObject<{
|
|
6062
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5264
6063
|
kind: z.ZodEnum<{
|
|
5265
6064
|
reconnect: "reconnect";
|
|
5266
6065
|
replace_media: "replace_media";
|
|
@@ -5268,6 +6067,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5268
6067
|
review_settings: "review_settings";
|
|
5269
6068
|
edit_caption: "edit_caption";
|
|
5270
6069
|
refresh_health: "refresh_health";
|
|
6070
|
+
refresh_readiness: "refresh_readiness";
|
|
5271
6071
|
}>;
|
|
5272
6072
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5273
6073
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5281,6 +6081,8 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5281
6081
|
}, z.core.$strip>>;
|
|
5282
6082
|
}, z.core.$strip>>;
|
|
5283
6083
|
accounts: z.ZodArray<z.ZodObject<{
|
|
6084
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6085
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5284
6086
|
provider: z.ZodEnum<{
|
|
5285
6087
|
INSTAGRAM: "INSTAGRAM";
|
|
5286
6088
|
TIKTOK: "TIKTOK";
|
|
@@ -5313,6 +6115,51 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
5313
6115
|
type PostSchedulePreview = z.infer<typeof PostSchedulePreviewSchema>;
|
|
5314
6116
|
declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
5315
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>>>;
|
|
5316
6163
|
operation: z.ZodLiteral<"posts.schedule.execute">;
|
|
5317
6164
|
deliveryMode: z.ZodLiteral<"SCHEDULED">;
|
|
5318
6165
|
post: z.ZodObject<{
|
|
@@ -5354,6 +6201,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5354
6201
|
}, z.core.$strip>>>;
|
|
5355
6202
|
readiness: z.ZodObject<{
|
|
5356
6203
|
checks: z.ZodArray<z.ZodObject<{
|
|
6204
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5357
6205
|
key: z.ZodString;
|
|
5358
6206
|
id: z.ZodEnum<{
|
|
5359
6207
|
caption: "caption";
|
|
@@ -5392,6 +6240,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5392
6240
|
message: z.ZodString;
|
|
5393
6241
|
code: z.ZodString;
|
|
5394
6242
|
action: z.ZodNullable<z.ZodObject<{
|
|
6243
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5395
6244
|
kind: z.ZodEnum<{
|
|
5396
6245
|
reconnect: "reconnect";
|
|
5397
6246
|
replace_media: "replace_media";
|
|
@@ -5399,6 +6248,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5399
6248
|
review_settings: "review_settings";
|
|
5400
6249
|
edit_caption: "edit_caption";
|
|
5401
6250
|
refresh_health: "refresh_health";
|
|
6251
|
+
refresh_readiness: "refresh_readiness";
|
|
5402
6252
|
}>;
|
|
5403
6253
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5404
6254
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5412,6 +6262,8 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5412
6262
|
}, z.core.$strip>>;
|
|
5413
6263
|
}, z.core.$strip>>;
|
|
5414
6264
|
accounts: z.ZodArray<z.ZodObject<{
|
|
6265
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6266
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5415
6267
|
provider: z.ZodEnum<{
|
|
5416
6268
|
INSTAGRAM: "INSTAGRAM";
|
|
5417
6269
|
TIKTOK: "TIKTOK";
|
|
@@ -5446,6 +6298,11 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
5446
6298
|
}, z.core.$strip>;
|
|
5447
6299
|
}, z.core.$strip>;
|
|
5448
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>>>;
|
|
5449
6306
|
status: z.ZodLiteral<"PENDING">;
|
|
5450
6307
|
postId: z.ZodString;
|
|
5451
6308
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -5500,6 +6357,40 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
5500
6357
|
position: z.ZodNumber;
|
|
5501
6358
|
}, z.core.$strip>>;
|
|
5502
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>>>>;
|
|
5503
6394
|
provider: z.ZodEnum<{
|
|
5504
6395
|
INSTAGRAM: "INSTAGRAM";
|
|
5505
6396
|
TIKTOK: "TIKTOK";
|
|
@@ -5537,6 +6428,9 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
5537
6428
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
5538
6429
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
5539
6430
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
6431
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6432
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6433
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5540
6434
|
attemptCount: z.ZodNumber;
|
|
5541
6435
|
}, z.core.$strip>>;
|
|
5542
6436
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -5571,6 +6465,11 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
5571
6465
|
}, z.core.$strict>>>;
|
|
5572
6466
|
}, z.core.$strict>>>;
|
|
5573
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>>>;
|
|
5574
6473
|
status: z.ZodLiteral<"PENDING">;
|
|
5575
6474
|
postId: z.ZodString;
|
|
5576
6475
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -5626,6 +6525,40 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5626
6525
|
position: z.ZodNumber;
|
|
5627
6526
|
}, z.core.$strip>>;
|
|
5628
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>>>>;
|
|
5629
6562
|
provider: z.ZodEnum<{
|
|
5630
6563
|
INSTAGRAM: "INSTAGRAM";
|
|
5631
6564
|
TIKTOK: "TIKTOK";
|
|
@@ -5663,6 +6596,9 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5663
6596
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
5664
6597
|
publishedAt: z.ZodNullable<z.ZodString>;
|
|
5665
6598
|
remoteUrl: z.ZodNullable<z.ZodString>;
|
|
6599
|
+
remotePostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6600
|
+
remoteContainerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6601
|
+
studioUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5666
6602
|
attemptCount: z.ZodNumber;
|
|
5667
6603
|
}, z.core.$strip>>;
|
|
5668
6604
|
providerSettings: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
@@ -5697,6 +6633,11 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5697
6633
|
}, z.core.$strict>>>;
|
|
5698
6634
|
}, z.core.$strict>>>;
|
|
5699
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>>>;
|
|
5700
6641
|
status: z.ZodLiteral<"PENDING">;
|
|
5701
6642
|
postId: z.ZodString;
|
|
5702
6643
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -5714,25 +6655,28 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
5714
6655
|
}, z.core.$strip>;
|
|
5715
6656
|
}, z.core.$strip>;
|
|
5716
6657
|
declare const PostPublishInputSchema: z.ZodObject<{
|
|
5717
|
-
|
|
6658
|
+
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6659
|
+
destinations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
5718
6660
|
INSTAGRAM: "INSTAGRAM";
|
|
5719
6661
|
TIKTOK: "TIKTOK";
|
|
5720
6662
|
YOUTUBE: "YOUTUBE";
|
|
5721
6663
|
BLUESKY: "BLUESKY";
|
|
5722
6664
|
LINKEDIN: "LINKEDIN";
|
|
5723
6665
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5724
|
-
}
|
|
6666
|
+
}>>>;
|
|
5725
6667
|
}, z.core.$strict>;
|
|
5726
|
-
type PostPublishInput = z.
|
|
6668
|
+
type PostPublishInput = z.input<typeof PostPublishInputSchema>;
|
|
6669
|
+
type PostPublishData = z.infer<typeof PostPublishInputSchema>;
|
|
5727
6670
|
declare const PostPublishExecuteInputSchema: z.ZodObject<{
|
|
5728
|
-
|
|
6671
|
+
destinationIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6672
|
+
destinations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
5729
6673
|
INSTAGRAM: "INSTAGRAM";
|
|
5730
6674
|
TIKTOK: "TIKTOK";
|
|
5731
6675
|
YOUTUBE: "YOUTUBE";
|
|
5732
6676
|
BLUESKY: "BLUESKY";
|
|
5733
6677
|
LINKEDIN: "LINKEDIN";
|
|
5734
6678
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5735
|
-
}
|
|
6679
|
+
}>>>;
|
|
5736
6680
|
confirmationToken: z.ZodString;
|
|
5737
6681
|
}, z.core.$strict>;
|
|
5738
6682
|
type PostPublishExecuteInput = z.infer<typeof PostPublishExecuteInputSchema>;
|
|
@@ -5753,14 +6697,60 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5753
6697
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
5754
6698
|
}>;
|
|
5755
6699
|
}, z.core.$strip>;
|
|
5756
|
-
destinations: z.ZodArray<z.ZodEnum<{
|
|
6700
|
+
destinations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
5757
6701
|
INSTAGRAM: "INSTAGRAM";
|
|
5758
6702
|
TIKTOK: "TIKTOK";
|
|
5759
6703
|
YOUTUBE: "YOUTUBE";
|
|
5760
6704
|
BLUESKY: "BLUESKY";
|
|
5761
6705
|
LINKEDIN: "LINKEDIN";
|
|
5762
6706
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5763
|
-
}
|
|
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>>>;
|
|
5764
6754
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5765
6755
|
visibility: z.ZodEnum<{
|
|
5766
6756
|
PUBLIC: "PUBLIC";
|
|
@@ -5772,6 +6762,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5772
6762
|
}, z.core.$strip>>>;
|
|
5773
6763
|
readiness: z.ZodObject<{
|
|
5774
6764
|
checks: z.ZodArray<z.ZodObject<{
|
|
6765
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5775
6766
|
key: z.ZodString;
|
|
5776
6767
|
id: z.ZodEnum<{
|
|
5777
6768
|
caption: "caption";
|
|
@@ -5810,6 +6801,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5810
6801
|
message: z.ZodString;
|
|
5811
6802
|
code: z.ZodString;
|
|
5812
6803
|
action: z.ZodNullable<z.ZodObject<{
|
|
6804
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5813
6805
|
kind: z.ZodEnum<{
|
|
5814
6806
|
reconnect: "reconnect";
|
|
5815
6807
|
replace_media: "replace_media";
|
|
@@ -5817,6 +6809,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5817
6809
|
review_settings: "review_settings";
|
|
5818
6810
|
edit_caption: "edit_caption";
|
|
5819
6811
|
refresh_health: "refresh_health";
|
|
6812
|
+
refresh_readiness: "refresh_readiness";
|
|
5820
6813
|
}>;
|
|
5821
6814
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5822
6815
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5830,6 +6823,8 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
5830
6823
|
}, z.core.$strip>>;
|
|
5831
6824
|
}, z.core.$strip>>;
|
|
5832
6825
|
accounts: z.ZodArray<z.ZodObject<{
|
|
6826
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6827
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5833
6828
|
provider: z.ZodEnum<{
|
|
5834
6829
|
INSTAGRAM: "INSTAGRAM";
|
|
5835
6830
|
TIKTOK: "TIKTOK";
|
|
@@ -5878,14 +6873,60 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5878
6873
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
5879
6874
|
}>;
|
|
5880
6875
|
}, z.core.$strip>;
|
|
5881
|
-
destinations: z.ZodArray<z.ZodEnum<{
|
|
6876
|
+
destinations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
5882
6877
|
INSTAGRAM: "INSTAGRAM";
|
|
5883
6878
|
TIKTOK: "TIKTOK";
|
|
5884
6879
|
YOUTUBE: "YOUTUBE";
|
|
5885
6880
|
BLUESKY: "BLUESKY";
|
|
5886
6881
|
LINKEDIN: "LINKEDIN";
|
|
5887
6882
|
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
5888
|
-
}
|
|
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>>>;
|
|
5889
6930
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5890
6931
|
visibility: z.ZodEnum<{
|
|
5891
6932
|
PUBLIC: "PUBLIC";
|
|
@@ -5897,6 +6938,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5897
6938
|
}, z.core.$strip>>>;
|
|
5898
6939
|
readiness: z.ZodObject<{
|
|
5899
6940
|
checks: z.ZodArray<z.ZodObject<{
|
|
6941
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5900
6942
|
key: z.ZodString;
|
|
5901
6943
|
id: z.ZodEnum<{
|
|
5902
6944
|
caption: "caption";
|
|
@@ -5935,6 +6977,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5935
6977
|
message: z.ZodString;
|
|
5936
6978
|
code: z.ZodString;
|
|
5937
6979
|
action: z.ZodNullable<z.ZodObject<{
|
|
6980
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5938
6981
|
kind: z.ZodEnum<{
|
|
5939
6982
|
reconnect: "reconnect";
|
|
5940
6983
|
replace_media: "replace_media";
|
|
@@ -5942,6 +6985,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5942
6985
|
review_settings: "review_settings";
|
|
5943
6986
|
edit_caption: "edit_caption";
|
|
5944
6987
|
refresh_health: "refresh_health";
|
|
6988
|
+
refresh_readiness: "refresh_readiness";
|
|
5945
6989
|
}>;
|
|
5946
6990
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
5947
6991
|
INSTAGRAM: "INSTAGRAM";
|
|
@@ -5955,6 +6999,8 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
5955
6999
|
}, z.core.$strip>>;
|
|
5956
7000
|
}, z.core.$strip>>;
|
|
5957
7001
|
accounts: z.ZodArray<z.ZodObject<{
|
|
7002
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
7003
|
+
externalAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5958
7004
|
provider: z.ZodEnum<{
|
|
5959
7005
|
INSTAGRAM: "INSTAGRAM";
|
|
5960
7006
|
TIKTOK: "TIKTOK";
|
|
@@ -6009,6 +7055,11 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
6009
7055
|
}, z.core.$strip>>;
|
|
6010
7056
|
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
6011
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>>;
|
|
6012
7063
|
provider: z.ZodEnum<{
|
|
6013
7064
|
INSTAGRAM: "INSTAGRAM";
|
|
6014
7065
|
TIKTOK: "TIKTOK";
|
|
@@ -6058,6 +7109,11 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
6058
7109
|
}, z.core.$strip>>;
|
|
6059
7110
|
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
6060
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>>;
|
|
6061
7117
|
provider: z.ZodEnum<{
|
|
6062
7118
|
INSTAGRAM: "INSTAGRAM";
|
|
6063
7119
|
TIKTOK: "TIKTOK";
|
|
@@ -6110,6 +7166,11 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
6110
7166
|
}, z.core.$strip>>;
|
|
6111
7167
|
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
6112
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>>;
|
|
6113
7174
|
provider: z.ZodEnum<{
|
|
6114
7175
|
INSTAGRAM: "INSTAGRAM";
|
|
6115
7176
|
TIKTOK: "TIKTOK";
|
|
@@ -9269,5 +10330,198 @@ declare const BacklinkContactListResponseSchema: z.ZodObject<{
|
|
|
9269
10330
|
requestId: z.ZodString;
|
|
9270
10331
|
}, z.core.$strip>;
|
|
9271
10332
|
}, z.core.$strip>;
|
|
10333
|
+
declare const PostDeliveryCheckInputSchema: z.ZodObject<{
|
|
10334
|
+
provider: z.ZodEnum<{
|
|
10335
|
+
INSTAGRAM: "INSTAGRAM";
|
|
10336
|
+
TIKTOK: "TIKTOK";
|
|
10337
|
+
YOUTUBE: "YOUTUBE";
|
|
10338
|
+
BLUESKY: "BLUESKY";
|
|
10339
|
+
LINKEDIN: "LINKEDIN";
|
|
10340
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
10341
|
+
}>;
|
|
10342
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10343
|
+
}, z.core.$strict>;
|
|
10344
|
+
type PostDeliveryCheckInput = z.infer<typeof PostDeliveryCheckInputSchema>;
|
|
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>>;
|
|
10349
|
+
postId: z.ZodString;
|
|
10350
|
+
provider: z.ZodEnum<{
|
|
10351
|
+
INSTAGRAM: "INSTAGRAM";
|
|
10352
|
+
TIKTOK: "TIKTOK";
|
|
10353
|
+
YOUTUBE: "YOUTUBE";
|
|
10354
|
+
BLUESKY: "BLUESKY";
|
|
10355
|
+
LINKEDIN: "LINKEDIN";
|
|
10356
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
10357
|
+
}>;
|
|
10358
|
+
kind: z.ZodEnum<{
|
|
10359
|
+
SCHEDULED: "SCHEDULED";
|
|
10360
|
+
PUBLISHED: "PUBLISHED";
|
|
10361
|
+
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
10362
|
+
PROCESSING: "PROCESSING";
|
|
10363
|
+
UNKNOWN: "UNKNOWN";
|
|
10364
|
+
BUSY: "BUSY";
|
|
10365
|
+
}>;
|
|
10366
|
+
message: z.ZodString;
|
|
10367
|
+
version: z.ZodNumber;
|
|
10368
|
+
remotePostId: z.ZodNullable<z.ZodString>;
|
|
10369
|
+
remoteContainerId: z.ZodNullable<z.ZodString>;
|
|
10370
|
+
studioUrl: z.ZodNullable<z.ZodString>;
|
|
10371
|
+
}, z.core.$strip>;
|
|
10372
|
+
type PostDeliveryCheckResult = z.infer<typeof PostDeliveryCheckResultSchema>;
|
|
10373
|
+
declare const PostDeliveryCheckResponseSchema: z.ZodObject<{
|
|
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>>;
|
|
10378
|
+
postId: z.ZodString;
|
|
10379
|
+
provider: z.ZodEnum<{
|
|
10380
|
+
INSTAGRAM: "INSTAGRAM";
|
|
10381
|
+
TIKTOK: "TIKTOK";
|
|
10382
|
+
YOUTUBE: "YOUTUBE";
|
|
10383
|
+
BLUESKY: "BLUESKY";
|
|
10384
|
+
LINKEDIN: "LINKEDIN";
|
|
10385
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
10386
|
+
}>;
|
|
10387
|
+
kind: z.ZodEnum<{
|
|
10388
|
+
SCHEDULED: "SCHEDULED";
|
|
10389
|
+
PUBLISHED: "PUBLISHED";
|
|
10390
|
+
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
10391
|
+
PROCESSING: "PROCESSING";
|
|
10392
|
+
UNKNOWN: "UNKNOWN";
|
|
10393
|
+
BUSY: "BUSY";
|
|
10394
|
+
}>;
|
|
10395
|
+
message: z.ZodString;
|
|
10396
|
+
version: z.ZodNumber;
|
|
10397
|
+
remotePostId: z.ZodNullable<z.ZodString>;
|
|
10398
|
+
remoteContainerId: z.ZodNullable<z.ZodString>;
|
|
10399
|
+
studioUrl: z.ZodNullable<z.ZodString>;
|
|
10400
|
+
}, z.core.$strip>;
|
|
10401
|
+
meta: z.ZodObject<{
|
|
10402
|
+
requestId: z.ZodString;
|
|
10403
|
+
}, z.core.$strip>;
|
|
10404
|
+
}, z.core.$strip>;
|
|
10405
|
+
declare const PostRecoveryInputSchema: z.ZodObject<{
|
|
10406
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10407
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
10408
|
+
action: z.ZodEnum<{
|
|
10409
|
+
ATTACH: "ATTACH";
|
|
10410
|
+
RESUME: "RESUME";
|
|
10411
|
+
}>;
|
|
10412
|
+
videoId: z.ZodString;
|
|
10413
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10414
|
+
}, z.core.$strict>;
|
|
10415
|
+
type PostRecoveryInput = z.infer<typeof PostRecoveryInputSchema>;
|
|
10416
|
+
declare const PostRecoveryExecuteInputSchema: z.ZodObject<{
|
|
10417
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10418
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
10419
|
+
action: z.ZodEnum<{
|
|
10420
|
+
ATTACH: "ATTACH";
|
|
10421
|
+
RESUME: "RESUME";
|
|
10422
|
+
}>;
|
|
10423
|
+
videoId: z.ZodString;
|
|
10424
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10425
|
+
confirmationToken: z.ZodString;
|
|
10426
|
+
}, z.core.$strict>;
|
|
10427
|
+
type PostRecoveryExecuteInput = z.infer<typeof PostRecoveryExecuteInputSchema>;
|
|
10428
|
+
declare const PostRecoveryPreviewSchema: z.ZodObject<{
|
|
10429
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10430
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10431
|
+
operation: z.ZodLiteral<"posts.recovery.execute">;
|
|
10432
|
+
projectId: z.ZodString;
|
|
10433
|
+
postId: z.ZodString;
|
|
10434
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
10435
|
+
action: z.ZodEnum<{
|
|
10436
|
+
ATTACH: "ATTACH";
|
|
10437
|
+
RESUME: "RESUME";
|
|
10438
|
+
}>;
|
|
10439
|
+
videoId: z.ZodString;
|
|
10440
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10441
|
+
version: z.ZodNumber;
|
|
10442
|
+
title: z.ZodString;
|
|
10443
|
+
description: z.ZodString;
|
|
10444
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
10445
|
+
accountId: z.ZodString;
|
|
10446
|
+
privacy: z.ZodString;
|
|
10447
|
+
consequence: z.ZodString;
|
|
10448
|
+
confirmation: z.ZodObject<{
|
|
10449
|
+
token: z.ZodString;
|
|
10450
|
+
expiresAt: z.ZodString;
|
|
10451
|
+
}, z.core.$strip>;
|
|
10452
|
+
}, z.core.$strip>;
|
|
10453
|
+
type PostRecoveryPreview = z.infer<typeof PostRecoveryPreviewSchema>;
|
|
10454
|
+
declare const PostRecoveryPreviewResponseSchema: z.ZodObject<{
|
|
10455
|
+
data: z.ZodObject<{
|
|
10456
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
10457
|
+
integrationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10458
|
+
operation: z.ZodLiteral<"posts.recovery.execute">;
|
|
10459
|
+
projectId: z.ZodString;
|
|
10460
|
+
postId: z.ZodString;
|
|
10461
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
10462
|
+
action: z.ZodEnum<{
|
|
10463
|
+
ATTACH: "ATTACH";
|
|
10464
|
+
RESUME: "RESUME";
|
|
10465
|
+
}>;
|
|
10466
|
+
videoId: z.ZodString;
|
|
10467
|
+
publishAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10468
|
+
version: z.ZodNumber;
|
|
10469
|
+
title: z.ZodString;
|
|
10470
|
+
description: z.ZodString;
|
|
10471
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
10472
|
+
accountId: z.ZodString;
|
|
10473
|
+
privacy: z.ZodString;
|
|
10474
|
+
consequence: z.ZodString;
|
|
10475
|
+
confirmation: z.ZodObject<{
|
|
10476
|
+
token: z.ZodString;
|
|
10477
|
+
expiresAt: z.ZodString;
|
|
10478
|
+
}, z.core.$strip>;
|
|
10479
|
+
}, z.core.$strip>;
|
|
10480
|
+
meta: z.ZodObject<{
|
|
10481
|
+
requestId: z.ZodString;
|
|
10482
|
+
}, z.core.$strip>;
|
|
10483
|
+
}, z.core.$strip>;
|
|
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>>;
|
|
10488
|
+
postId: z.ZodString;
|
|
10489
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
10490
|
+
action: z.ZodEnum<{
|
|
10491
|
+
ATTACH: "ATTACH";
|
|
10492
|
+
RESUME: "RESUME";
|
|
10493
|
+
}>;
|
|
10494
|
+
videoId: z.ZodString;
|
|
10495
|
+
kind: z.ZodEnum<{
|
|
10496
|
+
QUEUED: "QUEUED";
|
|
10497
|
+
PUBLISHED: "PUBLISHED";
|
|
10498
|
+
ATTACHED: "ATTACHED";
|
|
10499
|
+
}>;
|
|
10500
|
+
version: z.ZodNumber;
|
|
10501
|
+
}, z.core.$strip>;
|
|
10502
|
+
type PostRecoveryResult = z.infer<typeof PostRecoveryResultSchema>;
|
|
10503
|
+
declare const PostRecoveryResponseSchema: z.ZodObject<{
|
|
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>>;
|
|
10508
|
+
postId: z.ZodString;
|
|
10509
|
+
provider: z.ZodLiteral<"YOUTUBE">;
|
|
10510
|
+
action: z.ZodEnum<{
|
|
10511
|
+
ATTACH: "ATTACH";
|
|
10512
|
+
RESUME: "RESUME";
|
|
10513
|
+
}>;
|
|
10514
|
+
videoId: z.ZodString;
|
|
10515
|
+
kind: z.ZodEnum<{
|
|
10516
|
+
QUEUED: "QUEUED";
|
|
10517
|
+
PUBLISHED: "PUBLISHED";
|
|
10518
|
+
ATTACHED: "ATTACHED";
|
|
10519
|
+
}>;
|
|
10520
|
+
version: z.ZodNumber;
|
|
10521
|
+
}, z.core.$strip>;
|
|
10522
|
+
meta: z.ZodObject<{
|
|
10523
|
+
requestId: z.ZodString;
|
|
10524
|
+
}, z.core.$strip>;
|
|
10525
|
+
}, z.core.$strip>;
|
|
9272
10526
|
|
|
9273
|
-
export { AGENT_CAPABILITIES, API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQualitySummarySchema, AgentBlogArticleQueuedResponseSchema, AgentBlogArticleResponseSchema, AgentBlogArticleSchema, type AgentBlogCadenceInput, AgentBlogCadenceInputSchema, type AgentBlogConnectionExecute, AgentBlogConnectionExecuteRequestSchema, AgentBlogConnectionExecuteResponseSchema, AgentBlogConnectionExecuteSchema, AgentBlogConnectionPreviewRequestSchema, AgentBlogConnectionPreviewResponseSchema, AgentBlogConnectionPreviewSchema, type AgentBlogConnectionRequest, AgentBlogConnectionRequestSchema, type AgentBlogConnectionStatus, AgentBlogConnectionStatusResponseSchema, AgentBlogConnectionStatusSchema, type AgentBlogDeliveryAttempt, AgentBlogDeliveryAttemptListResponseSchema, AgentBlogDeliveryAttemptSchema, AgentBlogDestinationSelectionSchema, type AgentBlogDraftUpdate, AgentBlogDraftUpdateSchema, AgentBlogGenerateRequestSchema, AgentBlogIdempotentRequestSchema, AgentBlogImageGenerateRequestSchema, AgentBlogImageGenerationResponseSchema, AgentBlogImageResponseSchema, AgentBlogImageReviewRequestSchema, AgentBlogImageSchema, AgentBlogImageUploadCompleteRequestSchema, AgentBlogImageUploadPreparationResponseSchema, AgentBlogImageUploadPrepareRequestSchema, type AgentBlogJob, AgentBlogJobResponseSchema, AgentBlogJobSchema, AgentBlogMetricSourceSchema, AgentBlogPerformanceObservationSchema, type AgentBlogPlan, type AgentBlogPlanCadenceExecute, AgentBlogPlanCadenceExecuteRequestSchema, AgentBlogPlanCadenceExecuteResponseSchema, AgentBlogPlanCadenceExecuteSchema, type AgentBlogPlanCadencePreview, AgentBlogPlanCadencePreviewRequestSchema, AgentBlogPlanCadencePreviewResponseSchema, AgentBlogPlanCadencePreviewSchema, AgentBlogPlanCreateRequestSchema, type AgentBlogPlanDateMove, AgentBlogPlanDateMoveSchema, type AgentBlogPlanItem, AgentBlogPlanItemResponseSchema, AgentBlogPlanItemSchema, AgentBlogPlanItemStateRequestSchema, AgentBlogPlanItemsResponseSchema, AgentBlogPlanListResponseSchema, AgentBlogPlanLockedItemSchema, AgentBlogPlanQueuedResponseSchema, AgentBlogPlanRetryRequestSchema, AgentBlogPlanSchema, AgentBlogPublishExecuteRequestSchema, AgentBlogPublishExecuteResponseSchema, type AgentBlogPublishPreview, AgentBlogPublishPreviewRequestSchema, AgentBlogPublishPreviewResponseSchema, AgentBlogPublishPreviewSchema, type AgentBlogPublishingDestination, AgentBlogPublishingDestinationListResponseSchema, AgentBlogPublishingDestinationSchema, type AgentBlogPublishingProvider, AgentBlogPublishingProviderListResponseSchema, AgentBlogPublishingProviderSchema, AgentBlogRevalidationTestRequestSchema, AgentBlogRevalidationTestResponseSchema, AgentBlogRevalidationTestSchema, AgentBlogScheduleCancelExecuteRequestSchema, AgentBlogScheduleCancelExecuteResponseSchema, AgentBlogScheduleCancelExecuteSchema, AgentBlogScheduleCancelPreviewRequestSchema, AgentBlogScheduleCancelPreviewResponseSchema, AgentBlogScheduleCancelPreviewSchema, AgentBlogScheduleExecuteRequestSchema, AgentBlogScheduleExecuteResponseSchema, AgentBlogScheduleExecuteSchema, AgentBlogSchedulePreviewRequestSchema, AgentBlogSchedulePreviewResponseSchema, AgentBlogSchedulePreviewSchema, type AgentBlogSetupStatus, AgentBlogSetupStatusResponseSchema, AgentBlogSetupStatusSchema, type AgentBlogWebhookDestinationChange, AgentBlogWebhookDestinationChangeSchema, type AgentBlogWebhookDestinationExecute, AgentBlogWebhookDestinationExecuteRequestSchema, AgentBlogWebhookDestinationExecuteResponseSchema, AgentBlogWebhookDestinationExecuteSchema, AgentBlogWebhookDestinationPreviewRequestSchema, AgentBlogWebhookDestinationPreviewResponseSchema, AgentBlogWebhookDestinationPreviewSchema, type AgentBlogWebhookRotateExecute, AgentBlogWebhookRotateExecuteRequestSchema, AgentBlogWebhookRotateExecuteResponseSchema, AgentBlogWebhookRotateExecuteSchema, AgentBlogWebhookRotatePreviewRequestSchema, AgentBlogWebhookRotatePreviewResponseSchema, AgentBlogWebhookRotatePreviewSchema, AgentBlogWebhookSemanticsSchema, type AgentBlogWebhookTest, AgentBlogWebhookTestRequestSchema, AgentBlogWebhookTestResponseSchema, AgentBlogWebhookTestSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, type BacklinkContact, BacklinkContactListDataSchema, BacklinkContactListQuerySchema, BacklinkContactListResponseSchema, BacklinkContactSchema, BacklinkContactStateSchema, BacklinkDiscoveryInputSchema, type BacklinkDiscoveryRun, BacklinkDiscoveryRunResponseSchema, BacklinkDiscoveryRunSchema, BacklinkNextActionSchema, BacklinkOpportunityTypeSchema, BacklinkOutreachDraftResponseSchema, BacklinkOutreachDraftSchema, BacklinkOutreachUpdateInputSchema, type BacklinkProspect, BacklinkProspectListDataSchema, BacklinkProspectListQuerySchema, BacklinkProspectListResponseSchema, BacklinkProspectResponseSchema, BacklinkProspectSchema, BacklinkProspectStageSchema, BacklinkQueueResponseSchema, BacklinkScoreComponentsSchema, BacklinkStageUpdateInputSchema, type BacklinkTarget, BacklinkTargetInputSchema, BacklinkTargetListResponseSchema, BacklinkTargetResponseSchema, BacklinkTargetSchema, BacklinkVerificationInputSchema, BacklinkVerificationResponseSchema, BacklinkVerificationSchema, BacklinkVerificationStateSchema, BlogArticleListSchema, BlogImageSchema, BlogMetadataSchema, BlogSitemapEntrySchema, BlogSlugRedirectSchema, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, type DraftPostData, type DraftPostInput, DraftPostInputSchema, type DraftPostUpdateData, type DraftPostUpdateInput, DraftPostUpdateInputSchema, IntegrationConnectionStatusSchema, type IntegrationHealth, type IntegrationHealthListData, IntegrationHealthListDataSchema, IntegrationHealthListResponseSchema, IntegrationHealthSchema, LinkedInDeliveryOptionsSchema, type ListedMediaAsset, ListedMediaAssetSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, MediaCleanupCandidateSchema, type MediaCleanupExecuteRequest, MediaCleanupExecuteRequestSchema, MediaCleanupExecuteResponseSchema, type MediaCleanupExecuteResult, MediaCleanupExecuteResultSchema, MediaCleanupItemResultSchema, MediaCleanupItemStatusSchema, MediaCleanupOperationStatusSchema, type MediaCleanupPreview, type MediaCleanupPreviewRequest, MediaCleanupPreviewRequestSchema, MediaCleanupPreviewResponseSchema, MediaCleanupPreviewSchema, type MediaCleanupScope, MediaCleanupScopeSchema, type MediaCleanupSelectionInput, MediaCleanupSelectionInputSchema, type MediaCleanupStatus, MediaCleanupStatusQuerySchema, MediaCleanupStatusResponseSchema, MediaCleanupStatusSchema, type NormalizedMediaCleanupSelection, NormalizedMediaCleanupSelectionSchema, PUBLISHING_PROVIDER_COUNT, PlatformPostStatusSchema, type Post, type PostDeliveryMode, PostDeliveryModeSchema, type PostDestination, PostDestinationSchema, type PostDestinationStage, PostDestinationStageSchema, type PostListData, PostListDataSchema, type PostListQuery, PostListQuerySchema, type PostListResponse, PostListResponseSchema, type PostMedia, PostMediaSchema, type PostProviderSettings, PostProviderSettingsSchema, type PostPublishExecuteInput, PostPublishExecuteInputSchema, type PostPublishInput, PostPublishInputSchema, type PostPublishPreview, PostPublishPreviewResponseSchema, PostPublishPreviewSchema, type PostReadiness, PostReadinessCheckSchema, PostReadinessResponseSchema, PostReadinessSchema, type PostResponse, PostResponseSchema, type PostScheduleExecuteInput, PostScheduleExecuteInputSchema, PostScheduleExecuteResponseSchema, type PostScheduleExecuteResult, PostScheduleExecuteResultSchema, type PostScheduleInput, PostScheduleInputSchema, type PostSchedulePending, PostSchedulePendingSchema, type PostSchedulePreview, PostSchedulePreviewResponseSchema, PostSchedulePreviewSchema, PostSchema, type PostStatus, PostStatusSchema, type Project, type ProjectCreateData, type ProjectCreateInput, ProjectCreateInputSchema, type ProjectListData, ProjectListDataSchema, type ProjectListQuery, ProjectListQuerySchema, type ProjectListResponse, ProjectListResponseSchema, type ProjectResponse, ProjectResponseSchema, ProjectSchema, type ProjectType, ProjectTypeSchema, type ProviderDeliveryOptions, type ProviderDeliveryOptionsProvider, ProviderDeliveryOptionsProviderSchema, ProviderDeliveryOptionsResponseSchema, ProviderDeliveryOptionsSchema, ProviderHealthStatusSchema, type PublishedBlogArticle, PublishedBlogArticleSchema, type PublishingProvider, PublishingProviderSchema, ReadinessActionSchema, ReadinessStatusSchema, RequestMetadataSchema, type SeoActionDecision, SeoActionDecisionSchema, type SeoActionPlan, SeoActionPlanSchema, type SeoAgentTask, SeoAgentTaskSchema, SeoConfidenceValueSchema, SeoContentTypeSchema, SeoCursorSchema, type SeoDecisionConfidence, SeoDecisionConfidenceSchema, SeoEntityIdSchema, type SeoEvidence, type SeoEvidenceProvenance, SeoEvidenceProvenanceSchema, SeoEvidenceSchema, type SeoExpectedImpact, SeoExpectedImpactSchema, type SeoOpportunity, type SeoOpportunityBrief, SeoOpportunityBriefSchema, type SeoOpportunityKind, SeoOpportunityKindSchema, type SeoOpportunityListData, SeoOpportunityListDataSchema, type SeoOpportunityListQuery, SeoOpportunityListQuerySchema, SeoOpportunityListResponseSchema, SeoOpportunityResponseSchema, SeoOpportunitySchema, type SeoReport, type SeoReportCompleteness, SeoReportCompletenessSchema, type SeoReportListData, SeoReportListDataSchema, type SeoReportListQuery, SeoReportListQuerySchema, SeoReportListResponseSchema, SeoReportResponseSchema, SeoReportSchema, type SeoReportSummary, SeoReportSummarySchema, SeoReportTriggerSchema, SeoSearchIntentSchema, type SeoTaskDecision, SeoTaskDecisionSchema, type SeoTaskFormat, SeoTaskFormatSchema, StorageByteCountSchema, type StorageSourceBreakdown, StorageSourceBreakdownSchema, type StorageUsage, StorageUsageResponseSchema, StorageUsageSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type WorkspaceListedMediaAsset, WorkspaceListedMediaAssetSchema, type WorkspaceMediaAssetListData, WorkspaceMediaAssetListDataSchema, type WorkspaceMediaAssetListQuery, WorkspaceMediaAssetListQuerySchema, WorkspaceMediaAssetListResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|
|
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 };
|