@rolino/contracts 0.2.0 → 0.3.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 +6 -0
- package/README.md +25 -22
- package/dist/index.cjs +37 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +142 -4
- package/dist/index.d.ts +142 -4
- package/dist/index.js +35 -6
- 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.14.0";
|
|
5
5
|
declare const RequestMetadataSchema: z.ZodObject<{
|
|
6
6
|
requestId: z.ZodString;
|
|
7
7
|
}, z.core.$strip>;
|
|
@@ -83,7 +83,7 @@ declare const ApiMetaSchema: z.ZodObject<{
|
|
|
83
83
|
name: z.ZodLiteral<"Rolino">;
|
|
84
84
|
serverVersion: z.ZodString;
|
|
85
85
|
apiVersion: z.ZodLiteral<"v1">;
|
|
86
|
-
contractVersion: z.ZodLiteral<"0.
|
|
86
|
+
contractVersion: z.ZodLiteral<"0.14.0">;
|
|
87
87
|
authentication: z.ZodObject<{
|
|
88
88
|
browserSession: z.ZodBoolean;
|
|
89
89
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -125,7 +125,7 @@ declare const ApiMetaResponseSchema: z.ZodObject<{
|
|
|
125
125
|
name: z.ZodLiteral<"Rolino">;
|
|
126
126
|
serverVersion: z.ZodString;
|
|
127
127
|
apiVersion: z.ZodLiteral<"v1">;
|
|
128
|
-
contractVersion: z.ZodLiteral<"0.
|
|
128
|
+
contractVersion: z.ZodLiteral<"0.14.0">;
|
|
129
129
|
authentication: z.ZodObject<{
|
|
130
130
|
browserSession: z.ZodBoolean;
|
|
131
131
|
cliBrowserAuthorization: z.ZodBoolean;
|
|
@@ -682,6 +682,7 @@ declare const PublishingProviderSchema: z.ZodEnum<{
|
|
|
682
682
|
TIKTOK: "TIKTOK";
|
|
683
683
|
YOUTUBE: "YOUTUBE";
|
|
684
684
|
BLUESKY: "BLUESKY";
|
|
685
|
+
LINKEDIN: "LINKEDIN";
|
|
685
686
|
}>;
|
|
686
687
|
type PublishingProvider = z.infer<typeof PublishingProviderSchema>;
|
|
687
688
|
declare const PUBLISHING_PROVIDER_COUNT: number;
|
|
@@ -691,6 +692,7 @@ declare const PostDestinationSchema: z.ZodObject<{
|
|
|
691
692
|
TIKTOK: "TIKTOK";
|
|
692
693
|
YOUTUBE: "YOUTUBE";
|
|
693
694
|
BLUESKY: "BLUESKY";
|
|
695
|
+
LINKEDIN: "LINKEDIN";
|
|
694
696
|
}>;
|
|
695
697
|
status: z.ZodEnum<{
|
|
696
698
|
DRAFT: "DRAFT";
|
|
@@ -861,6 +863,7 @@ declare const PostSchema: z.ZodObject<{
|
|
|
861
863
|
TIKTOK: "TIKTOK";
|
|
862
864
|
YOUTUBE: "YOUTUBE";
|
|
863
865
|
BLUESKY: "BLUESKY";
|
|
866
|
+
LINKEDIN: "LINKEDIN";
|
|
864
867
|
}>;
|
|
865
868
|
status: z.ZodEnum<{
|
|
866
869
|
DRAFT: "DRAFT";
|
|
@@ -971,6 +974,7 @@ declare const PostListDataSchema: z.ZodObject<{
|
|
|
971
974
|
TIKTOK: "TIKTOK";
|
|
972
975
|
YOUTUBE: "YOUTUBE";
|
|
973
976
|
BLUESKY: "BLUESKY";
|
|
977
|
+
LINKEDIN: "LINKEDIN";
|
|
974
978
|
}>;
|
|
975
979
|
status: z.ZodEnum<{
|
|
976
980
|
DRAFT: "DRAFT";
|
|
@@ -1073,6 +1077,7 @@ declare const PostListResponseSchema: z.ZodObject<{
|
|
|
1073
1077
|
TIKTOK: "TIKTOK";
|
|
1074
1078
|
YOUTUBE: "YOUTUBE";
|
|
1075
1079
|
BLUESKY: "BLUESKY";
|
|
1080
|
+
LINKEDIN: "LINKEDIN";
|
|
1076
1081
|
}>;
|
|
1077
1082
|
status: z.ZodEnum<{
|
|
1078
1083
|
DRAFT: "DRAFT";
|
|
@@ -1178,6 +1183,7 @@ declare const PostResponseSchema: z.ZodObject<{
|
|
|
1178
1183
|
TIKTOK: "TIKTOK";
|
|
1179
1184
|
YOUTUBE: "YOUTUBE";
|
|
1180
1185
|
BLUESKY: "BLUESKY";
|
|
1186
|
+
LINKEDIN: "LINKEDIN";
|
|
1181
1187
|
}>;
|
|
1182
1188
|
status: z.ZodEnum<{
|
|
1183
1189
|
DRAFT: "DRAFT";
|
|
@@ -1238,6 +1244,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
1238
1244
|
TIKTOK: "TIKTOK";
|
|
1239
1245
|
YOUTUBE: "YOUTUBE";
|
|
1240
1246
|
BLUESKY: "BLUESKY";
|
|
1247
|
+
LINKEDIN: "LINKEDIN";
|
|
1241
1248
|
}>>>;
|
|
1242
1249
|
mediaAssetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1243
1250
|
captionOverrides: z.ZodDefault<z.ZodObject<{
|
|
@@ -1245,6 +1252,7 @@ declare const DraftPostInputSchema: z.ZodObject<{
|
|
|
1245
1252
|
TIKTOK: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1246
1253
|
YOUTUBE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1247
1254
|
BLUESKY: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1255
|
+
LINKEDIN: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1248
1256
|
}, z.core.$strict>>;
|
|
1249
1257
|
tiktokSettings: z.ZodDefault<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
1250
1258
|
postMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1311,6 +1319,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
1311
1319
|
TIKTOK: "TIKTOK";
|
|
1312
1320
|
YOUTUBE: "YOUTUBE";
|
|
1313
1321
|
BLUESKY: "BLUESKY";
|
|
1322
|
+
LINKEDIN: "LINKEDIN";
|
|
1314
1323
|
}>>>;
|
|
1315
1324
|
mediaAssetIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1316
1325
|
captionOverrides: z.ZodOptional<z.ZodObject<{
|
|
@@ -1318,6 +1327,7 @@ declare const DraftPostUpdateInputSchema: z.ZodObject<{
|
|
|
1318
1327
|
TIKTOK: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1319
1328
|
YOUTUBE: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1320
1329
|
BLUESKY: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1330
|
+
LINKEDIN: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1321
1331
|
}, z.core.$strict>>;
|
|
1322
1332
|
tiktokSettings: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodObject<{
|
|
1323
1333
|
postMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1395,6 +1405,7 @@ declare const IntegrationHealthSchema: z.ZodObject<{
|
|
|
1395
1405
|
TIKTOK: "TIKTOK";
|
|
1396
1406
|
YOUTUBE: "YOUTUBE";
|
|
1397
1407
|
BLUESKY: "BLUESKY";
|
|
1408
|
+
LINKEDIN: "LINKEDIN";
|
|
1398
1409
|
}>;
|
|
1399
1410
|
connectionStatus: z.ZodEnum<{
|
|
1400
1411
|
PENDING: "PENDING";
|
|
@@ -1433,6 +1444,7 @@ declare const IntegrationHealthListDataSchema: z.ZodObject<{
|
|
|
1433
1444
|
TIKTOK: "TIKTOK";
|
|
1434
1445
|
YOUTUBE: "YOUTUBE";
|
|
1435
1446
|
BLUESKY: "BLUESKY";
|
|
1447
|
+
LINKEDIN: "LINKEDIN";
|
|
1436
1448
|
}>;
|
|
1437
1449
|
connectionStatus: z.ZodEnum<{
|
|
1438
1450
|
PENDING: "PENDING";
|
|
@@ -1473,6 +1485,7 @@ declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
|
1473
1485
|
TIKTOK: "TIKTOK";
|
|
1474
1486
|
YOUTUBE: "YOUTUBE";
|
|
1475
1487
|
BLUESKY: "BLUESKY";
|
|
1488
|
+
LINKEDIN: "LINKEDIN";
|
|
1476
1489
|
}>;
|
|
1477
1490
|
connectionStatus: z.ZodEnum<{
|
|
1478
1491
|
PENDING: "PENDING";
|
|
@@ -1508,6 +1521,11 @@ declare const IntegrationHealthListResponseSchema: z.ZodObject<{
|
|
|
1508
1521
|
requestId: z.ZodString;
|
|
1509
1522
|
}, z.core.$strip>;
|
|
1510
1523
|
}, z.core.$strip>;
|
|
1524
|
+
declare const ProviderDeliveryOptionsProviderSchema: z.ZodEnum<{
|
|
1525
|
+
TIKTOK: "TIKTOK";
|
|
1526
|
+
LINKEDIN: "LINKEDIN";
|
|
1527
|
+
}>;
|
|
1528
|
+
type ProviderDeliveryOptionsProvider = z.infer<typeof ProviderDeliveryOptionsProviderSchema>;
|
|
1511
1529
|
declare const TikTokDeliveryOptionsSchema: z.ZodObject<{
|
|
1512
1530
|
provider: z.ZodLiteral<"TIKTOK">;
|
|
1513
1531
|
account: z.ZodObject<{
|
|
@@ -1543,6 +1561,34 @@ declare const TikTokDeliveryOptionsSchema: z.ZodObject<{
|
|
|
1543
1561
|
}, z.core.$strip>;
|
|
1544
1562
|
checkedAt: z.ZodString;
|
|
1545
1563
|
}, z.core.$strip>;
|
|
1564
|
+
declare const LinkedInDeliveryOptionsSchema: z.ZodObject<{
|
|
1565
|
+
provider: z.ZodLiteral<"LINKEDIN">;
|
|
1566
|
+
account: z.ZodObject<{
|
|
1567
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
1568
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
1569
|
+
}, z.core.$strip>;
|
|
1570
|
+
supportedPostTypes: z.ZodArray<z.ZodEnum<{
|
|
1571
|
+
TEXT: "TEXT";
|
|
1572
|
+
SINGLE_IMAGE: "SINGLE_IMAGE";
|
|
1573
|
+
MULTI_IMAGE: "MULTI_IMAGE";
|
|
1574
|
+
}>>;
|
|
1575
|
+
image: z.ZodObject<{
|
|
1576
|
+
maxItems: z.ZodLiteral<10>;
|
|
1577
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">], null>;
|
|
1578
|
+
maxPixelsExclusive: z.ZodLiteral<36152320>;
|
|
1579
|
+
maxBytes: z.ZodLiteral<26214400>;
|
|
1580
|
+
}, z.core.$strip>;
|
|
1581
|
+
health: z.ZodObject<{
|
|
1582
|
+
status: z.ZodEnum<{
|
|
1583
|
+
unknown: "unknown";
|
|
1584
|
+
pass: "pass";
|
|
1585
|
+
blocking: "blocking";
|
|
1586
|
+
}>;
|
|
1587
|
+
code: z.ZodString;
|
|
1588
|
+
message: z.ZodString;
|
|
1589
|
+
}, z.core.$strip>;
|
|
1590
|
+
checkedAt: z.ZodString;
|
|
1591
|
+
}, z.core.$strip>;
|
|
1546
1592
|
declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1547
1593
|
provider: z.ZodLiteral<"TIKTOK">;
|
|
1548
1594
|
account: z.ZodObject<{
|
|
@@ -1577,6 +1623,33 @@ declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
1577
1623
|
message: z.ZodString;
|
|
1578
1624
|
}, z.core.$strip>;
|
|
1579
1625
|
checkedAt: z.ZodString;
|
|
1626
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1627
|
+
provider: z.ZodLiteral<"LINKEDIN">;
|
|
1628
|
+
account: z.ZodObject<{
|
|
1629
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
1630
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
1631
|
+
}, z.core.$strip>;
|
|
1632
|
+
supportedPostTypes: z.ZodArray<z.ZodEnum<{
|
|
1633
|
+
TEXT: "TEXT";
|
|
1634
|
+
SINGLE_IMAGE: "SINGLE_IMAGE";
|
|
1635
|
+
MULTI_IMAGE: "MULTI_IMAGE";
|
|
1636
|
+
}>>;
|
|
1637
|
+
image: z.ZodObject<{
|
|
1638
|
+
maxItems: z.ZodLiteral<10>;
|
|
1639
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">], null>;
|
|
1640
|
+
maxPixelsExclusive: z.ZodLiteral<36152320>;
|
|
1641
|
+
maxBytes: z.ZodLiteral<26214400>;
|
|
1642
|
+
}, z.core.$strip>;
|
|
1643
|
+
health: z.ZodObject<{
|
|
1644
|
+
status: z.ZodEnum<{
|
|
1645
|
+
unknown: "unknown";
|
|
1646
|
+
pass: "pass";
|
|
1647
|
+
blocking: "blocking";
|
|
1648
|
+
}>;
|
|
1649
|
+
code: z.ZodString;
|
|
1650
|
+
message: z.ZodString;
|
|
1651
|
+
}, z.core.$strip>;
|
|
1652
|
+
checkedAt: z.ZodString;
|
|
1580
1653
|
}, z.core.$strip>], "provider">;
|
|
1581
1654
|
type ProviderDeliveryOptions = z.infer<typeof ProviderDeliveryOptionsSchema>;
|
|
1582
1655
|
declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
@@ -1614,6 +1687,33 @@ declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
|
1614
1687
|
message: z.ZodString;
|
|
1615
1688
|
}, z.core.$strip>;
|
|
1616
1689
|
checkedAt: z.ZodString;
|
|
1690
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1691
|
+
provider: z.ZodLiteral<"LINKEDIN">;
|
|
1692
|
+
account: z.ZodObject<{
|
|
1693
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
1694
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
1695
|
+
}, z.core.$strip>;
|
|
1696
|
+
supportedPostTypes: z.ZodArray<z.ZodEnum<{
|
|
1697
|
+
TEXT: "TEXT";
|
|
1698
|
+
SINGLE_IMAGE: "SINGLE_IMAGE";
|
|
1699
|
+
MULTI_IMAGE: "MULTI_IMAGE";
|
|
1700
|
+
}>>;
|
|
1701
|
+
image: z.ZodObject<{
|
|
1702
|
+
maxItems: z.ZodLiteral<10>;
|
|
1703
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">], null>;
|
|
1704
|
+
maxPixelsExclusive: z.ZodLiteral<36152320>;
|
|
1705
|
+
maxBytes: z.ZodLiteral<26214400>;
|
|
1706
|
+
}, z.core.$strip>;
|
|
1707
|
+
health: z.ZodObject<{
|
|
1708
|
+
status: z.ZodEnum<{
|
|
1709
|
+
unknown: "unknown";
|
|
1710
|
+
pass: "pass";
|
|
1711
|
+
blocking: "blocking";
|
|
1712
|
+
}>;
|
|
1713
|
+
code: z.ZodString;
|
|
1714
|
+
message: z.ZodString;
|
|
1715
|
+
}, z.core.$strip>;
|
|
1716
|
+
checkedAt: z.ZodString;
|
|
1617
1717
|
}, z.core.$strip>], "provider">;
|
|
1618
1718
|
meta: z.ZodObject<{
|
|
1619
1719
|
requestId: z.ZodString;
|
|
@@ -1639,6 +1739,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
1639
1739
|
TIKTOK: "TIKTOK";
|
|
1640
1740
|
YOUTUBE: "YOUTUBE";
|
|
1641
1741
|
BLUESKY: "BLUESKY";
|
|
1742
|
+
LINKEDIN: "LINKEDIN";
|
|
1642
1743
|
}>>;
|
|
1643
1744
|
}, z.core.$strip>;
|
|
1644
1745
|
declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
@@ -1661,6 +1762,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
1661
1762
|
TIKTOK: "TIKTOK";
|
|
1662
1763
|
YOUTUBE: "YOUTUBE";
|
|
1663
1764
|
BLUESKY: "BLUESKY";
|
|
1765
|
+
LINKEDIN: "LINKEDIN";
|
|
1664
1766
|
}>>;
|
|
1665
1767
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
1666
1768
|
status: z.ZodEnum<{
|
|
@@ -1690,6 +1792,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
1690
1792
|
TIKTOK: "TIKTOK";
|
|
1691
1793
|
YOUTUBE: "YOUTUBE";
|
|
1692
1794
|
BLUESKY: "BLUESKY";
|
|
1795
|
+
LINKEDIN: "LINKEDIN";
|
|
1693
1796
|
}>>;
|
|
1694
1797
|
}, z.core.$strip>>;
|
|
1695
1798
|
}, z.core.$strip>;
|
|
@@ -1714,6 +1817,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1714
1817
|
TIKTOK: "TIKTOK";
|
|
1715
1818
|
YOUTUBE: "YOUTUBE";
|
|
1716
1819
|
BLUESKY: "BLUESKY";
|
|
1820
|
+
LINKEDIN: "LINKEDIN";
|
|
1717
1821
|
}>>;
|
|
1718
1822
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
1719
1823
|
status: z.ZodEnum<{
|
|
@@ -1743,6 +1847,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1743
1847
|
TIKTOK: "TIKTOK";
|
|
1744
1848
|
YOUTUBE: "YOUTUBE";
|
|
1745
1849
|
BLUESKY: "BLUESKY";
|
|
1850
|
+
LINKEDIN: "LINKEDIN";
|
|
1746
1851
|
}>>;
|
|
1747
1852
|
}, z.core.$strip>>;
|
|
1748
1853
|
}, z.core.$strip>>;
|
|
@@ -1752,6 +1857,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1752
1857
|
TIKTOK: "TIKTOK";
|
|
1753
1858
|
YOUTUBE: "YOUTUBE";
|
|
1754
1859
|
BLUESKY: "BLUESKY";
|
|
1860
|
+
LINKEDIN: "LINKEDIN";
|
|
1755
1861
|
}>;
|
|
1756
1862
|
connected: z.ZodBoolean;
|
|
1757
1863
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -1764,6 +1870,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1764
1870
|
TIKTOK: "TIKTOK";
|
|
1765
1871
|
YOUTUBE: "YOUTUBE";
|
|
1766
1872
|
BLUESKY: "BLUESKY";
|
|
1873
|
+
LINKEDIN: "LINKEDIN";
|
|
1767
1874
|
}>>;
|
|
1768
1875
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
1769
1876
|
}, z.core.$strip>;
|
|
@@ -1790,6 +1897,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1790
1897
|
TIKTOK: "TIKTOK";
|
|
1791
1898
|
YOUTUBE: "YOUTUBE";
|
|
1792
1899
|
BLUESKY: "BLUESKY";
|
|
1900
|
+
LINKEDIN: "LINKEDIN";
|
|
1793
1901
|
}>>;
|
|
1794
1902
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
1795
1903
|
status: z.ZodEnum<{
|
|
@@ -1819,6 +1927,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1819
1927
|
TIKTOK: "TIKTOK";
|
|
1820
1928
|
YOUTUBE: "YOUTUBE";
|
|
1821
1929
|
BLUESKY: "BLUESKY";
|
|
1930
|
+
LINKEDIN: "LINKEDIN";
|
|
1822
1931
|
}>>;
|
|
1823
1932
|
}, z.core.$strip>>;
|
|
1824
1933
|
}, z.core.$strip>>;
|
|
@@ -1828,6 +1937,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1828
1937
|
TIKTOK: "TIKTOK";
|
|
1829
1938
|
YOUTUBE: "YOUTUBE";
|
|
1830
1939
|
BLUESKY: "BLUESKY";
|
|
1940
|
+
LINKEDIN: "LINKEDIN";
|
|
1831
1941
|
}>;
|
|
1832
1942
|
connected: z.ZodBoolean;
|
|
1833
1943
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -1840,6 +1950,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1840
1950
|
TIKTOK: "TIKTOK";
|
|
1841
1951
|
YOUTUBE: "YOUTUBE";
|
|
1842
1952
|
BLUESKY: "BLUESKY";
|
|
1953
|
+
LINKEDIN: "LINKEDIN";
|
|
1843
1954
|
}>>;
|
|
1844
1955
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
1845
1956
|
}, z.core.$strip>;
|
|
@@ -1883,6 +1994,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1883
1994
|
TIKTOK: "TIKTOK";
|
|
1884
1995
|
YOUTUBE: "YOUTUBE";
|
|
1885
1996
|
BLUESKY: "BLUESKY";
|
|
1997
|
+
LINKEDIN: "LINKEDIN";
|
|
1886
1998
|
}>>;
|
|
1887
1999
|
providerReconciliation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1888
2000
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -1910,6 +2022,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1910
2022
|
TIKTOK: "TIKTOK";
|
|
1911
2023
|
YOUTUBE: "YOUTUBE";
|
|
1912
2024
|
BLUESKY: "BLUESKY";
|
|
2025
|
+
LINKEDIN: "LINKEDIN";
|
|
1913
2026
|
}>>;
|
|
1914
2027
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
1915
2028
|
status: z.ZodEnum<{
|
|
@@ -1939,6 +2052,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1939
2052
|
TIKTOK: "TIKTOK";
|
|
1940
2053
|
YOUTUBE: "YOUTUBE";
|
|
1941
2054
|
BLUESKY: "BLUESKY";
|
|
2055
|
+
LINKEDIN: "LINKEDIN";
|
|
1942
2056
|
}>>;
|
|
1943
2057
|
}, z.core.$strip>>;
|
|
1944
2058
|
}, z.core.$strip>>;
|
|
@@ -1948,6 +2062,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1948
2062
|
TIKTOK: "TIKTOK";
|
|
1949
2063
|
YOUTUBE: "YOUTUBE";
|
|
1950
2064
|
BLUESKY: "BLUESKY";
|
|
2065
|
+
LINKEDIN: "LINKEDIN";
|
|
1951
2066
|
}>;
|
|
1952
2067
|
connected: z.ZodBoolean;
|
|
1953
2068
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -1960,6 +2075,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1960
2075
|
TIKTOK: "TIKTOK";
|
|
1961
2076
|
YOUTUBE: "YOUTUBE";
|
|
1962
2077
|
BLUESKY: "BLUESKY";
|
|
2078
|
+
LINKEDIN: "LINKEDIN";
|
|
1963
2079
|
}>>;
|
|
1964
2080
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
1965
2081
|
}, z.core.$strip>;
|
|
@@ -1995,6 +2111,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
1995
2111
|
TIKTOK: "TIKTOK";
|
|
1996
2112
|
YOUTUBE: "YOUTUBE";
|
|
1997
2113
|
BLUESKY: "BLUESKY";
|
|
2114
|
+
LINKEDIN: "LINKEDIN";
|
|
1998
2115
|
}>>;
|
|
1999
2116
|
providerReconciliation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2000
2117
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -2022,6 +2139,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2022
2139
|
TIKTOK: "TIKTOK";
|
|
2023
2140
|
YOUTUBE: "YOUTUBE";
|
|
2024
2141
|
BLUESKY: "BLUESKY";
|
|
2142
|
+
LINKEDIN: "LINKEDIN";
|
|
2025
2143
|
}>>;
|
|
2026
2144
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2027
2145
|
status: z.ZodEnum<{
|
|
@@ -2051,6 +2169,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2051
2169
|
TIKTOK: "TIKTOK";
|
|
2052
2170
|
YOUTUBE: "YOUTUBE";
|
|
2053
2171
|
BLUESKY: "BLUESKY";
|
|
2172
|
+
LINKEDIN: "LINKEDIN";
|
|
2054
2173
|
}>>;
|
|
2055
2174
|
}, z.core.$strip>>;
|
|
2056
2175
|
}, z.core.$strip>>;
|
|
@@ -2060,6 +2179,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2060
2179
|
TIKTOK: "TIKTOK";
|
|
2061
2180
|
YOUTUBE: "YOUTUBE";
|
|
2062
2181
|
BLUESKY: "BLUESKY";
|
|
2182
|
+
LINKEDIN: "LINKEDIN";
|
|
2063
2183
|
}>;
|
|
2064
2184
|
connected: z.ZodBoolean;
|
|
2065
2185
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -2072,6 +2192,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2072
2192
|
TIKTOK: "TIKTOK";
|
|
2073
2193
|
YOUTUBE: "YOUTUBE";
|
|
2074
2194
|
BLUESKY: "BLUESKY";
|
|
2195
|
+
LINKEDIN: "LINKEDIN";
|
|
2075
2196
|
}>>;
|
|
2076
2197
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
2077
2198
|
}, z.core.$strip>;
|
|
@@ -2142,6 +2263,7 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
2142
2263
|
TIKTOK: "TIKTOK";
|
|
2143
2264
|
YOUTUBE: "YOUTUBE";
|
|
2144
2265
|
BLUESKY: "BLUESKY";
|
|
2266
|
+
LINKEDIN: "LINKEDIN";
|
|
2145
2267
|
}>;
|
|
2146
2268
|
status: z.ZodEnum<{
|
|
2147
2269
|
DRAFT: "DRAFT";
|
|
@@ -2248,6 +2370,7 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
2248
2370
|
TIKTOK: "TIKTOK";
|
|
2249
2371
|
YOUTUBE: "YOUTUBE";
|
|
2250
2372
|
BLUESKY: "BLUESKY";
|
|
2373
|
+
LINKEDIN: "LINKEDIN";
|
|
2251
2374
|
}>;
|
|
2252
2375
|
status: z.ZodEnum<{
|
|
2253
2376
|
DRAFT: "DRAFT";
|
|
@@ -2316,6 +2439,7 @@ declare const PostPublishInputSchema: z.ZodObject<{
|
|
|
2316
2439
|
TIKTOK: "TIKTOK";
|
|
2317
2440
|
YOUTUBE: "YOUTUBE";
|
|
2318
2441
|
BLUESKY: "BLUESKY";
|
|
2442
|
+
LINKEDIN: "LINKEDIN";
|
|
2319
2443
|
}>>;
|
|
2320
2444
|
}, z.core.$strict>;
|
|
2321
2445
|
type PostPublishInput = z.infer<typeof PostPublishInputSchema>;
|
|
@@ -2325,6 +2449,7 @@ declare const PostPublishExecuteInputSchema: z.ZodObject<{
|
|
|
2325
2449
|
TIKTOK: "TIKTOK";
|
|
2326
2450
|
YOUTUBE: "YOUTUBE";
|
|
2327
2451
|
BLUESKY: "BLUESKY";
|
|
2452
|
+
LINKEDIN: "LINKEDIN";
|
|
2328
2453
|
}>>;
|
|
2329
2454
|
confirmationToken: z.ZodString;
|
|
2330
2455
|
}, z.core.$strict>;
|
|
@@ -2350,6 +2475,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2350
2475
|
TIKTOK: "TIKTOK";
|
|
2351
2476
|
YOUTUBE: "YOUTUBE";
|
|
2352
2477
|
BLUESKY: "BLUESKY";
|
|
2478
|
+
LINKEDIN: "LINKEDIN";
|
|
2353
2479
|
}>>;
|
|
2354
2480
|
readiness: z.ZodObject<{
|
|
2355
2481
|
checks: z.ZodArray<z.ZodObject<{
|
|
@@ -2372,6 +2498,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2372
2498
|
TIKTOK: "TIKTOK";
|
|
2373
2499
|
YOUTUBE: "YOUTUBE";
|
|
2374
2500
|
BLUESKY: "BLUESKY";
|
|
2501
|
+
LINKEDIN: "LINKEDIN";
|
|
2375
2502
|
}>>;
|
|
2376
2503
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2377
2504
|
status: z.ZodEnum<{
|
|
@@ -2401,6 +2528,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2401
2528
|
TIKTOK: "TIKTOK";
|
|
2402
2529
|
YOUTUBE: "YOUTUBE";
|
|
2403
2530
|
BLUESKY: "BLUESKY";
|
|
2531
|
+
LINKEDIN: "LINKEDIN";
|
|
2404
2532
|
}>>;
|
|
2405
2533
|
}, z.core.$strip>>;
|
|
2406
2534
|
}, z.core.$strip>>;
|
|
@@ -2410,6 +2538,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2410
2538
|
TIKTOK: "TIKTOK";
|
|
2411
2539
|
YOUTUBE: "YOUTUBE";
|
|
2412
2540
|
BLUESKY: "BLUESKY";
|
|
2541
|
+
LINKEDIN: "LINKEDIN";
|
|
2413
2542
|
}>;
|
|
2414
2543
|
connected: z.ZodBoolean;
|
|
2415
2544
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -2422,6 +2551,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2422
2551
|
TIKTOK: "TIKTOK";
|
|
2423
2552
|
YOUTUBE: "YOUTUBE";
|
|
2424
2553
|
BLUESKY: "BLUESKY";
|
|
2554
|
+
LINKEDIN: "LINKEDIN";
|
|
2425
2555
|
}>>;
|
|
2426
2556
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
2427
2557
|
}, z.core.$strip>;
|
|
@@ -2453,6 +2583,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2453
2583
|
TIKTOK: "TIKTOK";
|
|
2454
2584
|
YOUTUBE: "YOUTUBE";
|
|
2455
2585
|
BLUESKY: "BLUESKY";
|
|
2586
|
+
LINKEDIN: "LINKEDIN";
|
|
2456
2587
|
}>>;
|
|
2457
2588
|
readiness: z.ZodObject<{
|
|
2458
2589
|
checks: z.ZodArray<z.ZodObject<{
|
|
@@ -2475,6 +2606,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2475
2606
|
TIKTOK: "TIKTOK";
|
|
2476
2607
|
YOUTUBE: "YOUTUBE";
|
|
2477
2608
|
BLUESKY: "BLUESKY";
|
|
2609
|
+
LINKEDIN: "LINKEDIN";
|
|
2478
2610
|
}>>;
|
|
2479
2611
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2480
2612
|
status: z.ZodEnum<{
|
|
@@ -2504,6 +2636,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2504
2636
|
TIKTOK: "TIKTOK";
|
|
2505
2637
|
YOUTUBE: "YOUTUBE";
|
|
2506
2638
|
BLUESKY: "BLUESKY";
|
|
2639
|
+
LINKEDIN: "LINKEDIN";
|
|
2507
2640
|
}>>;
|
|
2508
2641
|
}, z.core.$strip>>;
|
|
2509
2642
|
}, z.core.$strip>>;
|
|
@@ -2513,6 +2646,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2513
2646
|
TIKTOK: "TIKTOK";
|
|
2514
2647
|
YOUTUBE: "YOUTUBE";
|
|
2515
2648
|
BLUESKY: "BLUESKY";
|
|
2649
|
+
LINKEDIN: "LINKEDIN";
|
|
2516
2650
|
}>;
|
|
2517
2651
|
connected: z.ZodBoolean;
|
|
2518
2652
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -2525,6 +2659,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2525
2659
|
TIKTOK: "TIKTOK";
|
|
2526
2660
|
YOUTUBE: "YOUTUBE";
|
|
2527
2661
|
BLUESKY: "BLUESKY";
|
|
2662
|
+
LINKEDIN: "LINKEDIN";
|
|
2528
2663
|
}>>;
|
|
2529
2664
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
2530
2665
|
}, z.core.$strip>;
|
|
@@ -2563,6 +2698,7 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
2563
2698
|
TIKTOK: "TIKTOK";
|
|
2564
2699
|
YOUTUBE: "YOUTUBE";
|
|
2565
2700
|
BLUESKY: "BLUESKY";
|
|
2701
|
+
LINKEDIN: "LINKEDIN";
|
|
2566
2702
|
}>;
|
|
2567
2703
|
status: z.ZodEnum<{
|
|
2568
2704
|
DRAFT: "DRAFT";
|
|
@@ -2610,6 +2746,7 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
2610
2746
|
TIKTOK: "TIKTOK";
|
|
2611
2747
|
YOUTUBE: "YOUTUBE";
|
|
2612
2748
|
BLUESKY: "BLUESKY";
|
|
2749
|
+
LINKEDIN: "LINKEDIN";
|
|
2613
2750
|
}>;
|
|
2614
2751
|
status: z.ZodEnum<{
|
|
2615
2752
|
DRAFT: "DRAFT";
|
|
@@ -2660,6 +2797,7 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
2660
2797
|
TIKTOK: "TIKTOK";
|
|
2661
2798
|
YOUTUBE: "YOUTUBE";
|
|
2662
2799
|
BLUESKY: "BLUESKY";
|
|
2800
|
+
LINKEDIN: "LINKEDIN";
|
|
2663
2801
|
}>;
|
|
2664
2802
|
status: z.ZodEnum<{
|
|
2665
2803
|
DRAFT: "DRAFT";
|
|
@@ -2686,4 +2824,4 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
2686
2824
|
}, z.core.$strip>;
|
|
2687
2825
|
}, z.core.$strip>;
|
|
2688
2826
|
|
|
2689
|
-
export { API_VERSION, type Actor, ActorSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, CLI_BROWSER_AUTHORIZATION_TIMEOUT_MS, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, type CliAuthorizationCredential, CliAuthorizationCredentialSchema, type CliAuthorizationExchangeRequest, CliAuthorizationExchangeRequestSchema, type CliAuthorizationExchangeResponse, CliAuthorizationExchangeResponseSchema, CliAuthorizationRevokeDataSchema, type CliAuthorizationRevokeResponse, CliAuthorizationRevokeResponseSchema, type DraftPostData, type DraftPostInput, DraftPostInputSchema, type DraftPostUpdateData, type DraftPostUpdateInput, DraftPostUpdateInputSchema, IntegrationConnectionStatusSchema, type IntegrationHealth, type IntegrationHealthListData, IntegrationHealthListDataSchema, IntegrationHealthListResponseSchema, IntegrationHealthSchema, 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 PostDestination, PostDestinationSchema, 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, ProviderDeliveryOptionsResponseSchema, ProviderDeliveryOptionsSchema, ProviderHealthStatusSchema, type PublishingProvider, PublishingProviderSchema, ReadinessActionSchema, ReadinessStatusSchema, RequestMetadataSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|
|
2827
|
+
export { API_VERSION, type Actor, ActorSchema, type ApiErrorCode, ApiErrorCodeSchema, type ApiMeta, type ApiMetaResponse, ApiMetaResponseSchema, ApiMetaSchema, type ApiProblem, ApiProblemSchema, type AuthenticationKind, AuthenticationKindSchema, CLI_BROWSER_AUTHORIZATION_TIMEOUT_MS, CONTRACT_VERSION, type CalendarEvent, CalendarEventSchema, type CalendarListData, CalendarListDataSchema, type CalendarListQuery, CalendarListQuerySchema, CalendarListResponseSchema, CapabilitiesDataSchema, type CapabilitiesResponse, CapabilitiesResponseSchema, type Capability, type CapabilityId, CapabilityIdSchema, CapabilitySchema, type CliAuthorizationCredential, CliAuthorizationCredentialSchema, type CliAuthorizationExchangeRequest, CliAuthorizationExchangeRequestSchema, type CliAuthorizationExchangeResponse, CliAuthorizationExchangeResponseSchema, CliAuthorizationRevokeDataSchema, type CliAuthorizationRevokeResponse, CliAuthorizationRevokeResponseSchema, 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 PostDestination, PostDestinationSchema, 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 PublishingProvider, PublishingProviderSchema, ReadinessActionSchema, ReadinessStatusSchema, RequestMetadataSchema, TikTokDeliveryOptionsSchema, type TikTokDraftSettings, type TikTokDraftSettingsInput, TikTokDraftSettingsSchema, type TikTokPostSettings, TikTokPostSettingsSchema, type WhoAmIResponse, WhoAmIResponseSchema, type YouTubePostSettings, YouTubePostSettingsSchema, successEnvelopeSchema };
|