@rolino/contracts 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/index.cjs +199 -42
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +511 -119
- package/dist/index.d.ts +511 -119
- package/dist/index.js +174 -36
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
|
|
3
3
|
declare const API_VERSION: "v1";
|
|
4
|
-
declare const CONTRACT_VERSION: "0.
|
|
4
|
+
declare const CONTRACT_VERSION: "0.17.0";
|
|
5
5
|
declare const RequestMetadataSchema: z.ZodObject<{
|
|
6
6
|
requestId: z.ZodString;
|
|
7
7
|
}, z.core.$strip>;
|
|
8
8
|
declare const ApiErrorCodeSchema: z.ZodEnum<{
|
|
9
9
|
AUTH_REQUIRED: "AUTH_REQUIRED";
|
|
10
10
|
FORBIDDEN: "FORBIDDEN";
|
|
11
|
+
METHOD_NOT_ALLOWED: "METHOD_NOT_ALLOWED";
|
|
11
12
|
NOT_FOUND: "NOT_FOUND";
|
|
12
13
|
FEATURE_DISABLED: "FEATURE_DISABLED";
|
|
13
14
|
BILLING_REQUIRED: "BILLING_REQUIRED";
|
|
@@ -28,6 +29,7 @@ declare const ApiProblemSchema: z.ZodObject<{
|
|
|
28
29
|
code: z.ZodEnum<{
|
|
29
30
|
AUTH_REQUIRED: "AUTH_REQUIRED";
|
|
30
31
|
FORBIDDEN: "FORBIDDEN";
|
|
32
|
+
METHOD_NOT_ALLOWED: "METHOD_NOT_ALLOWED";
|
|
31
33
|
NOT_FOUND: "NOT_FOUND";
|
|
32
34
|
FEATURE_DISABLED: "FEATURE_DISABLED";
|
|
33
35
|
BILLING_REQUIRED: "BILLING_REQUIRED";
|
|
@@ -43,6 +45,7 @@ declare const ApiProblemSchema: z.ZodObject<{
|
|
|
43
45
|
INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
44
46
|
}>;
|
|
45
47
|
message: z.ZodString;
|
|
48
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
46
49
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
47
50
|
}, z.core.$strip>;
|
|
48
51
|
meta: z.ZodObject<{
|
|
@@ -165,6 +168,7 @@ declare const CapabilityIdSchema: z.ZodEnum<{
|
|
|
165
168
|
type CapabilityId = z.infer<typeof CapabilityIdSchema>;
|
|
166
169
|
declare const AgentBlogPlanSchema: z.ZodObject<{
|
|
167
170
|
id: z.ZodString;
|
|
171
|
+
version: z.ZodNumber;
|
|
168
172
|
state: z.ZodString;
|
|
169
173
|
windowStart: z.ZodString;
|
|
170
174
|
windowEnd: z.ZodString;
|
|
@@ -581,6 +585,7 @@ declare const AgentBlogPublishingDestinationSchema: z.ZodObject<{
|
|
|
581
585
|
status: z.ZodString;
|
|
582
586
|
isPrimary: z.ZodBoolean;
|
|
583
587
|
enabled: z.ZodBoolean;
|
|
588
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
584
589
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
585
590
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
586
591
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -622,6 +627,7 @@ declare const AgentBlogPublishPreviewSchema: z.ZodObject<{
|
|
|
622
627
|
status: z.ZodString;
|
|
623
628
|
isPrimary: z.ZodBoolean;
|
|
624
629
|
enabled: z.ZodBoolean;
|
|
630
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
625
631
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
626
632
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
627
633
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -708,6 +714,129 @@ declare const AgentBlogCadenceInputSchema: z.ZodObject<{
|
|
|
708
714
|
declare const AgentBlogIdempotentRequestSchema: z.ZodObject<{
|
|
709
715
|
idempotencyKey: z.ZodString;
|
|
710
716
|
}, z.core.$strict>;
|
|
717
|
+
declare const AgentBlogPlanDateMoveSchema: z.ZodObject<{
|
|
718
|
+
itemId: z.ZodString;
|
|
719
|
+
title: z.ZodString;
|
|
720
|
+
oldDate: z.ZodString;
|
|
721
|
+
newDate: z.ZodString;
|
|
722
|
+
state: z.ZodEnum<{
|
|
723
|
+
APPROVED: "APPROVED";
|
|
724
|
+
SCHEDULED: "SCHEDULED";
|
|
725
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
726
|
+
PLANNED: "PLANNED";
|
|
727
|
+
ACCEPTED: "ACCEPTED";
|
|
728
|
+
DISMISSED: "DISMISSED";
|
|
729
|
+
DRAFTING: "DRAFTING";
|
|
730
|
+
IN_REVIEW: "IN_REVIEW";
|
|
731
|
+
PUBLISHED: "PUBLISHED";
|
|
732
|
+
}>;
|
|
733
|
+
version: z.ZodNumber;
|
|
734
|
+
}, z.core.$strict>;
|
|
735
|
+
declare const AgentBlogPlanLockedItemSchema: z.ZodObject<{
|
|
736
|
+
itemId: z.ZodString;
|
|
737
|
+
title: z.ZodString;
|
|
738
|
+
date: z.ZodString;
|
|
739
|
+
state: z.ZodEnum<{
|
|
740
|
+
SCHEDULED: "SCHEDULED";
|
|
741
|
+
PUBLISHED: "PUBLISHED";
|
|
742
|
+
}>;
|
|
743
|
+
version: z.ZodNumber;
|
|
744
|
+
}, z.core.$strict>;
|
|
745
|
+
declare const AgentBlogPlanCadencePreviewRequestSchema: z.ZodObject<{
|
|
746
|
+
weekdays: z.ZodArray<z.ZodNumber>;
|
|
747
|
+
expectedPlanVersion: z.ZodNumber;
|
|
748
|
+
}, z.core.$strict>;
|
|
749
|
+
declare const AgentBlogPlanCadencePreviewSchema: z.ZodObject<{
|
|
750
|
+
planId: z.ZodString;
|
|
751
|
+
planTitle: z.ZodString;
|
|
752
|
+
planVersion: z.ZodNumber;
|
|
753
|
+
scheduleDigest: z.ZodString;
|
|
754
|
+
kind: z.ZodEnum<{
|
|
755
|
+
ready: "ready";
|
|
756
|
+
blocked: "blocked";
|
|
757
|
+
noop: "noop";
|
|
758
|
+
}>;
|
|
759
|
+
canExecute: z.ZodBoolean;
|
|
760
|
+
oldWeekdays: z.ZodArray<z.ZodNumber>;
|
|
761
|
+
newWeekdays: z.ZodArray<z.ZodNumber>;
|
|
762
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
763
|
+
itemId: z.ZodString;
|
|
764
|
+
title: z.ZodString;
|
|
765
|
+
oldDate: z.ZodString;
|
|
766
|
+
newDate: z.ZodString;
|
|
767
|
+
state: z.ZodEnum<{
|
|
768
|
+
APPROVED: "APPROVED";
|
|
769
|
+
SCHEDULED: "SCHEDULED";
|
|
770
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
771
|
+
PLANNED: "PLANNED";
|
|
772
|
+
ACCEPTED: "ACCEPTED";
|
|
773
|
+
DISMISSED: "DISMISSED";
|
|
774
|
+
DRAFTING: "DRAFTING";
|
|
775
|
+
IN_REVIEW: "IN_REVIEW";
|
|
776
|
+
PUBLISHED: "PUBLISHED";
|
|
777
|
+
}>;
|
|
778
|
+
version: z.ZodNumber;
|
|
779
|
+
}, z.core.$strict>>;
|
|
780
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
781
|
+
itemId: z.ZodString;
|
|
782
|
+
title: z.ZodString;
|
|
783
|
+
date: z.ZodString;
|
|
784
|
+
state: z.ZodEnum<{
|
|
785
|
+
SCHEDULED: "SCHEDULED";
|
|
786
|
+
PUBLISHED: "PUBLISHED";
|
|
787
|
+
}>;
|
|
788
|
+
version: z.ZodNumber;
|
|
789
|
+
}, z.core.$strict>>;
|
|
790
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
791
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
792
|
+
confirmation: z.ZodNullable<z.ZodObject<{
|
|
793
|
+
token: z.ZodString;
|
|
794
|
+
expiresAt: z.ZodString;
|
|
795
|
+
}, z.core.$strict>>;
|
|
796
|
+
}, z.core.$strict>;
|
|
797
|
+
declare const AgentBlogPlanCadenceExecuteRequestSchema: z.ZodObject<{
|
|
798
|
+
weekdays: z.ZodArray<z.ZodNumber>;
|
|
799
|
+
expectedPlanVersion: z.ZodNumber;
|
|
800
|
+
expectedScheduleDigest: z.ZodString;
|
|
801
|
+
confirmationToken: z.ZodString;
|
|
802
|
+
idempotencyKey: z.ZodString;
|
|
803
|
+
}, z.core.$strict>;
|
|
804
|
+
declare const AgentBlogPlanCadenceExecuteSchema: z.ZodObject<{
|
|
805
|
+
planId: z.ZodString;
|
|
806
|
+
planVersion: z.ZodNumber;
|
|
807
|
+
publicationWeekdays: z.ZodArray<z.ZodNumber>;
|
|
808
|
+
cadencePerWeek: z.ZodNumber;
|
|
809
|
+
expectedItemCount: z.ZodNumber;
|
|
810
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
811
|
+
itemId: z.ZodString;
|
|
812
|
+
title: z.ZodString;
|
|
813
|
+
oldDate: z.ZodString;
|
|
814
|
+
newDate: z.ZodString;
|
|
815
|
+
state: z.ZodEnum<{
|
|
816
|
+
APPROVED: "APPROVED";
|
|
817
|
+
SCHEDULED: "SCHEDULED";
|
|
818
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
819
|
+
PLANNED: "PLANNED";
|
|
820
|
+
ACCEPTED: "ACCEPTED";
|
|
821
|
+
DISMISSED: "DISMISSED";
|
|
822
|
+
DRAFTING: "DRAFTING";
|
|
823
|
+
IN_REVIEW: "IN_REVIEW";
|
|
824
|
+
PUBLISHED: "PUBLISHED";
|
|
825
|
+
}>;
|
|
826
|
+
version: z.ZodNumber;
|
|
827
|
+
}, z.core.$strict>>;
|
|
828
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
829
|
+
itemId: z.ZodString;
|
|
830
|
+
title: z.ZodString;
|
|
831
|
+
date: z.ZodString;
|
|
832
|
+
state: z.ZodEnum<{
|
|
833
|
+
SCHEDULED: "SCHEDULED";
|
|
834
|
+
PUBLISHED: "PUBLISHED";
|
|
835
|
+
}>;
|
|
836
|
+
version: z.ZodNumber;
|
|
837
|
+
}, z.core.$strict>>;
|
|
838
|
+
scheduleDigest: z.ZodString;
|
|
839
|
+
}, z.core.$strict>;
|
|
711
840
|
declare const AgentBlogPlanCreateRequestSchema: z.ZodIntersection<z.ZodObject<{
|
|
712
841
|
startsOn: z.ZodString;
|
|
713
842
|
weekdays: z.ZodArray<z.ZodNumber>;
|
|
@@ -863,6 +992,110 @@ declare const AgentBlogConnectionExecuteSchema: z.ZodObject<{
|
|
|
863
992
|
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
864
993
|
message: z.ZodString;
|
|
865
994
|
}, z.core.$strict>;
|
|
995
|
+
declare const AgentBlogWebhookSemanticsSchema: z.ZodEnum<{
|
|
996
|
+
LIVE: "LIVE";
|
|
997
|
+
DRAFT: "DRAFT";
|
|
998
|
+
}>;
|
|
999
|
+
declare const AgentBlogWebhookDestinationChangeSchema: z.ZodObject<{
|
|
1000
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
siteId: z.ZodString;
|
|
1002
|
+
name: z.ZodString;
|
|
1003
|
+
endpoint: z.ZodString;
|
|
1004
|
+
semantics: z.ZodEnum<{
|
|
1005
|
+
LIVE: "LIVE";
|
|
1006
|
+
DRAFT: "DRAFT";
|
|
1007
|
+
}>;
|
|
1008
|
+
}, z.core.$strict>;
|
|
1009
|
+
declare const AgentBlogWebhookDestinationPreviewRequestSchema: z.ZodObject<{
|
|
1010
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
siteId: z.ZodString;
|
|
1012
|
+
name: z.ZodString;
|
|
1013
|
+
endpoint: z.ZodString;
|
|
1014
|
+
semantics: z.ZodEnum<{
|
|
1015
|
+
LIVE: "LIVE";
|
|
1016
|
+
DRAFT: "DRAFT";
|
|
1017
|
+
}>;
|
|
1018
|
+
}, z.core.$strict>;
|
|
1019
|
+
declare const AgentBlogWebhookDestinationExecuteRequestSchema: z.ZodObject<{
|
|
1020
|
+
destinationId: z.ZodOptional<z.ZodString>;
|
|
1021
|
+
siteId: z.ZodString;
|
|
1022
|
+
name: z.ZodString;
|
|
1023
|
+
endpoint: z.ZodString;
|
|
1024
|
+
semantics: z.ZodEnum<{
|
|
1025
|
+
LIVE: "LIVE";
|
|
1026
|
+
DRAFT: "DRAFT";
|
|
1027
|
+
}>;
|
|
1028
|
+
confirmationToken: z.ZodString;
|
|
1029
|
+
idempotencyKey: z.ZodString;
|
|
1030
|
+
}, z.core.$strict>;
|
|
1031
|
+
declare const AgentBlogWebhookDestinationPreviewSchema: z.ZodObject<{
|
|
1032
|
+
siteId: z.ZodString;
|
|
1033
|
+
name: z.ZodString;
|
|
1034
|
+
endpoint: z.ZodString;
|
|
1035
|
+
semantics: z.ZodEnum<{
|
|
1036
|
+
LIVE: "LIVE";
|
|
1037
|
+
DRAFT: "DRAFT";
|
|
1038
|
+
}>;
|
|
1039
|
+
destinationId: z.ZodNullable<z.ZodString>;
|
|
1040
|
+
effect: z.ZodString;
|
|
1041
|
+
confirmation: z.ZodObject<{
|
|
1042
|
+
token: z.ZodString;
|
|
1043
|
+
expiresAt: z.ZodString;
|
|
1044
|
+
}, z.core.$strict>;
|
|
1045
|
+
}, z.core.$strict>;
|
|
1046
|
+
declare const AgentBlogWebhookDestinationExecuteSchema: z.ZodObject<{
|
|
1047
|
+
projectId: z.ZodString;
|
|
1048
|
+
siteId: z.ZodString;
|
|
1049
|
+
destinationId: z.ZodString;
|
|
1050
|
+
completed: z.ZodLiteral<true>;
|
|
1051
|
+
secretDelivered: z.ZodBoolean;
|
|
1052
|
+
alreadyDelivered: z.ZodBoolean;
|
|
1053
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
1054
|
+
message: z.ZodString;
|
|
1055
|
+
}, z.core.$strict>;
|
|
1056
|
+
declare const AgentBlogWebhookTestRequestSchema: z.ZodObject<{
|
|
1057
|
+
siteId: z.ZodString;
|
|
1058
|
+
destinationId: z.ZodString;
|
|
1059
|
+
makePrimary: z.ZodOptional<z.ZodBoolean>;
|
|
1060
|
+
}, z.core.$strict>;
|
|
1061
|
+
declare const AgentBlogWebhookTestSchema: z.ZodObject<{
|
|
1062
|
+
destinationId: z.ZodString;
|
|
1063
|
+
status: z.ZodEnum<{
|
|
1064
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1065
|
+
CONNECTED: "CONNECTED";
|
|
1066
|
+
}>;
|
|
1067
|
+
enabled: z.ZodBoolean;
|
|
1068
|
+
testedAt: z.ZodString;
|
|
1069
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
1070
|
+
}, z.core.$strict>;
|
|
1071
|
+
declare const AgentBlogWebhookRotatePreviewRequestSchema: z.ZodObject<{
|
|
1072
|
+
siteId: z.ZodString;
|
|
1073
|
+
destinationId: z.ZodString;
|
|
1074
|
+
}, z.core.$strict>;
|
|
1075
|
+
declare const AgentBlogWebhookRotateExecuteRequestSchema: z.ZodObject<{
|
|
1076
|
+
siteId: z.ZodString;
|
|
1077
|
+
destinationId: z.ZodString;
|
|
1078
|
+
confirmationToken: z.ZodString;
|
|
1079
|
+
idempotencyKey: z.ZodString;
|
|
1080
|
+
}, z.core.$strict>;
|
|
1081
|
+
declare const AgentBlogWebhookRotatePreviewSchema: z.ZodObject<{
|
|
1082
|
+
siteId: z.ZodString;
|
|
1083
|
+
destinationId: z.ZodString;
|
|
1084
|
+
destinationName: z.ZodString;
|
|
1085
|
+
effect: z.ZodString;
|
|
1086
|
+
confirmation: z.ZodObject<{
|
|
1087
|
+
token: z.ZodString;
|
|
1088
|
+
expiresAt: z.ZodString;
|
|
1089
|
+
}, z.core.$strict>;
|
|
1090
|
+
}, z.core.$strict>;
|
|
1091
|
+
declare const AgentBlogWebhookRotateExecuteSchema: z.ZodObject<{
|
|
1092
|
+
destinationId: z.ZodString;
|
|
1093
|
+
completed: z.ZodLiteral<true>;
|
|
1094
|
+
secretDelivered: z.ZodBoolean;
|
|
1095
|
+
alreadyDelivered: z.ZodBoolean;
|
|
1096
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
1097
|
+
message: z.ZodString;
|
|
1098
|
+
}, z.core.$strict>;
|
|
866
1099
|
declare const AgentBlogRevalidationTestRequestSchema: z.ZodObject<{
|
|
867
1100
|
idempotencyKey: z.ZodString;
|
|
868
1101
|
}, z.core.$strict>;
|
|
@@ -878,6 +1111,7 @@ declare const AgentBlogPlanListResponseSchema: z.ZodObject<{
|
|
|
878
1111
|
data: z.ZodObject<{
|
|
879
1112
|
plans: z.ZodArray<z.ZodObject<{
|
|
880
1113
|
id: z.ZodString;
|
|
1114
|
+
version: z.ZodNumber;
|
|
881
1115
|
state: z.ZodString;
|
|
882
1116
|
windowStart: z.ZodString;
|
|
883
1117
|
windowEnd: z.ZodString;
|
|
@@ -1294,6 +1528,7 @@ declare const AgentBlogPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
1294
1528
|
status: z.ZodString;
|
|
1295
1529
|
isPrimary: z.ZodBoolean;
|
|
1296
1530
|
enabled: z.ZodBoolean;
|
|
1531
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
1297
1532
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
1298
1533
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
1299
1534
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -1358,6 +1593,7 @@ declare const AgentBlogPublishingDestinationListResponseSchema: z.ZodObject<{
|
|
|
1358
1593
|
status: z.ZodString;
|
|
1359
1594
|
isPrimary: z.ZodBoolean;
|
|
1360
1595
|
enabled: z.ZodBoolean;
|
|
1596
|
+
capabilities: z.ZodArray<z.ZodString>;
|
|
1361
1597
|
externalSiteName: z.ZodNullable<z.ZodString>;
|
|
1362
1598
|
externalSiteUrl: z.ZodNullable<z.ZodString>;
|
|
1363
1599
|
lastTestedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -1533,6 +1769,100 @@ declare const AgentBlogPlanItemResponseSchema: z.ZodObject<{
|
|
|
1533
1769
|
requestId: z.ZodString;
|
|
1534
1770
|
}, z.core.$strip>;
|
|
1535
1771
|
}, z.core.$strip>;
|
|
1772
|
+
declare const AgentBlogPlanCadencePreviewResponseSchema: z.ZodObject<{
|
|
1773
|
+
data: z.ZodObject<{
|
|
1774
|
+
planId: z.ZodString;
|
|
1775
|
+
planTitle: z.ZodString;
|
|
1776
|
+
planVersion: z.ZodNumber;
|
|
1777
|
+
scheduleDigest: z.ZodString;
|
|
1778
|
+
kind: z.ZodEnum<{
|
|
1779
|
+
ready: "ready";
|
|
1780
|
+
blocked: "blocked";
|
|
1781
|
+
noop: "noop";
|
|
1782
|
+
}>;
|
|
1783
|
+
canExecute: z.ZodBoolean;
|
|
1784
|
+
oldWeekdays: z.ZodArray<z.ZodNumber>;
|
|
1785
|
+
newWeekdays: z.ZodArray<z.ZodNumber>;
|
|
1786
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
1787
|
+
itemId: z.ZodString;
|
|
1788
|
+
title: z.ZodString;
|
|
1789
|
+
oldDate: z.ZodString;
|
|
1790
|
+
newDate: z.ZodString;
|
|
1791
|
+
state: z.ZodEnum<{
|
|
1792
|
+
APPROVED: "APPROVED";
|
|
1793
|
+
SCHEDULED: "SCHEDULED";
|
|
1794
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1795
|
+
PLANNED: "PLANNED";
|
|
1796
|
+
ACCEPTED: "ACCEPTED";
|
|
1797
|
+
DISMISSED: "DISMISSED";
|
|
1798
|
+
DRAFTING: "DRAFTING";
|
|
1799
|
+
IN_REVIEW: "IN_REVIEW";
|
|
1800
|
+
PUBLISHED: "PUBLISHED";
|
|
1801
|
+
}>;
|
|
1802
|
+
version: z.ZodNumber;
|
|
1803
|
+
}, z.core.$strict>>;
|
|
1804
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
1805
|
+
itemId: z.ZodString;
|
|
1806
|
+
title: z.ZodString;
|
|
1807
|
+
date: z.ZodString;
|
|
1808
|
+
state: z.ZodEnum<{
|
|
1809
|
+
SCHEDULED: "SCHEDULED";
|
|
1810
|
+
PUBLISHED: "PUBLISHED";
|
|
1811
|
+
}>;
|
|
1812
|
+
version: z.ZodNumber;
|
|
1813
|
+
}, z.core.$strict>>;
|
|
1814
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
1815
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
1816
|
+
confirmation: z.ZodNullable<z.ZodObject<{
|
|
1817
|
+
token: z.ZodString;
|
|
1818
|
+
expiresAt: z.ZodString;
|
|
1819
|
+
}, z.core.$strict>>;
|
|
1820
|
+
}, z.core.$strict>;
|
|
1821
|
+
meta: z.ZodObject<{
|
|
1822
|
+
requestId: z.ZodString;
|
|
1823
|
+
}, z.core.$strip>;
|
|
1824
|
+
}, z.core.$strip>;
|
|
1825
|
+
declare const AgentBlogPlanCadenceExecuteResponseSchema: z.ZodObject<{
|
|
1826
|
+
data: z.ZodObject<{
|
|
1827
|
+
planId: z.ZodString;
|
|
1828
|
+
planVersion: z.ZodNumber;
|
|
1829
|
+
publicationWeekdays: z.ZodArray<z.ZodNumber>;
|
|
1830
|
+
cadencePerWeek: z.ZodNumber;
|
|
1831
|
+
expectedItemCount: z.ZodNumber;
|
|
1832
|
+
moves: z.ZodArray<z.ZodObject<{
|
|
1833
|
+
itemId: z.ZodString;
|
|
1834
|
+
title: z.ZodString;
|
|
1835
|
+
oldDate: z.ZodString;
|
|
1836
|
+
newDate: z.ZodString;
|
|
1837
|
+
state: z.ZodEnum<{
|
|
1838
|
+
APPROVED: "APPROVED";
|
|
1839
|
+
SCHEDULED: "SCHEDULED";
|
|
1840
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
1841
|
+
PLANNED: "PLANNED";
|
|
1842
|
+
ACCEPTED: "ACCEPTED";
|
|
1843
|
+
DISMISSED: "DISMISSED";
|
|
1844
|
+
DRAFTING: "DRAFTING";
|
|
1845
|
+
IN_REVIEW: "IN_REVIEW";
|
|
1846
|
+
PUBLISHED: "PUBLISHED";
|
|
1847
|
+
}>;
|
|
1848
|
+
version: z.ZodNumber;
|
|
1849
|
+
}, z.core.$strict>>;
|
|
1850
|
+
lockedItems: z.ZodArray<z.ZodObject<{
|
|
1851
|
+
itemId: z.ZodString;
|
|
1852
|
+
title: z.ZodString;
|
|
1853
|
+
date: z.ZodString;
|
|
1854
|
+
state: z.ZodEnum<{
|
|
1855
|
+
SCHEDULED: "SCHEDULED";
|
|
1856
|
+
PUBLISHED: "PUBLISHED";
|
|
1857
|
+
}>;
|
|
1858
|
+
version: z.ZodNumber;
|
|
1859
|
+
}, z.core.$strict>>;
|
|
1860
|
+
scheduleDigest: z.ZodString;
|
|
1861
|
+
}, z.core.$strict>;
|
|
1862
|
+
meta: z.ZodObject<{
|
|
1863
|
+
requestId: z.ZodString;
|
|
1864
|
+
}, z.core.$strip>;
|
|
1865
|
+
}, z.core.$strip>;
|
|
1536
1866
|
declare const AgentBlogPlanQueuedResponseSchema: z.ZodObject<{
|
|
1537
1867
|
data: z.ZodObject<{
|
|
1538
1868
|
planId: z.ZodString;
|
|
@@ -1654,6 +1984,84 @@ declare const AgentBlogRevalidationTestResponseSchema: z.ZodObject<{
|
|
|
1654
1984
|
requestId: z.ZodString;
|
|
1655
1985
|
}, z.core.$strip>;
|
|
1656
1986
|
}, z.core.$strip>;
|
|
1987
|
+
declare const AgentBlogWebhookDestinationPreviewResponseSchema: z.ZodObject<{
|
|
1988
|
+
data: z.ZodObject<{
|
|
1989
|
+
siteId: z.ZodString;
|
|
1990
|
+
name: z.ZodString;
|
|
1991
|
+
endpoint: z.ZodString;
|
|
1992
|
+
semantics: z.ZodEnum<{
|
|
1993
|
+
LIVE: "LIVE";
|
|
1994
|
+
DRAFT: "DRAFT";
|
|
1995
|
+
}>;
|
|
1996
|
+
destinationId: z.ZodNullable<z.ZodString>;
|
|
1997
|
+
effect: z.ZodString;
|
|
1998
|
+
confirmation: z.ZodObject<{
|
|
1999
|
+
token: z.ZodString;
|
|
2000
|
+
expiresAt: z.ZodString;
|
|
2001
|
+
}, z.core.$strict>;
|
|
2002
|
+
}, z.core.$strict>;
|
|
2003
|
+
meta: z.ZodObject<{
|
|
2004
|
+
requestId: z.ZodString;
|
|
2005
|
+
}, z.core.$strip>;
|
|
2006
|
+
}, z.core.$strip>;
|
|
2007
|
+
declare const AgentBlogWebhookDestinationExecuteResponseSchema: z.ZodObject<{
|
|
2008
|
+
data: z.ZodObject<{
|
|
2009
|
+
projectId: z.ZodString;
|
|
2010
|
+
siteId: z.ZodString;
|
|
2011
|
+
destinationId: z.ZodString;
|
|
2012
|
+
completed: z.ZodLiteral<true>;
|
|
2013
|
+
secretDelivered: z.ZodBoolean;
|
|
2014
|
+
alreadyDelivered: z.ZodBoolean;
|
|
2015
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
2016
|
+
message: z.ZodString;
|
|
2017
|
+
}, z.core.$strict>;
|
|
2018
|
+
meta: z.ZodObject<{
|
|
2019
|
+
requestId: z.ZodString;
|
|
2020
|
+
}, z.core.$strip>;
|
|
2021
|
+
}, z.core.$strip>;
|
|
2022
|
+
declare const AgentBlogWebhookTestResponseSchema: z.ZodObject<{
|
|
2023
|
+
data: z.ZodObject<{
|
|
2024
|
+
destinationId: z.ZodString;
|
|
2025
|
+
status: z.ZodEnum<{
|
|
2026
|
+
NEEDS_ATTENTION: "NEEDS_ATTENTION";
|
|
2027
|
+
CONNECTED: "CONNECTED";
|
|
2028
|
+
}>;
|
|
2029
|
+
enabled: z.ZodBoolean;
|
|
2030
|
+
testedAt: z.ZodString;
|
|
2031
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
2032
|
+
}, z.core.$strict>;
|
|
2033
|
+
meta: z.ZodObject<{
|
|
2034
|
+
requestId: z.ZodString;
|
|
2035
|
+
}, z.core.$strip>;
|
|
2036
|
+
}, z.core.$strip>;
|
|
2037
|
+
declare const AgentBlogWebhookRotatePreviewResponseSchema: z.ZodObject<{
|
|
2038
|
+
data: z.ZodObject<{
|
|
2039
|
+
siteId: z.ZodString;
|
|
2040
|
+
destinationId: z.ZodString;
|
|
2041
|
+
destinationName: z.ZodString;
|
|
2042
|
+
effect: z.ZodString;
|
|
2043
|
+
confirmation: z.ZodObject<{
|
|
2044
|
+
token: z.ZodString;
|
|
2045
|
+
expiresAt: z.ZodString;
|
|
2046
|
+
}, z.core.$strict>;
|
|
2047
|
+
}, z.core.$strict>;
|
|
2048
|
+
meta: z.ZodObject<{
|
|
2049
|
+
requestId: z.ZodString;
|
|
2050
|
+
}, z.core.$strip>;
|
|
2051
|
+
}, z.core.$strip>;
|
|
2052
|
+
declare const AgentBlogWebhookRotateExecuteResponseSchema: z.ZodObject<{
|
|
2053
|
+
data: z.ZodObject<{
|
|
2054
|
+
destinationId: z.ZodString;
|
|
2055
|
+
completed: z.ZodLiteral<true>;
|
|
2056
|
+
secretDelivered: z.ZodBoolean;
|
|
2057
|
+
alreadyDelivered: z.ZodBoolean;
|
|
2058
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
2059
|
+
message: z.ZodString;
|
|
2060
|
+
}, z.core.$strict>;
|
|
2061
|
+
meta: z.ZodObject<{
|
|
2062
|
+
requestId: z.ZodString;
|
|
2063
|
+
}, z.core.$strip>;
|
|
2064
|
+
}, z.core.$strip>;
|
|
1657
2065
|
type AgentBlogPlan = z.infer<typeof AgentBlogPlanSchema>;
|
|
1658
2066
|
type AgentBlogArticle = z.infer<typeof AgentBlogArticleSchema>;
|
|
1659
2067
|
type AgentBlogArticleDetail = z.infer<typeof AgentBlogArticleDetailSchema>;
|
|
@@ -1666,9 +2074,16 @@ type AgentBlogDeliveryAttempt = z.infer<typeof AgentBlogDeliveryAttemptSchema>;
|
|
|
1666
2074
|
type AgentBlogSetupStatus = z.infer<typeof AgentBlogSetupStatusSchema>;
|
|
1667
2075
|
type AgentBlogCadenceInput = z.infer<typeof AgentBlogCadenceInputSchema>;
|
|
1668
2076
|
type AgentBlogPlanItem = z.infer<typeof AgentBlogPlanItemSchema>;
|
|
2077
|
+
type AgentBlogPlanDateMove = z.infer<typeof AgentBlogPlanDateMoveSchema>;
|
|
2078
|
+
type AgentBlogPlanCadencePreview = z.infer<typeof AgentBlogPlanCadencePreviewSchema>;
|
|
2079
|
+
type AgentBlogPlanCadenceExecute = z.infer<typeof AgentBlogPlanCadenceExecuteSchema>;
|
|
1669
2080
|
type AgentBlogConnectionStatus = z.infer<typeof AgentBlogConnectionStatusSchema>;
|
|
1670
2081
|
type AgentBlogConnectionRequest = z.infer<typeof AgentBlogConnectionRequestSchema>;
|
|
1671
2082
|
type AgentBlogConnectionExecute = z.infer<typeof AgentBlogConnectionExecuteSchema>;
|
|
2083
|
+
type AgentBlogWebhookDestinationChange = z.infer<typeof AgentBlogWebhookDestinationChangeSchema>;
|
|
2084
|
+
type AgentBlogWebhookDestinationExecute = z.infer<typeof AgentBlogWebhookDestinationExecuteSchema>;
|
|
2085
|
+
type AgentBlogWebhookTest = z.infer<typeof AgentBlogWebhookTestSchema>;
|
|
2086
|
+
type AgentBlogWebhookRotateExecute = z.infer<typeof AgentBlogWebhookRotateExecuteSchema>;
|
|
1672
2087
|
declare const CapabilitySchema: z.ZodObject<{
|
|
1673
2088
|
id: z.ZodEnum<{
|
|
1674
2089
|
"identity:read": "identity:read";
|
|
@@ -1700,7 +2115,7 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
1700
2115
|
name: z.ZodLiteral<"Rolino">;
|
|
1701
2116
|
serverVersion: z.ZodString;
|
|
1702
2117
|
apiVersion: z.ZodLiteral<"v1">;
|
|
1703
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2118
|
+
contractVersion: z.ZodLiteral<"0.17.0">;
|
|
1704
2119
|
authentication: z.ZodObject<{
|
|
1705
2120
|
browserSession: z.ZodBoolean;
|
|
1706
2121
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -1748,7 +2163,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
1748
2163
|
name: z.ZodLiteral<"Rolino">;
|
|
1749
2164
|
serverVersion: z.ZodString;
|
|
1750
2165
|
apiVersion: z.ZodLiteral<"v1">;
|
|
1751
|
-
contractVersion: z.ZodLiteral<"0.
|
|
2166
|
+
contractVersion: z.ZodLiteral<"0.17.0">;
|
|
1752
2167
|
authentication: z.ZodObject<{
|
|
1753
2168
|
browserSession: z.ZodBoolean;
|
|
1754
2169
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -1798,6 +2213,7 @@ type ApiMetaResponse = z.infer<typeof ApiMetaResponseSchema>;
|
|
|
1798
2213
|
declare const AuthenticationKindSchema: z.ZodEnum<{
|
|
1799
2214
|
session: "session";
|
|
1800
2215
|
api_key: "api_key";
|
|
2216
|
+
oauth: "oauth";
|
|
1801
2217
|
}>;
|
|
1802
2218
|
type AuthenticationKind = z.infer<typeof AuthenticationKindSchema>;
|
|
1803
2219
|
declare const ActorSchema: z.ZodObject<{
|
|
@@ -1815,6 +2231,7 @@ declare const ActorSchema: z.ZodObject<{
|
|
|
1815
2231
|
kind: z.ZodEnum<{
|
|
1816
2232
|
session: "session";
|
|
1817
2233
|
api_key: "api_key";
|
|
2234
|
+
oauth: "oauth";
|
|
1818
2235
|
}>;
|
|
1819
2236
|
credentialId: z.ZodNullable<z.ZodString>;
|
|
1820
2237
|
}, z.core.$strip>;
|
|
@@ -1853,6 +2270,7 @@ declare const WhoAmIResponseSchema: z.ZodObject<{
|
|
|
1853
2270
|
kind: z.ZodEnum<{
|
|
1854
2271
|
session: "session";
|
|
1855
2272
|
api_key: "api_key";
|
|
2273
|
+
oauth: "oauth";
|
|
1856
2274
|
}>;
|
|
1857
2275
|
credentialId: z.ZodNullable<z.ZodString>;
|
|
1858
2276
|
}, z.core.$strip>;
|
|
@@ -1879,83 +2297,6 @@ declare const WhoAmIResponseSchema: z.ZodObject<{
|
|
|
1879
2297
|
}, z.core.$strip>;
|
|
1880
2298
|
}, z.core.$strip>;
|
|
1881
2299
|
type WhoAmIResponse = z.infer<typeof WhoAmIResponseSchema>;
|
|
1882
|
-
declare const CLI_BROWSER_AUTHORIZATION_TIMEOUT_MS: number;
|
|
1883
|
-
declare const CliAuthorizationExchangeRequestSchema: z.ZodObject<{
|
|
1884
|
-
code: z.ZodString;
|
|
1885
|
-
codeVerifier: z.ZodString;
|
|
1886
|
-
}, z.core.$strip>;
|
|
1887
|
-
type CliAuthorizationExchangeRequest = z.infer<typeof CliAuthorizationExchangeRequestSchema>;
|
|
1888
|
-
declare const CliAuthorizationCredentialSchema: z.ZodObject<{
|
|
1889
|
-
token: z.ZodString;
|
|
1890
|
-
tokenType: z.ZodLiteral<"Bearer">;
|
|
1891
|
-
expiresAt: z.ZodString;
|
|
1892
|
-
organization: z.ZodObject<{
|
|
1893
|
-
id: z.ZodString;
|
|
1894
|
-
name: z.ZodString;
|
|
1895
|
-
}, z.core.$strip>;
|
|
1896
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1897
|
-
"identity:read": "identity:read";
|
|
1898
|
-
"projects:read": "projects:read";
|
|
1899
|
-
"projects:write": "projects:write";
|
|
1900
|
-
"posts:read": "posts:read";
|
|
1901
|
-
"posts:write": "posts:write";
|
|
1902
|
-
"posts:schedule": "posts:schedule";
|
|
1903
|
-
"posts:publish": "posts:publish";
|
|
1904
|
-
"integrations:read": "integrations:read";
|
|
1905
|
-
"calendar:read": "calendar:read";
|
|
1906
|
-
"seo:read": "seo:read";
|
|
1907
|
-
"blog:read": "blog:read";
|
|
1908
|
-
"blog:write": "blog:write";
|
|
1909
|
-
"blog:manage": "blog:manage";
|
|
1910
|
-
"blog:approve": "blog:approve";
|
|
1911
|
-
"blog:publish": "blog:publish";
|
|
1912
|
-
}>>;
|
|
1913
|
-
}, z.core.$strip>;
|
|
1914
|
-
type CliAuthorizationCredential = z.infer<typeof CliAuthorizationCredentialSchema>;
|
|
1915
|
-
declare const CliAuthorizationExchangeResponseSchema: z.ZodObject<{
|
|
1916
|
-
data: z.ZodObject<{
|
|
1917
|
-
token: z.ZodString;
|
|
1918
|
-
tokenType: z.ZodLiteral<"Bearer">;
|
|
1919
|
-
expiresAt: z.ZodString;
|
|
1920
|
-
organization: z.ZodObject<{
|
|
1921
|
-
id: z.ZodString;
|
|
1922
|
-
name: z.ZodString;
|
|
1923
|
-
}, z.core.$strip>;
|
|
1924
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1925
|
-
"identity:read": "identity:read";
|
|
1926
|
-
"projects:read": "projects:read";
|
|
1927
|
-
"projects:write": "projects:write";
|
|
1928
|
-
"posts:read": "posts:read";
|
|
1929
|
-
"posts:write": "posts:write";
|
|
1930
|
-
"posts:schedule": "posts:schedule";
|
|
1931
|
-
"posts:publish": "posts:publish";
|
|
1932
|
-
"integrations:read": "integrations:read";
|
|
1933
|
-
"calendar:read": "calendar:read";
|
|
1934
|
-
"seo:read": "seo:read";
|
|
1935
|
-
"blog:read": "blog:read";
|
|
1936
|
-
"blog:write": "blog:write";
|
|
1937
|
-
"blog:manage": "blog:manage";
|
|
1938
|
-
"blog:approve": "blog:approve";
|
|
1939
|
-
"blog:publish": "blog:publish";
|
|
1940
|
-
}>>;
|
|
1941
|
-
}, z.core.$strip>;
|
|
1942
|
-
meta: z.ZodObject<{
|
|
1943
|
-
requestId: z.ZodString;
|
|
1944
|
-
}, z.core.$strip>;
|
|
1945
|
-
}, z.core.$strip>;
|
|
1946
|
-
type CliAuthorizationExchangeResponse = z.infer<typeof CliAuthorizationExchangeResponseSchema>;
|
|
1947
|
-
declare const CliAuthorizationRevokeDataSchema: z.ZodObject<{
|
|
1948
|
-
revoked: z.ZodLiteral<true>;
|
|
1949
|
-
}, z.core.$strip>;
|
|
1950
|
-
declare const CliAuthorizationRevokeResponseSchema: z.ZodObject<{
|
|
1951
|
-
data: z.ZodObject<{
|
|
1952
|
-
revoked: z.ZodLiteral<true>;
|
|
1953
|
-
}, z.core.$strip>;
|
|
1954
|
-
meta: z.ZodObject<{
|
|
1955
|
-
requestId: z.ZodString;
|
|
1956
|
-
}, z.core.$strip>;
|
|
1957
|
-
}, z.core.$strip>;
|
|
1958
|
-
type CliAuthorizationRevokeResponse = z.infer<typeof CliAuthorizationRevokeResponseSchema>;
|
|
1959
2300
|
declare const CapabilitiesDataSchema: z.ZodObject<{
|
|
1960
2301
|
capabilities: z.ZodArray<z.ZodObject<{
|
|
1961
2302
|
id: z.ZodEnum<{
|
|
@@ -2174,20 +2515,20 @@ type ProjectResponse = z.infer<typeof ProjectResponseSchema>;
|
|
|
2174
2515
|
declare const PostStatusSchema: z.ZodEnum<{
|
|
2175
2516
|
FAILED: "FAILED";
|
|
2176
2517
|
SCHEDULED: "SCHEDULED";
|
|
2518
|
+
PUBLISHED: "PUBLISHED";
|
|
2177
2519
|
DRAFT: "DRAFT";
|
|
2178
2520
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2179
2521
|
PUBLISHING: "PUBLISHING";
|
|
2180
|
-
PUBLISHED: "PUBLISHED";
|
|
2181
2522
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2182
2523
|
}>;
|
|
2183
2524
|
type PostStatus = z.infer<typeof PostStatusSchema>;
|
|
2184
2525
|
declare const PlatformPostStatusSchema: z.ZodEnum<{
|
|
2185
2526
|
FAILED: "FAILED";
|
|
2186
2527
|
SCHEDULED: "SCHEDULED";
|
|
2528
|
+
PUBLISHED: "PUBLISHED";
|
|
2187
2529
|
DRAFT: "DRAFT";
|
|
2188
2530
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2189
2531
|
PUBLISHING: "PUBLISHING";
|
|
2190
|
-
PUBLISHED: "PUBLISHED";
|
|
2191
2532
|
PREPARING: "PREPARING";
|
|
2192
2533
|
}>;
|
|
2193
2534
|
declare const PostMediaSchema: z.ZodObject<{
|
|
@@ -2348,6 +2689,7 @@ declare const PublishingProviderSchema: z.ZodEnum<{
|
|
|
2348
2689
|
YOUTUBE: "YOUTUBE";
|
|
2349
2690
|
BLUESKY: "BLUESKY";
|
|
2350
2691
|
LINKEDIN: "LINKEDIN";
|
|
2692
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2351
2693
|
}>;
|
|
2352
2694
|
type PublishingProvider = z.infer<typeof PublishingProviderSchema>;
|
|
2353
2695
|
declare const PUBLISHING_PROVIDER_COUNT: number;
|
|
@@ -2360,10 +2702,10 @@ declare const PostDestinationStageSchema: z.ZodEnum<{
|
|
|
2360
2702
|
QUEUED: "QUEUED";
|
|
2361
2703
|
FAILED: "FAILED";
|
|
2362
2704
|
SCHEDULED: "SCHEDULED";
|
|
2705
|
+
PUBLISHED: "PUBLISHED";
|
|
2363
2706
|
DRAFT: "DRAFT";
|
|
2364
2707
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2365
2708
|
PUBLISHING: "PUBLISHING";
|
|
2366
|
-
PUBLISHED: "PUBLISHED";
|
|
2367
2709
|
UPLOADING: "UPLOADING";
|
|
2368
2710
|
PROCESSING: "PROCESSING";
|
|
2369
2711
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2376,14 +2718,15 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
2376
2718
|
YOUTUBE: "YOUTUBE";
|
|
2377
2719
|
BLUESKY: "BLUESKY";
|
|
2378
2720
|
LINKEDIN: "LINKEDIN";
|
|
2721
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2379
2722
|
}>;
|
|
2380
2723
|
status: z.ZodEnum<{
|
|
2381
2724
|
FAILED: "FAILED";
|
|
2382
2725
|
SCHEDULED: "SCHEDULED";
|
|
2726
|
+
PUBLISHED: "PUBLISHED";
|
|
2383
2727
|
DRAFT: "DRAFT";
|
|
2384
2728
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2385
2729
|
PUBLISHING: "PUBLISHING";
|
|
2386
|
-
PUBLISHED: "PUBLISHED";
|
|
2387
2730
|
PREPARING: "PREPARING";
|
|
2388
2731
|
}>;
|
|
2389
2732
|
deliveryMode: z.ZodEnum<{
|
|
@@ -2394,10 +2737,10 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
2394
2737
|
QUEUED: "QUEUED";
|
|
2395
2738
|
FAILED: "FAILED";
|
|
2396
2739
|
SCHEDULED: "SCHEDULED";
|
|
2740
|
+
PUBLISHED: "PUBLISHED";
|
|
2397
2741
|
DRAFT: "DRAFT";
|
|
2398
2742
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2399
2743
|
PUBLISHING: "PUBLISHING";
|
|
2400
|
-
PUBLISHED: "PUBLISHED";
|
|
2401
2744
|
UPLOADING: "UPLOADING";
|
|
2402
2745
|
PROCESSING: "PROCESSING";
|
|
2403
2746
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2528,10 +2871,10 @@ declare const PostSchema: z.ZodObject<{
|
|
|
2528
2871
|
status: z.ZodEnum<{
|
|
2529
2872
|
FAILED: "FAILED";
|
|
2530
2873
|
SCHEDULED: "SCHEDULED";
|
|
2874
|
+
PUBLISHED: "PUBLISHED";
|
|
2531
2875
|
DRAFT: "DRAFT";
|
|
2532
2876
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2533
2877
|
PUBLISHING: "PUBLISHING";
|
|
2534
|
-
PUBLISHED: "PUBLISHED";
|
|
2535
2878
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2536
2879
|
}>;
|
|
2537
2880
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -2563,14 +2906,15 @@ declare const PostSchema: z.ZodObject<{
|
|
|
2563
2906
|
YOUTUBE: "YOUTUBE";
|
|
2564
2907
|
BLUESKY: "BLUESKY";
|
|
2565
2908
|
LINKEDIN: "LINKEDIN";
|
|
2909
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2566
2910
|
}>;
|
|
2567
2911
|
status: z.ZodEnum<{
|
|
2568
2912
|
FAILED: "FAILED";
|
|
2569
2913
|
SCHEDULED: "SCHEDULED";
|
|
2914
|
+
PUBLISHED: "PUBLISHED";
|
|
2570
2915
|
DRAFT: "DRAFT";
|
|
2571
2916
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2572
2917
|
PUBLISHING: "PUBLISHING";
|
|
2573
|
-
PUBLISHED: "PUBLISHED";
|
|
2574
2918
|
PREPARING: "PREPARING";
|
|
2575
2919
|
}>;
|
|
2576
2920
|
deliveryMode: z.ZodEnum<{
|
|
@@ -2581,10 +2925,10 @@ declare const PostSchema: z.ZodObject<{
|
|
|
2581
2925
|
QUEUED: "QUEUED";
|
|
2582
2926
|
FAILED: "FAILED";
|
|
2583
2927
|
SCHEDULED: "SCHEDULED";
|
|
2928
|
+
PUBLISHED: "PUBLISHED";
|
|
2584
2929
|
DRAFT: "DRAFT";
|
|
2585
2930
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2586
2931
|
PUBLISHING: "PUBLISHING";
|
|
2587
|
-
PUBLISHED: "PUBLISHED";
|
|
2588
2932
|
UPLOADING: "UPLOADING";
|
|
2589
2933
|
PROCESSING: "PROCESSING";
|
|
2590
2934
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2634,10 +2978,10 @@ declare const PostListQuerySchema: z.ZodObject<{
|
|
|
2634
2978
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2635
2979
|
FAILED: "FAILED";
|
|
2636
2980
|
SCHEDULED: "SCHEDULED";
|
|
2981
|
+
PUBLISHED: "PUBLISHED";
|
|
2637
2982
|
DRAFT: "DRAFT";
|
|
2638
2983
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2639
2984
|
PUBLISHING: "PUBLISHING";
|
|
2640
|
-
PUBLISHED: "PUBLISHED";
|
|
2641
2985
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2642
2986
|
}>>;
|
|
2643
2987
|
}, z.core.$strip>;
|
|
@@ -2655,10 +2999,10 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
2655
2999
|
status: z.ZodEnum<{
|
|
2656
3000
|
FAILED: "FAILED";
|
|
2657
3001
|
SCHEDULED: "SCHEDULED";
|
|
3002
|
+
PUBLISHED: "PUBLISHED";
|
|
2658
3003
|
DRAFT: "DRAFT";
|
|
2659
3004
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2660
3005
|
PUBLISHING: "PUBLISHING";
|
|
2661
|
-
PUBLISHED: "PUBLISHED";
|
|
2662
3006
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2663
3007
|
}>;
|
|
2664
3008
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -2690,14 +3034,15 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
2690
3034
|
YOUTUBE: "YOUTUBE";
|
|
2691
3035
|
BLUESKY: "BLUESKY";
|
|
2692
3036
|
LINKEDIN: "LINKEDIN";
|
|
3037
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2693
3038
|
}>;
|
|
2694
3039
|
status: z.ZodEnum<{
|
|
2695
3040
|
FAILED: "FAILED";
|
|
2696
3041
|
SCHEDULED: "SCHEDULED";
|
|
3042
|
+
PUBLISHED: "PUBLISHED";
|
|
2697
3043
|
DRAFT: "DRAFT";
|
|
2698
3044
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2699
3045
|
PUBLISHING: "PUBLISHING";
|
|
2700
|
-
PUBLISHED: "PUBLISHED";
|
|
2701
3046
|
PREPARING: "PREPARING";
|
|
2702
3047
|
}>;
|
|
2703
3048
|
deliveryMode: z.ZodEnum<{
|
|
@@ -2708,10 +3053,10 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
2708
3053
|
QUEUED: "QUEUED";
|
|
2709
3054
|
FAILED: "FAILED";
|
|
2710
3055
|
SCHEDULED: "SCHEDULED";
|
|
3056
|
+
PUBLISHED: "PUBLISHED";
|
|
2711
3057
|
DRAFT: "DRAFT";
|
|
2712
3058
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2713
3059
|
PUBLISHING: "PUBLISHING";
|
|
2714
|
-
PUBLISHED: "PUBLISHED";
|
|
2715
3060
|
UPLOADING: "UPLOADING";
|
|
2716
3061
|
PROCESSING: "PROCESSING";
|
|
2717
3062
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2774,10 +3119,10 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
2774
3119
|
status: z.ZodEnum<{
|
|
2775
3120
|
FAILED: "FAILED";
|
|
2776
3121
|
SCHEDULED: "SCHEDULED";
|
|
3122
|
+
PUBLISHED: "PUBLISHED";
|
|
2777
3123
|
DRAFT: "DRAFT";
|
|
2778
3124
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2779
3125
|
PUBLISHING: "PUBLISHING";
|
|
2780
|
-
PUBLISHED: "PUBLISHED";
|
|
2781
3126
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2782
3127
|
}>;
|
|
2783
3128
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -2809,14 +3154,15 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
2809
3154
|
YOUTUBE: "YOUTUBE";
|
|
2810
3155
|
BLUESKY: "BLUESKY";
|
|
2811
3156
|
LINKEDIN: "LINKEDIN";
|
|
3157
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2812
3158
|
}>;
|
|
2813
3159
|
status: z.ZodEnum<{
|
|
2814
3160
|
FAILED: "FAILED";
|
|
2815
3161
|
SCHEDULED: "SCHEDULED";
|
|
3162
|
+
PUBLISHED: "PUBLISHED";
|
|
2816
3163
|
DRAFT: "DRAFT";
|
|
2817
3164
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2818
3165
|
PUBLISHING: "PUBLISHING";
|
|
2819
|
-
PUBLISHED: "PUBLISHED";
|
|
2820
3166
|
PREPARING: "PREPARING";
|
|
2821
3167
|
}>;
|
|
2822
3168
|
deliveryMode: z.ZodEnum<{
|
|
@@ -2827,10 +3173,10 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
2827
3173
|
QUEUED: "QUEUED";
|
|
2828
3174
|
FAILED: "FAILED";
|
|
2829
3175
|
SCHEDULED: "SCHEDULED";
|
|
3176
|
+
PUBLISHED: "PUBLISHED";
|
|
2830
3177
|
DRAFT: "DRAFT";
|
|
2831
3178
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2832
3179
|
PUBLISHING: "PUBLISHING";
|
|
2833
|
-
PUBLISHED: "PUBLISHED";
|
|
2834
3180
|
UPLOADING: "UPLOADING";
|
|
2835
3181
|
PROCESSING: "PROCESSING";
|
|
2836
3182
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -2896,10 +3242,10 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
2896
3242
|
status: z.ZodEnum<{
|
|
2897
3243
|
FAILED: "FAILED";
|
|
2898
3244
|
SCHEDULED: "SCHEDULED";
|
|
3245
|
+
PUBLISHED: "PUBLISHED";
|
|
2899
3246
|
DRAFT: "DRAFT";
|
|
2900
3247
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2901
3248
|
PUBLISHING: "PUBLISHING";
|
|
2902
|
-
PUBLISHED: "PUBLISHED";
|
|
2903
3249
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
2904
3250
|
}>;
|
|
2905
3251
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -2931,14 +3277,15 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
2931
3277
|
YOUTUBE: "YOUTUBE";
|
|
2932
3278
|
BLUESKY: "BLUESKY";
|
|
2933
3279
|
LINKEDIN: "LINKEDIN";
|
|
3280
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
2934
3281
|
}>;
|
|
2935
3282
|
status: z.ZodEnum<{
|
|
2936
3283
|
FAILED: "FAILED";
|
|
2937
3284
|
SCHEDULED: "SCHEDULED";
|
|
3285
|
+
PUBLISHED: "PUBLISHED";
|
|
2938
3286
|
DRAFT: "DRAFT";
|
|
2939
3287
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2940
3288
|
PUBLISHING: "PUBLISHING";
|
|
2941
|
-
PUBLISHED: "PUBLISHED";
|
|
2942
3289
|
PREPARING: "PREPARING";
|
|
2943
3290
|
}>;
|
|
2944
3291
|
deliveryMode: z.ZodEnum<{
|
|
@@ -2949,10 +3296,10 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
2949
3296
|
QUEUED: "QUEUED";
|
|
2950
3297
|
FAILED: "FAILED";
|
|
2951
3298
|
SCHEDULED: "SCHEDULED";
|
|
3299
|
+
PUBLISHED: "PUBLISHED";
|
|
2952
3300
|
DRAFT: "DRAFT";
|
|
2953
3301
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
2954
3302
|
PUBLISHING: "PUBLISHING";
|
|
2955
|
-
PUBLISHED: "PUBLISHED";
|
|
2956
3303
|
UPLOADING: "UPLOADING";
|
|
2957
3304
|
PROCESSING: "PROCESSING";
|
|
2958
3305
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -3008,6 +3355,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
3008
3355
|
YOUTUBE: "YOUTUBE";
|
|
3009
3356
|
BLUESKY: "BLUESKY";
|
|
3010
3357
|
LINKEDIN: "LINKEDIN";
|
|
3358
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3011
3359
|
}>>>;
|
|
3012
3360
|
mediaAssetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3013
3361
|
captionOverrides: z.ZodDefault<z.ZodObject<{
|
|
@@ -3016,6 +3364,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
3016
3364
|
YOUTUBE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3017
3365
|
BLUESKY: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3018
3366
|
LINKEDIN: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3367
|
+
GOOGLE_BUSINESS_PROFILE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3019
3368
|
}, z.core.$strict>>;
|
|
3020
3369
|
tiktokSettings: z.ZodDefault<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
3021
3370
|
postMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3083,6 +3432,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
3083
3432
|
YOUTUBE: "YOUTUBE";
|
|
3084
3433
|
BLUESKY: "BLUESKY";
|
|
3085
3434
|
LINKEDIN: "LINKEDIN";
|
|
3435
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3086
3436
|
}>>>;
|
|
3087
3437
|
mediaAssetIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3088
3438
|
captionOverrides: z.ZodOptional<z.ZodObject<{
|
|
@@ -3091,6 +3441,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
3091
3441
|
YOUTUBE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3092
3442
|
BLUESKY: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3093
3443
|
LINKEDIN: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3444
|
+
GOOGLE_BUSINESS_PROFILE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3094
3445
|
}, z.core.$strict>>;
|
|
3095
3446
|
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
3096
3447
|
postMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3151,8 +3502,8 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
3151
3502
|
type DraftPostUpdateInput = z.input<typeof DraftPostUpdateInputSchema>;
|
|
3152
3503
|
type DraftPostUpdateData = z.infer<typeof DraftPostUpdateInputSchema>;
|
|
3153
3504
|
declare const IntegrationConnectionStatusSchema: z.ZodEnum<{
|
|
3154
|
-
PENDING: "PENDING";
|
|
3155
3505
|
CONNECTED: "CONNECTED";
|
|
3506
|
+
PENDING: "PENDING";
|
|
3156
3507
|
ERROR: "ERROR";
|
|
3157
3508
|
EXPIRED: "EXPIRED";
|
|
3158
3509
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -3169,10 +3520,11 @@ declare const IntegrationHealthSchema: z.ZodObject<{
|
|
|
3169
3520
|
YOUTUBE: "YOUTUBE";
|
|
3170
3521
|
BLUESKY: "BLUESKY";
|
|
3171
3522
|
LINKEDIN: "LINKEDIN";
|
|
3523
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3172
3524
|
}>;
|
|
3173
3525
|
connectionStatus: z.ZodEnum<{
|
|
3174
|
-
PENDING: "PENDING";
|
|
3175
3526
|
CONNECTED: "CONNECTED";
|
|
3527
|
+
PENDING: "PENDING";
|
|
3176
3528
|
ERROR: "ERROR";
|
|
3177
3529
|
EXPIRED: "EXPIRED";
|
|
3178
3530
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -3208,10 +3560,11 @@ declare const IntegrationHealthListDataSchema: z.ZodObject<{
|
|
|
3208
3560
|
YOUTUBE: "YOUTUBE";
|
|
3209
3561
|
BLUESKY: "BLUESKY";
|
|
3210
3562
|
LINKEDIN: "LINKEDIN";
|
|
3563
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3211
3564
|
}>;
|
|
3212
3565
|
connectionStatus: z.ZodEnum<{
|
|
3213
|
-
PENDING: "PENDING";
|
|
3214
3566
|
CONNECTED: "CONNECTED";
|
|
3567
|
+
PENDING: "PENDING";
|
|
3215
3568
|
ERROR: "ERROR";
|
|
3216
3569
|
EXPIRED: "EXPIRED";
|
|
3217
3570
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -3249,10 +3602,11 @@ declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
|
3249
3602
|
YOUTUBE: "YOUTUBE";
|
|
3250
3603
|
BLUESKY: "BLUESKY";
|
|
3251
3604
|
LINKEDIN: "LINKEDIN";
|
|
3605
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3252
3606
|
}>;
|
|
3253
3607
|
connectionStatus: z.ZodEnum<{
|
|
3254
|
-
PENDING: "PENDING";
|
|
3255
3608
|
CONNECTED: "CONNECTED";
|
|
3609
|
+
PENDING: "PENDING";
|
|
3256
3610
|
ERROR: "ERROR";
|
|
3257
3611
|
EXPIRED: "EXPIRED";
|
|
3258
3612
|
DISCONNECTED: "DISCONNECTED";
|
|
@@ -3531,6 +3885,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
3531
3885
|
YOUTUBE: "YOUTUBE";
|
|
3532
3886
|
BLUESKY: "BLUESKY";
|
|
3533
3887
|
LINKEDIN: "LINKEDIN";
|
|
3888
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3534
3889
|
}>>;
|
|
3535
3890
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3536
3891
|
}, z.core.$strip>;
|
|
@@ -3555,6 +3910,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
3555
3910
|
YOUTUBE: "YOUTUBE";
|
|
3556
3911
|
BLUESKY: "BLUESKY";
|
|
3557
3912
|
LINKEDIN: "LINKEDIN";
|
|
3913
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3558
3914
|
}>>;
|
|
3559
3915
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3560
3916
|
status: z.ZodEnum<{
|
|
@@ -3586,6 +3942,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
3586
3942
|
YOUTUBE: "YOUTUBE";
|
|
3587
3943
|
BLUESKY: "BLUESKY";
|
|
3588
3944
|
LINKEDIN: "LINKEDIN";
|
|
3945
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3589
3946
|
}>>;
|
|
3590
3947
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3591
3948
|
}, z.core.$strip>>;
|
|
@@ -3612,6 +3969,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3612
3969
|
YOUTUBE: "YOUTUBE";
|
|
3613
3970
|
BLUESKY: "BLUESKY";
|
|
3614
3971
|
LINKEDIN: "LINKEDIN";
|
|
3972
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3615
3973
|
}>>;
|
|
3616
3974
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3617
3975
|
status: z.ZodEnum<{
|
|
@@ -3643,6 +4001,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3643
4001
|
YOUTUBE: "YOUTUBE";
|
|
3644
4002
|
BLUESKY: "BLUESKY";
|
|
3645
4003
|
LINKEDIN: "LINKEDIN";
|
|
4004
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3646
4005
|
}>>;
|
|
3647
4006
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3648
4007
|
}, z.core.$strip>>;
|
|
@@ -3654,6 +4013,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3654
4013
|
YOUTUBE: "YOUTUBE";
|
|
3655
4014
|
BLUESKY: "BLUESKY";
|
|
3656
4015
|
LINKEDIN: "LINKEDIN";
|
|
4016
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3657
4017
|
}>;
|
|
3658
4018
|
connected: z.ZodBoolean;
|
|
3659
4019
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3667,6 +4027,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
3667
4027
|
YOUTUBE: "YOUTUBE";
|
|
3668
4028
|
BLUESKY: "BLUESKY";
|
|
3669
4029
|
LINKEDIN: "LINKEDIN";
|
|
4030
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3670
4031
|
}>>;
|
|
3671
4032
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3672
4033
|
}, z.core.$strip>;
|
|
@@ -3694,6 +4055,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3694
4055
|
YOUTUBE: "YOUTUBE";
|
|
3695
4056
|
BLUESKY: "BLUESKY";
|
|
3696
4057
|
LINKEDIN: "LINKEDIN";
|
|
4058
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3697
4059
|
}>>;
|
|
3698
4060
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3699
4061
|
status: z.ZodEnum<{
|
|
@@ -3725,6 +4087,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3725
4087
|
YOUTUBE: "YOUTUBE";
|
|
3726
4088
|
BLUESKY: "BLUESKY";
|
|
3727
4089
|
LINKEDIN: "LINKEDIN";
|
|
4090
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3728
4091
|
}>>;
|
|
3729
4092
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3730
4093
|
}, z.core.$strip>>;
|
|
@@ -3736,6 +4099,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3736
4099
|
YOUTUBE: "YOUTUBE";
|
|
3737
4100
|
BLUESKY: "BLUESKY";
|
|
3738
4101
|
LINKEDIN: "LINKEDIN";
|
|
4102
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3739
4103
|
}>;
|
|
3740
4104
|
connected: z.ZodBoolean;
|
|
3741
4105
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3749,6 +4113,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
3749
4113
|
YOUTUBE: "YOUTUBE";
|
|
3750
4114
|
BLUESKY: "BLUESKY";
|
|
3751
4115
|
LINKEDIN: "LINKEDIN";
|
|
4116
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3752
4117
|
}>>;
|
|
3753
4118
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3754
4119
|
}, z.core.$strip>;
|
|
@@ -3777,10 +4142,10 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3777
4142
|
status: z.ZodEnum<{
|
|
3778
4143
|
FAILED: "FAILED";
|
|
3779
4144
|
SCHEDULED: "SCHEDULED";
|
|
4145
|
+
PUBLISHED: "PUBLISHED";
|
|
3780
4146
|
DRAFT: "DRAFT";
|
|
3781
4147
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3782
4148
|
PUBLISHING: "PUBLISHING";
|
|
3783
|
-
PUBLISHED: "PUBLISHED";
|
|
3784
4149
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3785
4150
|
}>;
|
|
3786
4151
|
}, z.core.$strip>;
|
|
@@ -3794,6 +4159,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3794
4159
|
YOUTUBE: "YOUTUBE";
|
|
3795
4160
|
BLUESKY: "BLUESKY";
|
|
3796
4161
|
LINKEDIN: "LINKEDIN";
|
|
4162
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3797
4163
|
}>>;
|
|
3798
4164
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3799
4165
|
uploadVisibility: z.ZodLiteral<"PRIVATE">;
|
|
@@ -3828,6 +4194,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3828
4194
|
YOUTUBE: "YOUTUBE";
|
|
3829
4195
|
BLUESKY: "BLUESKY";
|
|
3830
4196
|
LINKEDIN: "LINKEDIN";
|
|
4197
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3831
4198
|
}>>;
|
|
3832
4199
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3833
4200
|
status: z.ZodEnum<{
|
|
@@ -3859,6 +4226,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3859
4226
|
YOUTUBE: "YOUTUBE";
|
|
3860
4227
|
BLUESKY: "BLUESKY";
|
|
3861
4228
|
LINKEDIN: "LINKEDIN";
|
|
4229
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3862
4230
|
}>>;
|
|
3863
4231
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3864
4232
|
}, z.core.$strip>>;
|
|
@@ -3870,6 +4238,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3870
4238
|
YOUTUBE: "YOUTUBE";
|
|
3871
4239
|
BLUESKY: "BLUESKY";
|
|
3872
4240
|
LINKEDIN: "LINKEDIN";
|
|
4241
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3873
4242
|
}>;
|
|
3874
4243
|
connected: z.ZodBoolean;
|
|
3875
4244
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -3883,6 +4252,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
3883
4252
|
YOUTUBE: "YOUTUBE";
|
|
3884
4253
|
BLUESKY: "BLUESKY";
|
|
3885
4254
|
LINKEDIN: "LINKEDIN";
|
|
4255
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3886
4256
|
}>>;
|
|
3887
4257
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3888
4258
|
}, z.core.$strip>;
|
|
@@ -3903,10 +4273,10 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3903
4273
|
status: z.ZodEnum<{
|
|
3904
4274
|
FAILED: "FAILED";
|
|
3905
4275
|
SCHEDULED: "SCHEDULED";
|
|
4276
|
+
PUBLISHED: "PUBLISHED";
|
|
3906
4277
|
DRAFT: "DRAFT";
|
|
3907
4278
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
3908
4279
|
PUBLISHING: "PUBLISHING";
|
|
3909
|
-
PUBLISHED: "PUBLISHED";
|
|
3910
4280
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
3911
4281
|
}>;
|
|
3912
4282
|
}, z.core.$strip>;
|
|
@@ -3920,6 +4290,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3920
4290
|
YOUTUBE: "YOUTUBE";
|
|
3921
4291
|
BLUESKY: "BLUESKY";
|
|
3922
4292
|
LINKEDIN: "LINKEDIN";
|
|
4293
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3923
4294
|
}>>;
|
|
3924
4295
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3925
4296
|
uploadVisibility: z.ZodLiteral<"PRIVATE">;
|
|
@@ -3954,6 +4325,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3954
4325
|
YOUTUBE: "YOUTUBE";
|
|
3955
4326
|
BLUESKY: "BLUESKY";
|
|
3956
4327
|
LINKEDIN: "LINKEDIN";
|
|
4328
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3957
4329
|
}>>;
|
|
3958
4330
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3959
4331
|
status: z.ZodEnum<{
|
|
@@ -3985,6 +4357,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3985
4357
|
YOUTUBE: "YOUTUBE";
|
|
3986
4358
|
BLUESKY: "BLUESKY";
|
|
3987
4359
|
LINKEDIN: "LINKEDIN";
|
|
4360
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3988
4361
|
}>>;
|
|
3989
4362
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
3990
4363
|
}, z.core.$strip>>;
|
|
@@ -3996,6 +4369,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
3996
4369
|
YOUTUBE: "YOUTUBE";
|
|
3997
4370
|
BLUESKY: "BLUESKY";
|
|
3998
4371
|
LINKEDIN: "LINKEDIN";
|
|
4372
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
3999
4373
|
}>;
|
|
4000
4374
|
connected: z.ZodBoolean;
|
|
4001
4375
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4009,6 +4383,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
4009
4383
|
YOUTUBE: "YOUTUBE";
|
|
4010
4384
|
BLUESKY: "BLUESKY";
|
|
4011
4385
|
LINKEDIN: "LINKEDIN";
|
|
4386
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4012
4387
|
}>>;
|
|
4013
4388
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
4014
4389
|
}, z.core.$strip>;
|
|
@@ -4047,10 +4422,10 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
4047
4422
|
status: z.ZodEnum<{
|
|
4048
4423
|
FAILED: "FAILED";
|
|
4049
4424
|
SCHEDULED: "SCHEDULED";
|
|
4425
|
+
PUBLISHED: "PUBLISHED";
|
|
4050
4426
|
DRAFT: "DRAFT";
|
|
4051
4427
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4052
4428
|
PUBLISHING: "PUBLISHING";
|
|
4053
|
-
PUBLISHED: "PUBLISHED";
|
|
4054
4429
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4055
4430
|
}>;
|
|
4056
4431
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -4082,14 +4457,15 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
4082
4457
|
YOUTUBE: "YOUTUBE";
|
|
4083
4458
|
BLUESKY: "BLUESKY";
|
|
4084
4459
|
LINKEDIN: "LINKEDIN";
|
|
4460
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4085
4461
|
}>;
|
|
4086
4462
|
status: z.ZodEnum<{
|
|
4087
4463
|
FAILED: "FAILED";
|
|
4088
4464
|
SCHEDULED: "SCHEDULED";
|
|
4465
|
+
PUBLISHED: "PUBLISHED";
|
|
4089
4466
|
DRAFT: "DRAFT";
|
|
4090
4467
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4091
4468
|
PUBLISHING: "PUBLISHING";
|
|
4092
|
-
PUBLISHED: "PUBLISHED";
|
|
4093
4469
|
PREPARING: "PREPARING";
|
|
4094
4470
|
}>;
|
|
4095
4471
|
deliveryMode: z.ZodEnum<{
|
|
@@ -4100,10 +4476,10 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
4100
4476
|
QUEUED: "QUEUED";
|
|
4101
4477
|
FAILED: "FAILED";
|
|
4102
4478
|
SCHEDULED: "SCHEDULED";
|
|
4479
|
+
PUBLISHED: "PUBLISHED";
|
|
4103
4480
|
DRAFT: "DRAFT";
|
|
4104
4481
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4105
4482
|
PUBLISHING: "PUBLISHING";
|
|
4106
|
-
PUBLISHED: "PUBLISHED";
|
|
4107
4483
|
UPLOADING: "UPLOADING";
|
|
4108
4484
|
PROCESSING: "PROCESSING";
|
|
4109
4485
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -4172,10 +4548,10 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
4172
4548
|
status: z.ZodEnum<{
|
|
4173
4549
|
FAILED: "FAILED";
|
|
4174
4550
|
SCHEDULED: "SCHEDULED";
|
|
4551
|
+
PUBLISHED: "PUBLISHED";
|
|
4175
4552
|
DRAFT: "DRAFT";
|
|
4176
4553
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4177
4554
|
PUBLISHING: "PUBLISHING";
|
|
4178
|
-
PUBLISHED: "PUBLISHED";
|
|
4179
4555
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4180
4556
|
}>;
|
|
4181
4557
|
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
@@ -4207,14 +4583,15 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
4207
4583
|
YOUTUBE: "YOUTUBE";
|
|
4208
4584
|
BLUESKY: "BLUESKY";
|
|
4209
4585
|
LINKEDIN: "LINKEDIN";
|
|
4586
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4210
4587
|
}>;
|
|
4211
4588
|
status: z.ZodEnum<{
|
|
4212
4589
|
FAILED: "FAILED";
|
|
4213
4590
|
SCHEDULED: "SCHEDULED";
|
|
4591
|
+
PUBLISHED: "PUBLISHED";
|
|
4214
4592
|
DRAFT: "DRAFT";
|
|
4215
4593
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4216
4594
|
PUBLISHING: "PUBLISHING";
|
|
4217
|
-
PUBLISHED: "PUBLISHED";
|
|
4218
4595
|
PREPARING: "PREPARING";
|
|
4219
4596
|
}>;
|
|
4220
4597
|
deliveryMode: z.ZodEnum<{
|
|
@@ -4225,10 +4602,10 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
4225
4602
|
QUEUED: "QUEUED";
|
|
4226
4603
|
FAILED: "FAILED";
|
|
4227
4604
|
SCHEDULED: "SCHEDULED";
|
|
4605
|
+
PUBLISHED: "PUBLISHED";
|
|
4228
4606
|
DRAFT: "DRAFT";
|
|
4229
4607
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4230
4608
|
PUBLISHING: "PUBLISHING";
|
|
4231
|
-
PUBLISHED: "PUBLISHED";
|
|
4232
4609
|
UPLOADING: "UPLOADING";
|
|
4233
4610
|
PROCESSING: "PROCESSING";
|
|
4234
4611
|
CONFIRMING_SCHEDULE: "CONFIRMING_SCHEDULE";
|
|
@@ -4294,6 +4671,7 @@ declare const PostPublishInputSchema: z.ZodObject<{
|
|
|
4294
4671
|
YOUTUBE: "YOUTUBE";
|
|
4295
4672
|
BLUESKY: "BLUESKY";
|
|
4296
4673
|
LINKEDIN: "LINKEDIN";
|
|
4674
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4297
4675
|
}>>;
|
|
4298
4676
|
}, z.core.$strict>;
|
|
4299
4677
|
type PostPublishInput = z.infer<typeof PostPublishInputSchema>;
|
|
@@ -4304,6 +4682,7 @@ declare const PostPublishExecuteInputSchema: z.ZodObject<{
|
|
|
4304
4682
|
YOUTUBE: "YOUTUBE";
|
|
4305
4683
|
BLUESKY: "BLUESKY";
|
|
4306
4684
|
LINKEDIN: "LINKEDIN";
|
|
4685
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4307
4686
|
}>>;
|
|
4308
4687
|
confirmationToken: z.ZodString;
|
|
4309
4688
|
}, z.core.$strict>;
|
|
@@ -4318,10 +4697,10 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4318
4697
|
status: z.ZodEnum<{
|
|
4319
4698
|
FAILED: "FAILED";
|
|
4320
4699
|
SCHEDULED: "SCHEDULED";
|
|
4700
|
+
PUBLISHED: "PUBLISHED";
|
|
4321
4701
|
DRAFT: "DRAFT";
|
|
4322
4702
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4323
4703
|
PUBLISHING: "PUBLISHING";
|
|
4324
|
-
PUBLISHED: "PUBLISHED";
|
|
4325
4704
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4326
4705
|
}>;
|
|
4327
4706
|
}, z.core.$strip>;
|
|
@@ -4331,6 +4710,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4331
4710
|
YOUTUBE: "YOUTUBE";
|
|
4332
4711
|
BLUESKY: "BLUESKY";
|
|
4333
4712
|
LINKEDIN: "LINKEDIN";
|
|
4713
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4334
4714
|
}>>;
|
|
4335
4715
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4336
4716
|
visibility: z.ZodEnum<{
|
|
@@ -4363,6 +4743,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4363
4743
|
YOUTUBE: "YOUTUBE";
|
|
4364
4744
|
BLUESKY: "BLUESKY";
|
|
4365
4745
|
LINKEDIN: "LINKEDIN";
|
|
4746
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4366
4747
|
}>>;
|
|
4367
4748
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4368
4749
|
status: z.ZodEnum<{
|
|
@@ -4394,6 +4775,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4394
4775
|
YOUTUBE: "YOUTUBE";
|
|
4395
4776
|
BLUESKY: "BLUESKY";
|
|
4396
4777
|
LINKEDIN: "LINKEDIN";
|
|
4778
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4397
4779
|
}>>;
|
|
4398
4780
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4399
4781
|
}, z.core.$strip>>;
|
|
@@ -4405,6 +4787,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4405
4787
|
YOUTUBE: "YOUTUBE";
|
|
4406
4788
|
BLUESKY: "BLUESKY";
|
|
4407
4789
|
LINKEDIN: "LINKEDIN";
|
|
4790
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4408
4791
|
}>;
|
|
4409
4792
|
connected: z.ZodBoolean;
|
|
4410
4793
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4418,6 +4801,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
4418
4801
|
YOUTUBE: "YOUTUBE";
|
|
4419
4802
|
BLUESKY: "BLUESKY";
|
|
4420
4803
|
LINKEDIN: "LINKEDIN";
|
|
4804
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4421
4805
|
}>>;
|
|
4422
4806
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
4423
4807
|
}, z.core.$strip>;
|
|
@@ -4438,10 +4822,10 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4438
4822
|
status: z.ZodEnum<{
|
|
4439
4823
|
FAILED: "FAILED";
|
|
4440
4824
|
SCHEDULED: "SCHEDULED";
|
|
4825
|
+
PUBLISHED: "PUBLISHED";
|
|
4441
4826
|
DRAFT: "DRAFT";
|
|
4442
4827
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4443
4828
|
PUBLISHING: "PUBLISHING";
|
|
4444
|
-
PUBLISHED: "PUBLISHED";
|
|
4445
4829
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4446
4830
|
}>;
|
|
4447
4831
|
}, z.core.$strip>;
|
|
@@ -4451,6 +4835,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4451
4835
|
YOUTUBE: "YOUTUBE";
|
|
4452
4836
|
BLUESKY: "BLUESKY";
|
|
4453
4837
|
LINKEDIN: "LINKEDIN";
|
|
4838
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4454
4839
|
}>>;
|
|
4455
4840
|
youtube: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4456
4841
|
visibility: z.ZodEnum<{
|
|
@@ -4483,6 +4868,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4483
4868
|
YOUTUBE: "YOUTUBE";
|
|
4484
4869
|
BLUESKY: "BLUESKY";
|
|
4485
4870
|
LINKEDIN: "LINKEDIN";
|
|
4871
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4486
4872
|
}>>;
|
|
4487
4873
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4488
4874
|
status: z.ZodEnum<{
|
|
@@ -4514,6 +4900,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4514
4900
|
YOUTUBE: "YOUTUBE";
|
|
4515
4901
|
BLUESKY: "BLUESKY";
|
|
4516
4902
|
LINKEDIN: "LINKEDIN";
|
|
4903
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4517
4904
|
}>>;
|
|
4518
4905
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
4519
4906
|
}, z.core.$strip>>;
|
|
@@ -4525,6 +4912,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4525
4912
|
YOUTUBE: "YOUTUBE";
|
|
4526
4913
|
BLUESKY: "BLUESKY";
|
|
4527
4914
|
LINKEDIN: "LINKEDIN";
|
|
4915
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4528
4916
|
}>;
|
|
4529
4917
|
connected: z.ZodBoolean;
|
|
4530
4918
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -4538,6 +4926,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
4538
4926
|
YOUTUBE: "YOUTUBE";
|
|
4539
4927
|
BLUESKY: "BLUESKY";
|
|
4540
4928
|
LINKEDIN: "LINKEDIN";
|
|
4929
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4541
4930
|
}>>;
|
|
4542
4931
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
4543
4932
|
}, z.core.$strip>;
|
|
@@ -4558,9 +4947,9 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
4558
4947
|
status: z.ZodEnum<{
|
|
4559
4948
|
FAILED: "FAILED";
|
|
4560
4949
|
SCHEDULED: "SCHEDULED";
|
|
4950
|
+
PUBLISHED: "PUBLISHED";
|
|
4561
4951
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4562
4952
|
PUBLISHING: "PUBLISHING";
|
|
4563
|
-
PUBLISHED: "PUBLISHED";
|
|
4564
4953
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4565
4954
|
}>;
|
|
4566
4955
|
scheduledAt: z.ZodString;
|
|
@@ -4577,14 +4966,15 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
4577
4966
|
YOUTUBE: "YOUTUBE";
|
|
4578
4967
|
BLUESKY: "BLUESKY";
|
|
4579
4968
|
LINKEDIN: "LINKEDIN";
|
|
4969
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4580
4970
|
}>;
|
|
4581
4971
|
status: z.ZodEnum<{
|
|
4582
4972
|
FAILED: "FAILED";
|
|
4583
4973
|
SCHEDULED: "SCHEDULED";
|
|
4974
|
+
PUBLISHED: "PUBLISHED";
|
|
4584
4975
|
DRAFT: "DRAFT";
|
|
4585
4976
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4586
4977
|
PUBLISHING: "PUBLISHING";
|
|
4587
|
-
PUBLISHED: "PUBLISHED";
|
|
4588
4978
|
PREPARING: "PREPARING";
|
|
4589
4979
|
}>;
|
|
4590
4980
|
}, z.core.$strip>>;
|
|
@@ -4606,9 +4996,9 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
4606
4996
|
status: z.ZodEnum<{
|
|
4607
4997
|
FAILED: "FAILED";
|
|
4608
4998
|
SCHEDULED: "SCHEDULED";
|
|
4999
|
+
PUBLISHED: "PUBLISHED";
|
|
4609
5000
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4610
5001
|
PUBLISHING: "PUBLISHING";
|
|
4611
|
-
PUBLISHED: "PUBLISHED";
|
|
4612
5002
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4613
5003
|
}>;
|
|
4614
5004
|
scheduledAt: z.ZodString;
|
|
@@ -4625,14 +5015,15 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
4625
5015
|
YOUTUBE: "YOUTUBE";
|
|
4626
5016
|
BLUESKY: "BLUESKY";
|
|
4627
5017
|
LINKEDIN: "LINKEDIN";
|
|
5018
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4628
5019
|
}>;
|
|
4629
5020
|
status: z.ZodEnum<{
|
|
4630
5021
|
FAILED: "FAILED";
|
|
4631
5022
|
SCHEDULED: "SCHEDULED";
|
|
5023
|
+
PUBLISHED: "PUBLISHED";
|
|
4632
5024
|
DRAFT: "DRAFT";
|
|
4633
5025
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4634
5026
|
PUBLISHING: "PUBLISHING";
|
|
4635
|
-
PUBLISHED: "PUBLISHED";
|
|
4636
5027
|
PREPARING: "PREPARING";
|
|
4637
5028
|
}>;
|
|
4638
5029
|
}, z.core.$strip>>;
|
|
@@ -4657,9 +5048,9 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
4657
5048
|
status: z.ZodEnum<{
|
|
4658
5049
|
FAILED: "FAILED";
|
|
4659
5050
|
SCHEDULED: "SCHEDULED";
|
|
5051
|
+
PUBLISHED: "PUBLISHED";
|
|
4660
5052
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4661
5053
|
PUBLISHING: "PUBLISHING";
|
|
4662
|
-
PUBLISHED: "PUBLISHED";
|
|
4663
5054
|
PARTIALLY_PUBLISHED: "PARTIALLY_PUBLISHED";
|
|
4664
5055
|
}>;
|
|
4665
5056
|
scheduledAt: z.ZodString;
|
|
@@ -4676,14 +5067,15 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
4676
5067
|
YOUTUBE: "YOUTUBE";
|
|
4677
5068
|
BLUESKY: "BLUESKY";
|
|
4678
5069
|
LINKEDIN: "LINKEDIN";
|
|
5070
|
+
GOOGLE_BUSINESS_PROFILE: "GOOGLE_BUSINESS_PROFILE";
|
|
4679
5071
|
}>;
|
|
4680
5072
|
status: z.ZodEnum<{
|
|
4681
5073
|
FAILED: "FAILED";
|
|
4682
5074
|
SCHEDULED: "SCHEDULED";
|
|
5075
|
+
PUBLISHED: "PUBLISHED";
|
|
4683
5076
|
DRAFT: "DRAFT";
|
|
4684
5077
|
ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
4685
5078
|
PUBLISHING: "PUBLISHING";
|
|
4686
|
-
PUBLISHED: "PUBLISHED";
|
|
4687
5079
|
PREPARING: "PREPARING";
|
|
4688
5080
|
}>;
|
|
4689
5081
|
}, z.core.$strip>>;
|
|
@@ -7079,4 +7471,4 @@ declare const SeoReportResponseSchema: z.ZodObject<{
|
|
|
7079
7471
|
}, z.core.$strip>;
|
|
7080
7472
|
}, z.core.$strip>;
|
|
7081
7473
|
|
|
7082
|
-
export { API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQueuedResponseSchema, AgentBlogArticleResponseSchema, AgentBlogArticleSchema, type AgentBlogCadenceInput, AgentBlogCadenceInputSchema, type AgentBlogConnectionExecute, AgentBlogConnectionExecuteRequestSchema, AgentBlogConnectionExecuteResponseSchema, AgentBlogConnectionExecuteSchema, AgentBlogConnectionPreviewRequestSchema, AgentBlogConnectionPreviewResponseSchema, AgentBlogConnectionPreviewSchema, type AgentBlogConnectionRequest, AgentBlogConnectionRequestSchema, type AgentBlogConnectionStatus, AgentBlogConnectionStatusResponseSchema, AgentBlogConnectionStatusSchema, type AgentBlogDeliveryAttempt, AgentBlogDeliveryAttemptListResponseSchema, AgentBlogDeliveryAttemptSchema, AgentBlogDestinationSelectionSchema, type AgentBlogDraftUpdate, AgentBlogDraftUpdateSchema, AgentBlogGenerateRequestSchema, AgentBlogIdempotentRequestSchema, AgentBlogImageGenerateRequestSchema, AgentBlogImageGenerationResponseSchema, AgentBlogImageResponseSchema, AgentBlogImageReviewRequestSchema, AgentBlogImageSchema, AgentBlogImageUploadCompleteRequestSchema, AgentBlogImageUploadPreparationResponseSchema, AgentBlogImageUploadPrepareRequestSchema, type AgentBlogJob, AgentBlogJobResponseSchema, AgentBlogJobSchema, type AgentBlogPlan, AgentBlogPlanCreateRequestSchema, type AgentBlogPlanItem, AgentBlogPlanItemResponseSchema, AgentBlogPlanItemSchema, AgentBlogPlanItemStateRequestSchema, AgentBlogPlanItemsResponseSchema, AgentBlogPlanListResponseSchema, AgentBlogPlanQueuedResponseSchema, AgentBlogPlanRetryRequestSchema, AgentBlogPlanSchema, AgentBlogPublishExecuteRequestSchema, AgentBlogPublishExecuteResponseSchema, type AgentBlogPublishPreview, AgentBlogPublishPreviewRequestSchema, AgentBlogPublishPreviewResponseSchema, AgentBlogPublishPreviewSchema, type AgentBlogPublishingDestination, AgentBlogPublishingDestinationListResponseSchema, AgentBlogPublishingDestinationSchema, type AgentBlogPublishingProvider, AgentBlogPublishingProviderListResponseSchema, AgentBlogPublishingProviderSchema, AgentBlogRevalidationTestRequestSchema, AgentBlogRevalidationTestResponseSchema, AgentBlogRevalidationTestSchema, AgentBlogScheduleCancelExecuteRequestSchema, AgentBlogScheduleCancelExecuteResponseSchema, AgentBlogScheduleCancelExecuteSchema, AgentBlogScheduleCancelPreviewRequestSchema, AgentBlogScheduleCancelPreviewResponseSchema, AgentBlogScheduleCancelPreviewSchema, AgentBlogScheduleExecuteRequestSchema, AgentBlogScheduleExecuteResponseSchema, AgentBlogScheduleExecuteSchema, AgentBlogSchedulePreviewRequestSchema, AgentBlogSchedulePreviewResponseSchema, AgentBlogSchedulePreviewSchema, type AgentBlogSetupStatus, AgentBlogSetupStatusResponseSchema, AgentBlogSetupStatusSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, BlogArticleListSchema, BlogImageSchema, BlogMetadataSchema, BlogSitemapEntrySchema, BlogSlugRedirectSchema,
|
|
7474
|
+
export { API_VERSION, type Actor, ActorSchema, AgentBlogApprovalExecuteRequestSchema, AgentBlogApprovalExecuteResponseSchema, AgentBlogApprovalExecuteSchema, AgentBlogApprovalImageSummarySchema, AgentBlogApprovalLinkSummarySchema, AgentBlogApprovalPreviewRequestSchema, AgentBlogApprovalPreviewResponseSchema, AgentBlogApprovalPreviewSchema, type AgentBlogArticle, AgentBlogArticleCreateRequestSchema, type AgentBlogArticleDetail, AgentBlogArticleDetailSchema, AgentBlogArticleListResponseSchema, AgentBlogArticleQueuedResponseSchema, AgentBlogArticleResponseSchema, AgentBlogArticleSchema, type AgentBlogCadenceInput, AgentBlogCadenceInputSchema, type AgentBlogConnectionExecute, AgentBlogConnectionExecuteRequestSchema, AgentBlogConnectionExecuteResponseSchema, AgentBlogConnectionExecuteSchema, AgentBlogConnectionPreviewRequestSchema, AgentBlogConnectionPreviewResponseSchema, AgentBlogConnectionPreviewSchema, type AgentBlogConnectionRequest, AgentBlogConnectionRequestSchema, type AgentBlogConnectionStatus, AgentBlogConnectionStatusResponseSchema, AgentBlogConnectionStatusSchema, type AgentBlogDeliveryAttempt, AgentBlogDeliveryAttemptListResponseSchema, AgentBlogDeliveryAttemptSchema, AgentBlogDestinationSelectionSchema, type AgentBlogDraftUpdate, AgentBlogDraftUpdateSchema, AgentBlogGenerateRequestSchema, AgentBlogIdempotentRequestSchema, AgentBlogImageGenerateRequestSchema, AgentBlogImageGenerationResponseSchema, AgentBlogImageResponseSchema, AgentBlogImageReviewRequestSchema, AgentBlogImageSchema, AgentBlogImageUploadCompleteRequestSchema, AgentBlogImageUploadPreparationResponseSchema, AgentBlogImageUploadPrepareRequestSchema, type AgentBlogJob, AgentBlogJobResponseSchema, AgentBlogJobSchema, type AgentBlogPlan, type AgentBlogPlanCadenceExecute, AgentBlogPlanCadenceExecuteRequestSchema, AgentBlogPlanCadenceExecuteResponseSchema, AgentBlogPlanCadenceExecuteSchema, type AgentBlogPlanCadencePreview, AgentBlogPlanCadencePreviewRequestSchema, AgentBlogPlanCadencePreviewResponseSchema, AgentBlogPlanCadencePreviewSchema, AgentBlogPlanCreateRequestSchema, type AgentBlogPlanDateMove, AgentBlogPlanDateMoveSchema, type AgentBlogPlanItem, AgentBlogPlanItemResponseSchema, AgentBlogPlanItemSchema, AgentBlogPlanItemStateRequestSchema, AgentBlogPlanItemsResponseSchema, AgentBlogPlanListResponseSchema, AgentBlogPlanLockedItemSchema, AgentBlogPlanQueuedResponseSchema, AgentBlogPlanRetryRequestSchema, AgentBlogPlanSchema, AgentBlogPublishExecuteRequestSchema, AgentBlogPublishExecuteResponseSchema, type AgentBlogPublishPreview, AgentBlogPublishPreviewRequestSchema, AgentBlogPublishPreviewResponseSchema, AgentBlogPublishPreviewSchema, type AgentBlogPublishingDestination, AgentBlogPublishingDestinationListResponseSchema, AgentBlogPublishingDestinationSchema, type AgentBlogPublishingProvider, AgentBlogPublishingProviderListResponseSchema, AgentBlogPublishingProviderSchema, AgentBlogRevalidationTestRequestSchema, AgentBlogRevalidationTestResponseSchema, AgentBlogRevalidationTestSchema, AgentBlogScheduleCancelExecuteRequestSchema, AgentBlogScheduleCancelExecuteResponseSchema, AgentBlogScheduleCancelExecuteSchema, AgentBlogScheduleCancelPreviewRequestSchema, AgentBlogScheduleCancelPreviewResponseSchema, AgentBlogScheduleCancelPreviewSchema, AgentBlogScheduleExecuteRequestSchema, AgentBlogScheduleExecuteResponseSchema, AgentBlogScheduleExecuteSchema, AgentBlogSchedulePreviewRequestSchema, AgentBlogSchedulePreviewResponseSchema, AgentBlogSchedulePreviewSchema, type AgentBlogSetupStatus, AgentBlogSetupStatusResponseSchema, AgentBlogSetupStatusSchema, type AgentBlogWebhookDestinationChange, AgentBlogWebhookDestinationChangeSchema, type AgentBlogWebhookDestinationExecute, AgentBlogWebhookDestinationExecuteRequestSchema, AgentBlogWebhookDestinationExecuteResponseSchema, AgentBlogWebhookDestinationExecuteSchema, AgentBlogWebhookDestinationPreviewRequestSchema, AgentBlogWebhookDestinationPreviewResponseSchema, AgentBlogWebhookDestinationPreviewSchema, type AgentBlogWebhookRotateExecute, AgentBlogWebhookRotateExecuteRequestSchema, AgentBlogWebhookRotateExecuteResponseSchema, AgentBlogWebhookRotateExecuteSchema, AgentBlogWebhookRotatePreviewRequestSchema, AgentBlogWebhookRotatePreviewResponseSchema, AgentBlogWebhookRotatePreviewSchema, AgentBlogWebhookSemanticsSchema, type AgentBlogWebhookTest, AgentBlogWebhookTestRequestSchema, AgentBlogWebhookTestResponseSchema, AgentBlogWebhookTestSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, BlogArticleListSchema, BlogImageSchema, BlogMetadataSchema, BlogSitemapEntrySchema, BlogSlugRedirectSchema, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, type DraftPostData, type DraftPostInput, DraftPostInputSchema, type DraftPostUpdateData, type DraftPostUpdateInput, DraftPostUpdateInputSchema, IntegrationConnectionStatusSchema, type IntegrationHealth, type IntegrationHealthListData, IntegrationHealthListDataSchema, IntegrationHealthListResponseSchema, IntegrationHealthSchema, LinkedInDeliveryOptionsSchema, type MediaAsset, type MediaAssetListData, MediaAssetListDataSchema, type MediaAssetListQuery, MediaAssetListQuerySchema, MediaAssetListResponseSchema, MediaAssetResponseSchema, MediaAssetSchema, type MediaAssetUploadCompleteInput, MediaAssetUploadCompleteInputSchema, type MediaAssetUploadInput, MediaAssetUploadInputSchema, type MediaAssetUploadPreparation, MediaAssetUploadPreparationResponseSchema, MediaAssetUploadPreparationSchema, PUBLISHING_PROVIDER_COUNT, PlatformPostStatusSchema, type Post, type PostDeliveryMode, PostDeliveryModeSchema, type PostDestination, PostDestinationSchema, type PostDestinationStage, PostDestinationStageSchema, type PostListData, PostListDataSchema, type PostListQuery, PostListQuerySchema, type PostListResponse, PostListResponseSchema, type PostMedia, PostMediaSchema, type PostProviderSettings, PostProviderSettingsSchema, type PostPublishExecuteInput, PostPublishExecuteInputSchema, type PostPublishInput, PostPublishInputSchema, type PostPublishPreview, PostPublishPreviewResponseSchema, PostPublishPreviewSchema, type PostReadiness, PostReadinessCheckSchema, PostReadinessResponseSchema, PostReadinessSchema, type PostResponse, PostResponseSchema, type PostScheduleExecuteInput, PostScheduleExecuteInputSchema, PostScheduleExecuteResponseSchema, type PostScheduleExecuteResult, PostScheduleExecuteResultSchema, type PostScheduleInput, PostScheduleInputSchema, type PostSchedulePending, PostSchedulePendingSchema, type PostSchedulePreview, PostSchedulePreviewResponseSchema, PostSchedulePreviewSchema, PostSchema, type PostStatus, PostStatusSchema, type Project, type ProjectCreateData, type ProjectCreateInput, ProjectCreateInputSchema, type ProjectListData, ProjectListDataSchema, type ProjectListQuery, ProjectListQuerySchema, type ProjectListResponse, ProjectListResponseSchema, type ProjectResponse, ProjectResponseSchema, ProjectSchema, type ProjectType, ProjectTypeSchema, type ProviderDeliveryOptions, type ProviderDeliveryOptionsProvider, ProviderDeliveryOptionsProviderSchema, ProviderDeliveryOptionsResponseSchema, ProviderDeliveryOptionsSchema, ProviderHealthStatusSchema, type PublishedBlogArticle, PublishedBlogArticleSchema, type PublishingProvider, PublishingProviderSchema, ReadinessActionSchema, ReadinessStatusSchema, RequestMetadataSchema, type SeoActionDecision, SeoActionDecisionSchema, type SeoActionPlan, SeoActionPlanSchema, type SeoAgentTask, SeoAgentTaskSchema, SeoConfidenceValueSchema, SeoContentTypeSchema, SeoCursorSchema, type SeoDecisionConfidence, SeoDecisionConfidenceSchema, SeoEntityIdSchema, type SeoEvidence, type SeoEvidenceProvenance, SeoEvidenceProvenanceSchema, SeoEvidenceSchema, type SeoExpectedImpact, SeoExpectedImpactSchema, type SeoOpportunity, type SeoOpportunityBrief, SeoOpportunityBriefSchema, type SeoOpportunityKind, SeoOpportunityKindSchema, type SeoOpportunityListData, SeoOpportunityListDataSchema, type SeoOpportunityListQuery, SeoOpportunityListQuerySchema, SeoOpportunityListResponseSchema, SeoOpportunityResponseSchema, SeoOpportunitySchema, type SeoReport, type SeoReportCompleteness, SeoReportCompletenessSchema, type SeoReportListData, SeoReportListDataSchema, type SeoReportListQuery, SeoReportListQuerySchema, SeoReportListResponseSchema, SeoReportResponseSchema, SeoReportSchema, type SeoReportSummary, SeoReportSummarySchema, SeoReportTriggerSchema, SeoSearchIntentSchema, type SeoTaskDecision, SeoTaskDecisionSchema, type SeoTaskFormat, SeoTaskFormatSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|