@rolino/contracts 0.2.0 → 0.4.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 +13 -0
- package/README.md +26 -22
- package/dist/index.cjs +48 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +185 -4
- package/dist/index.d.ts +185 -4
- package/dist/index.js +46 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
|
|
3
3
|
declare const API_VERSION: "v1";
|
|
4
|
-
declare const CONTRACT_VERSION: "0.
|
|
4
|
+
declare const CONTRACT_VERSION: "0.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,43 @@ 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
|
+
VIDEO: "VIDEO";
|
|
1572
|
+
TEXT: "TEXT";
|
|
1573
|
+
SINGLE_IMAGE: "SINGLE_IMAGE";
|
|
1574
|
+
MULTI_IMAGE: "MULTI_IMAGE";
|
|
1575
|
+
}>>;
|
|
1576
|
+
image: z.ZodObject<{
|
|
1577
|
+
maxItems: z.ZodLiteral<10>;
|
|
1578
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">], null>;
|
|
1579
|
+
maxPixelsExclusive: z.ZodLiteral<36152320>;
|
|
1580
|
+
maxBytes: z.ZodLiteral<26214400>;
|
|
1581
|
+
}, z.core.$strip>;
|
|
1582
|
+
video: z.ZodObject<{
|
|
1583
|
+
maxItems: z.ZodLiteral<1>;
|
|
1584
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"video/mp4">], null>;
|
|
1585
|
+
minBytes: z.ZodLiteral<76800>;
|
|
1586
|
+
maxBytes: z.ZodLiteral<524288000>;
|
|
1587
|
+
minDurationMs: z.ZodLiteral<3000>;
|
|
1588
|
+
maxDurationMs: z.ZodLiteral<1800000>;
|
|
1589
|
+
}, z.core.$strip>;
|
|
1590
|
+
health: z.ZodObject<{
|
|
1591
|
+
status: z.ZodEnum<{
|
|
1592
|
+
unknown: "unknown";
|
|
1593
|
+
pass: "pass";
|
|
1594
|
+
blocking: "blocking";
|
|
1595
|
+
}>;
|
|
1596
|
+
code: z.ZodString;
|
|
1597
|
+
message: z.ZodString;
|
|
1598
|
+
}, z.core.$strip>;
|
|
1599
|
+
checkedAt: z.ZodString;
|
|
1600
|
+
}, z.core.$strip>;
|
|
1546
1601
|
declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1547
1602
|
provider: z.ZodLiteral<"TIKTOK">;
|
|
1548
1603
|
account: z.ZodObject<{
|
|
@@ -1577,6 +1632,42 @@ declare const ProviderDeliveryOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
1577
1632
|
message: z.ZodString;
|
|
1578
1633
|
}, z.core.$strip>;
|
|
1579
1634
|
checkedAt: z.ZodString;
|
|
1635
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1636
|
+
provider: z.ZodLiteral<"LINKEDIN">;
|
|
1637
|
+
account: z.ZodObject<{
|
|
1638
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
1639
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
1640
|
+
}, z.core.$strip>;
|
|
1641
|
+
supportedPostTypes: z.ZodArray<z.ZodEnum<{
|
|
1642
|
+
VIDEO: "VIDEO";
|
|
1643
|
+
TEXT: "TEXT";
|
|
1644
|
+
SINGLE_IMAGE: "SINGLE_IMAGE";
|
|
1645
|
+
MULTI_IMAGE: "MULTI_IMAGE";
|
|
1646
|
+
}>>;
|
|
1647
|
+
image: z.ZodObject<{
|
|
1648
|
+
maxItems: z.ZodLiteral<10>;
|
|
1649
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">], null>;
|
|
1650
|
+
maxPixelsExclusive: z.ZodLiteral<36152320>;
|
|
1651
|
+
maxBytes: z.ZodLiteral<26214400>;
|
|
1652
|
+
}, z.core.$strip>;
|
|
1653
|
+
video: z.ZodObject<{
|
|
1654
|
+
maxItems: z.ZodLiteral<1>;
|
|
1655
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"video/mp4">], null>;
|
|
1656
|
+
minBytes: z.ZodLiteral<76800>;
|
|
1657
|
+
maxBytes: z.ZodLiteral<524288000>;
|
|
1658
|
+
minDurationMs: z.ZodLiteral<3000>;
|
|
1659
|
+
maxDurationMs: z.ZodLiteral<1800000>;
|
|
1660
|
+
}, z.core.$strip>;
|
|
1661
|
+
health: z.ZodObject<{
|
|
1662
|
+
status: z.ZodEnum<{
|
|
1663
|
+
unknown: "unknown";
|
|
1664
|
+
pass: "pass";
|
|
1665
|
+
blocking: "blocking";
|
|
1666
|
+
}>;
|
|
1667
|
+
code: z.ZodString;
|
|
1668
|
+
message: z.ZodString;
|
|
1669
|
+
}, z.core.$strip>;
|
|
1670
|
+
checkedAt: z.ZodString;
|
|
1580
1671
|
}, z.core.$strip>], "provider">;
|
|
1581
1672
|
type ProviderDeliveryOptions = z.infer<typeof ProviderDeliveryOptionsSchema>;
|
|
1582
1673
|
declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
@@ -1614,6 +1705,42 @@ declare const ProviderDeliveryOptionsResponseSchema: z.ZodObject<{
|
|
|
1614
1705
|
message: z.ZodString;
|
|
1615
1706
|
}, z.core.$strip>;
|
|
1616
1707
|
checkedAt: z.ZodString;
|
|
1708
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1709
|
+
provider: z.ZodLiteral<"LINKEDIN">;
|
|
1710
|
+
account: z.ZodObject<{
|
|
1711
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
1712
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
1713
|
+
}, z.core.$strip>;
|
|
1714
|
+
supportedPostTypes: z.ZodArray<z.ZodEnum<{
|
|
1715
|
+
VIDEO: "VIDEO";
|
|
1716
|
+
TEXT: "TEXT";
|
|
1717
|
+
SINGLE_IMAGE: "SINGLE_IMAGE";
|
|
1718
|
+
MULTI_IMAGE: "MULTI_IMAGE";
|
|
1719
|
+
}>>;
|
|
1720
|
+
image: z.ZodObject<{
|
|
1721
|
+
maxItems: z.ZodLiteral<10>;
|
|
1722
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/png">], null>;
|
|
1723
|
+
maxPixelsExclusive: z.ZodLiteral<36152320>;
|
|
1724
|
+
maxBytes: z.ZodLiteral<26214400>;
|
|
1725
|
+
}, z.core.$strip>;
|
|
1726
|
+
video: z.ZodObject<{
|
|
1727
|
+
maxItems: z.ZodLiteral<1>;
|
|
1728
|
+
mimeTypes: z.ZodTuple<[z.ZodLiteral<"video/mp4">], null>;
|
|
1729
|
+
minBytes: z.ZodLiteral<76800>;
|
|
1730
|
+
maxBytes: z.ZodLiteral<524288000>;
|
|
1731
|
+
minDurationMs: z.ZodLiteral<3000>;
|
|
1732
|
+
maxDurationMs: z.ZodLiteral<1800000>;
|
|
1733
|
+
}, z.core.$strip>;
|
|
1734
|
+
health: z.ZodObject<{
|
|
1735
|
+
status: z.ZodEnum<{
|
|
1736
|
+
unknown: "unknown";
|
|
1737
|
+
pass: "pass";
|
|
1738
|
+
blocking: "blocking";
|
|
1739
|
+
}>;
|
|
1740
|
+
code: z.ZodString;
|
|
1741
|
+
message: z.ZodString;
|
|
1742
|
+
}, z.core.$strip>;
|
|
1743
|
+
checkedAt: z.ZodString;
|
|
1617
1744
|
}, z.core.$strip>], "provider">;
|
|
1618
1745
|
meta: z.ZodObject<{
|
|
1619
1746
|
requestId: z.ZodString;
|
|
@@ -1630,6 +1757,7 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
1630
1757
|
kind: z.ZodEnum<{
|
|
1631
1758
|
reconnect: "reconnect";
|
|
1632
1759
|
replace_media: "replace_media";
|
|
1760
|
+
adjust_media: "adjust_media";
|
|
1633
1761
|
review_settings: "review_settings";
|
|
1634
1762
|
edit_caption: "edit_caption";
|
|
1635
1763
|
refresh_health: "refresh_health";
|
|
@@ -1639,7 +1767,9 @@ declare const ReadinessActionSchema: z.ZodObject<{
|
|
|
1639
1767
|
TIKTOK: "TIKTOK";
|
|
1640
1768
|
YOUTUBE: "YOUTUBE";
|
|
1641
1769
|
BLUESKY: "BLUESKY";
|
|
1770
|
+
LINKEDIN: "LINKEDIN";
|
|
1642
1771
|
}>>;
|
|
1772
|
+
mediaId: z.ZodOptional<z.ZodString>;
|
|
1643
1773
|
}, z.core.$strip>;
|
|
1644
1774
|
declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
1645
1775
|
key: z.ZodString;
|
|
@@ -1661,6 +1791,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
1661
1791
|
TIKTOK: "TIKTOK";
|
|
1662
1792
|
YOUTUBE: "YOUTUBE";
|
|
1663
1793
|
BLUESKY: "BLUESKY";
|
|
1794
|
+
LINKEDIN: "LINKEDIN";
|
|
1664
1795
|
}>>;
|
|
1665
1796
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
1666
1797
|
status: z.ZodEnum<{
|
|
@@ -1681,6 +1812,7 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
1681
1812
|
kind: z.ZodEnum<{
|
|
1682
1813
|
reconnect: "reconnect";
|
|
1683
1814
|
replace_media: "replace_media";
|
|
1815
|
+
adjust_media: "adjust_media";
|
|
1684
1816
|
review_settings: "review_settings";
|
|
1685
1817
|
edit_caption: "edit_caption";
|
|
1686
1818
|
refresh_health: "refresh_health";
|
|
@@ -1690,7 +1822,9 @@ declare const PostReadinessCheckSchema: z.ZodObject<{
|
|
|
1690
1822
|
TIKTOK: "TIKTOK";
|
|
1691
1823
|
YOUTUBE: "YOUTUBE";
|
|
1692
1824
|
BLUESKY: "BLUESKY";
|
|
1825
|
+
LINKEDIN: "LINKEDIN";
|
|
1693
1826
|
}>>;
|
|
1827
|
+
mediaId: z.ZodOptional<z.ZodString>;
|
|
1694
1828
|
}, z.core.$strip>>;
|
|
1695
1829
|
}, z.core.$strip>;
|
|
1696
1830
|
declare const PostReadinessSchema: z.ZodObject<{
|
|
@@ -1714,6 +1848,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1714
1848
|
TIKTOK: "TIKTOK";
|
|
1715
1849
|
YOUTUBE: "YOUTUBE";
|
|
1716
1850
|
BLUESKY: "BLUESKY";
|
|
1851
|
+
LINKEDIN: "LINKEDIN";
|
|
1717
1852
|
}>>;
|
|
1718
1853
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
1719
1854
|
status: z.ZodEnum<{
|
|
@@ -1734,6 +1869,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1734
1869
|
kind: z.ZodEnum<{
|
|
1735
1870
|
reconnect: "reconnect";
|
|
1736
1871
|
replace_media: "replace_media";
|
|
1872
|
+
adjust_media: "adjust_media";
|
|
1737
1873
|
review_settings: "review_settings";
|
|
1738
1874
|
edit_caption: "edit_caption";
|
|
1739
1875
|
refresh_health: "refresh_health";
|
|
@@ -1743,7 +1879,9 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1743
1879
|
TIKTOK: "TIKTOK";
|
|
1744
1880
|
YOUTUBE: "YOUTUBE";
|
|
1745
1881
|
BLUESKY: "BLUESKY";
|
|
1882
|
+
LINKEDIN: "LINKEDIN";
|
|
1746
1883
|
}>>;
|
|
1884
|
+
mediaId: z.ZodOptional<z.ZodString>;
|
|
1747
1885
|
}, z.core.$strip>>;
|
|
1748
1886
|
}, z.core.$strip>>;
|
|
1749
1887
|
accounts: z.ZodArray<z.ZodObject<{
|
|
@@ -1752,6 +1890,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1752
1890
|
TIKTOK: "TIKTOK";
|
|
1753
1891
|
YOUTUBE: "YOUTUBE";
|
|
1754
1892
|
BLUESKY: "BLUESKY";
|
|
1893
|
+
LINKEDIN: "LINKEDIN";
|
|
1755
1894
|
}>;
|
|
1756
1895
|
connected: z.ZodBoolean;
|
|
1757
1896
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -1764,6 +1903,7 @@ declare const PostReadinessSchema: z.ZodObject<{
|
|
|
1764
1903
|
TIKTOK: "TIKTOK";
|
|
1765
1904
|
YOUTUBE: "YOUTUBE";
|
|
1766
1905
|
BLUESKY: "BLUESKY";
|
|
1906
|
+
LINKEDIN: "LINKEDIN";
|
|
1767
1907
|
}>>;
|
|
1768
1908
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
1769
1909
|
}, z.core.$strip>;
|
|
@@ -1790,6 +1930,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1790
1930
|
TIKTOK: "TIKTOK";
|
|
1791
1931
|
YOUTUBE: "YOUTUBE";
|
|
1792
1932
|
BLUESKY: "BLUESKY";
|
|
1933
|
+
LINKEDIN: "LINKEDIN";
|
|
1793
1934
|
}>>;
|
|
1794
1935
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
1795
1936
|
status: z.ZodEnum<{
|
|
@@ -1810,6 +1951,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1810
1951
|
kind: z.ZodEnum<{
|
|
1811
1952
|
reconnect: "reconnect";
|
|
1812
1953
|
replace_media: "replace_media";
|
|
1954
|
+
adjust_media: "adjust_media";
|
|
1813
1955
|
review_settings: "review_settings";
|
|
1814
1956
|
edit_caption: "edit_caption";
|
|
1815
1957
|
refresh_health: "refresh_health";
|
|
@@ -1819,7 +1961,9 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1819
1961
|
TIKTOK: "TIKTOK";
|
|
1820
1962
|
YOUTUBE: "YOUTUBE";
|
|
1821
1963
|
BLUESKY: "BLUESKY";
|
|
1964
|
+
LINKEDIN: "LINKEDIN";
|
|
1822
1965
|
}>>;
|
|
1966
|
+
mediaId: z.ZodOptional<z.ZodString>;
|
|
1823
1967
|
}, z.core.$strip>>;
|
|
1824
1968
|
}, z.core.$strip>>;
|
|
1825
1969
|
accounts: z.ZodArray<z.ZodObject<{
|
|
@@ -1828,6 +1972,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1828
1972
|
TIKTOK: "TIKTOK";
|
|
1829
1973
|
YOUTUBE: "YOUTUBE";
|
|
1830
1974
|
BLUESKY: "BLUESKY";
|
|
1975
|
+
LINKEDIN: "LINKEDIN";
|
|
1831
1976
|
}>;
|
|
1832
1977
|
connected: z.ZodBoolean;
|
|
1833
1978
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -1840,6 +1985,7 @@ declare const PostReadinessResponseSchema: z.ZodObject<{
|
|
|
1840
1985
|
TIKTOK: "TIKTOK";
|
|
1841
1986
|
YOUTUBE: "YOUTUBE";
|
|
1842
1987
|
BLUESKY: "BLUESKY";
|
|
1988
|
+
LINKEDIN: "LINKEDIN";
|
|
1843
1989
|
}>>;
|
|
1844
1990
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
1845
1991
|
}, z.core.$strip>;
|
|
@@ -1883,6 +2029,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1883
2029
|
TIKTOK: "TIKTOK";
|
|
1884
2030
|
YOUTUBE: "YOUTUBE";
|
|
1885
2031
|
BLUESKY: "BLUESKY";
|
|
2032
|
+
LINKEDIN: "LINKEDIN";
|
|
1886
2033
|
}>>;
|
|
1887
2034
|
providerReconciliation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1888
2035
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -1910,6 +2057,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1910
2057
|
TIKTOK: "TIKTOK";
|
|
1911
2058
|
YOUTUBE: "YOUTUBE";
|
|
1912
2059
|
BLUESKY: "BLUESKY";
|
|
2060
|
+
LINKEDIN: "LINKEDIN";
|
|
1913
2061
|
}>>;
|
|
1914
2062
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
1915
2063
|
status: z.ZodEnum<{
|
|
@@ -1930,6 +2078,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1930
2078
|
kind: z.ZodEnum<{
|
|
1931
2079
|
reconnect: "reconnect";
|
|
1932
2080
|
replace_media: "replace_media";
|
|
2081
|
+
adjust_media: "adjust_media";
|
|
1933
2082
|
review_settings: "review_settings";
|
|
1934
2083
|
edit_caption: "edit_caption";
|
|
1935
2084
|
refresh_health: "refresh_health";
|
|
@@ -1939,7 +2088,9 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1939
2088
|
TIKTOK: "TIKTOK";
|
|
1940
2089
|
YOUTUBE: "YOUTUBE";
|
|
1941
2090
|
BLUESKY: "BLUESKY";
|
|
2091
|
+
LINKEDIN: "LINKEDIN";
|
|
1942
2092
|
}>>;
|
|
2093
|
+
mediaId: z.ZodOptional<z.ZodString>;
|
|
1943
2094
|
}, z.core.$strip>>;
|
|
1944
2095
|
}, z.core.$strip>>;
|
|
1945
2096
|
accounts: z.ZodArray<z.ZodObject<{
|
|
@@ -1948,6 +2099,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1948
2099
|
TIKTOK: "TIKTOK";
|
|
1949
2100
|
YOUTUBE: "YOUTUBE";
|
|
1950
2101
|
BLUESKY: "BLUESKY";
|
|
2102
|
+
LINKEDIN: "LINKEDIN";
|
|
1951
2103
|
}>;
|
|
1952
2104
|
connected: z.ZodBoolean;
|
|
1953
2105
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -1960,6 +2112,7 @@ declare const PostSchedulePreviewSchema: z.ZodObject<{
|
|
|
1960
2112
|
TIKTOK: "TIKTOK";
|
|
1961
2113
|
YOUTUBE: "YOUTUBE";
|
|
1962
2114
|
BLUESKY: "BLUESKY";
|
|
2115
|
+
LINKEDIN: "LINKEDIN";
|
|
1963
2116
|
}>>;
|
|
1964
2117
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
1965
2118
|
}, z.core.$strip>;
|
|
@@ -1995,6 +2148,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
1995
2148
|
TIKTOK: "TIKTOK";
|
|
1996
2149
|
YOUTUBE: "YOUTUBE";
|
|
1997
2150
|
BLUESKY: "BLUESKY";
|
|
2151
|
+
LINKEDIN: "LINKEDIN";
|
|
1998
2152
|
}>>;
|
|
1999
2153
|
providerReconciliation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2000
2154
|
provider: z.ZodLiteral<"YOUTUBE">;
|
|
@@ -2022,6 +2176,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2022
2176
|
TIKTOK: "TIKTOK";
|
|
2023
2177
|
YOUTUBE: "YOUTUBE";
|
|
2024
2178
|
BLUESKY: "BLUESKY";
|
|
2179
|
+
LINKEDIN: "LINKEDIN";
|
|
2025
2180
|
}>>;
|
|
2026
2181
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2027
2182
|
status: z.ZodEnum<{
|
|
@@ -2042,6 +2197,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2042
2197
|
kind: z.ZodEnum<{
|
|
2043
2198
|
reconnect: "reconnect";
|
|
2044
2199
|
replace_media: "replace_media";
|
|
2200
|
+
adjust_media: "adjust_media";
|
|
2045
2201
|
review_settings: "review_settings";
|
|
2046
2202
|
edit_caption: "edit_caption";
|
|
2047
2203
|
refresh_health: "refresh_health";
|
|
@@ -2051,7 +2207,9 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2051
2207
|
TIKTOK: "TIKTOK";
|
|
2052
2208
|
YOUTUBE: "YOUTUBE";
|
|
2053
2209
|
BLUESKY: "BLUESKY";
|
|
2210
|
+
LINKEDIN: "LINKEDIN";
|
|
2054
2211
|
}>>;
|
|
2212
|
+
mediaId: z.ZodOptional<z.ZodString>;
|
|
2055
2213
|
}, z.core.$strip>>;
|
|
2056
2214
|
}, z.core.$strip>>;
|
|
2057
2215
|
accounts: z.ZodArray<z.ZodObject<{
|
|
@@ -2060,6 +2218,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2060
2218
|
TIKTOK: "TIKTOK";
|
|
2061
2219
|
YOUTUBE: "YOUTUBE";
|
|
2062
2220
|
BLUESKY: "BLUESKY";
|
|
2221
|
+
LINKEDIN: "LINKEDIN";
|
|
2063
2222
|
}>;
|
|
2064
2223
|
connected: z.ZodBoolean;
|
|
2065
2224
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -2072,6 +2231,7 @@ declare const PostSchedulePreviewResponseSchema: z.ZodObject<{
|
|
|
2072
2231
|
TIKTOK: "TIKTOK";
|
|
2073
2232
|
YOUTUBE: "YOUTUBE";
|
|
2074
2233
|
BLUESKY: "BLUESKY";
|
|
2234
|
+
LINKEDIN: "LINKEDIN";
|
|
2075
2235
|
}>>;
|
|
2076
2236
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
2077
2237
|
}, z.core.$strip>;
|
|
@@ -2142,6 +2302,7 @@ declare const PostScheduleExecuteResultSchema: z.ZodUnion<readonly [z.ZodObject<
|
|
|
2142
2302
|
TIKTOK: "TIKTOK";
|
|
2143
2303
|
YOUTUBE: "YOUTUBE";
|
|
2144
2304
|
BLUESKY: "BLUESKY";
|
|
2305
|
+
LINKEDIN: "LINKEDIN";
|
|
2145
2306
|
}>;
|
|
2146
2307
|
status: z.ZodEnum<{
|
|
2147
2308
|
DRAFT: "DRAFT";
|
|
@@ -2248,6 +2409,7 @@ declare const PostScheduleExecuteResponseSchema: z.ZodObject<{
|
|
|
2248
2409
|
TIKTOK: "TIKTOK";
|
|
2249
2410
|
YOUTUBE: "YOUTUBE";
|
|
2250
2411
|
BLUESKY: "BLUESKY";
|
|
2412
|
+
LINKEDIN: "LINKEDIN";
|
|
2251
2413
|
}>;
|
|
2252
2414
|
status: z.ZodEnum<{
|
|
2253
2415
|
DRAFT: "DRAFT";
|
|
@@ -2316,6 +2478,7 @@ declare const PostPublishInputSchema: z.ZodObject<{
|
|
|
2316
2478
|
TIKTOK: "TIKTOK";
|
|
2317
2479
|
YOUTUBE: "YOUTUBE";
|
|
2318
2480
|
BLUESKY: "BLUESKY";
|
|
2481
|
+
LINKEDIN: "LINKEDIN";
|
|
2319
2482
|
}>>;
|
|
2320
2483
|
}, z.core.$strict>;
|
|
2321
2484
|
type PostPublishInput = z.infer<typeof PostPublishInputSchema>;
|
|
@@ -2325,6 +2488,7 @@ declare const PostPublishExecuteInputSchema: z.ZodObject<{
|
|
|
2325
2488
|
TIKTOK: "TIKTOK";
|
|
2326
2489
|
YOUTUBE: "YOUTUBE";
|
|
2327
2490
|
BLUESKY: "BLUESKY";
|
|
2491
|
+
LINKEDIN: "LINKEDIN";
|
|
2328
2492
|
}>>;
|
|
2329
2493
|
confirmationToken: z.ZodString;
|
|
2330
2494
|
}, z.core.$strict>;
|
|
@@ -2350,6 +2514,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2350
2514
|
TIKTOK: "TIKTOK";
|
|
2351
2515
|
YOUTUBE: "YOUTUBE";
|
|
2352
2516
|
BLUESKY: "BLUESKY";
|
|
2517
|
+
LINKEDIN: "LINKEDIN";
|
|
2353
2518
|
}>>;
|
|
2354
2519
|
readiness: z.ZodObject<{
|
|
2355
2520
|
checks: z.ZodArray<z.ZodObject<{
|
|
@@ -2372,6 +2537,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2372
2537
|
TIKTOK: "TIKTOK";
|
|
2373
2538
|
YOUTUBE: "YOUTUBE";
|
|
2374
2539
|
BLUESKY: "BLUESKY";
|
|
2540
|
+
LINKEDIN: "LINKEDIN";
|
|
2375
2541
|
}>>;
|
|
2376
2542
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2377
2543
|
status: z.ZodEnum<{
|
|
@@ -2392,6 +2558,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2392
2558
|
kind: z.ZodEnum<{
|
|
2393
2559
|
reconnect: "reconnect";
|
|
2394
2560
|
replace_media: "replace_media";
|
|
2561
|
+
adjust_media: "adjust_media";
|
|
2395
2562
|
review_settings: "review_settings";
|
|
2396
2563
|
edit_caption: "edit_caption";
|
|
2397
2564
|
refresh_health: "refresh_health";
|
|
@@ -2401,7 +2568,9 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2401
2568
|
TIKTOK: "TIKTOK";
|
|
2402
2569
|
YOUTUBE: "YOUTUBE";
|
|
2403
2570
|
BLUESKY: "BLUESKY";
|
|
2571
|
+
LINKEDIN: "LINKEDIN";
|
|
2404
2572
|
}>>;
|
|
2573
|
+
mediaId: z.ZodOptional<z.ZodString>;
|
|
2405
2574
|
}, z.core.$strip>>;
|
|
2406
2575
|
}, z.core.$strip>>;
|
|
2407
2576
|
accounts: z.ZodArray<z.ZodObject<{
|
|
@@ -2410,6 +2579,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2410
2579
|
TIKTOK: "TIKTOK";
|
|
2411
2580
|
YOUTUBE: "YOUTUBE";
|
|
2412
2581
|
BLUESKY: "BLUESKY";
|
|
2582
|
+
LINKEDIN: "LINKEDIN";
|
|
2413
2583
|
}>;
|
|
2414
2584
|
connected: z.ZodBoolean;
|
|
2415
2585
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -2422,6 +2592,7 @@ declare const PostPublishPreviewSchema: z.ZodObject<{
|
|
|
2422
2592
|
TIKTOK: "TIKTOK";
|
|
2423
2593
|
YOUTUBE: "YOUTUBE";
|
|
2424
2594
|
BLUESKY: "BLUESKY";
|
|
2595
|
+
LINKEDIN: "LINKEDIN";
|
|
2425
2596
|
}>>;
|
|
2426
2597
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
2427
2598
|
}, z.core.$strip>;
|
|
@@ -2453,6 +2624,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2453
2624
|
TIKTOK: "TIKTOK";
|
|
2454
2625
|
YOUTUBE: "YOUTUBE";
|
|
2455
2626
|
BLUESKY: "BLUESKY";
|
|
2627
|
+
LINKEDIN: "LINKEDIN";
|
|
2456
2628
|
}>>;
|
|
2457
2629
|
readiness: z.ZodObject<{
|
|
2458
2630
|
checks: z.ZodArray<z.ZodObject<{
|
|
@@ -2475,6 +2647,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2475
2647
|
TIKTOK: "TIKTOK";
|
|
2476
2648
|
YOUTUBE: "YOUTUBE";
|
|
2477
2649
|
BLUESKY: "BLUESKY";
|
|
2650
|
+
LINKEDIN: "LINKEDIN";
|
|
2478
2651
|
}>>;
|
|
2479
2652
|
mediaId: z.ZodOptional<z.ZodString>;
|
|
2480
2653
|
status: z.ZodEnum<{
|
|
@@ -2495,6 +2668,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2495
2668
|
kind: z.ZodEnum<{
|
|
2496
2669
|
reconnect: "reconnect";
|
|
2497
2670
|
replace_media: "replace_media";
|
|
2671
|
+
adjust_media: "adjust_media";
|
|
2498
2672
|
review_settings: "review_settings";
|
|
2499
2673
|
edit_caption: "edit_caption";
|
|
2500
2674
|
refresh_health: "refresh_health";
|
|
@@ -2504,7 +2678,9 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2504
2678
|
TIKTOK: "TIKTOK";
|
|
2505
2679
|
YOUTUBE: "YOUTUBE";
|
|
2506
2680
|
BLUESKY: "BLUESKY";
|
|
2681
|
+
LINKEDIN: "LINKEDIN";
|
|
2507
2682
|
}>>;
|
|
2683
|
+
mediaId: z.ZodOptional<z.ZodString>;
|
|
2508
2684
|
}, z.core.$strip>>;
|
|
2509
2685
|
}, z.core.$strip>>;
|
|
2510
2686
|
accounts: z.ZodArray<z.ZodObject<{
|
|
@@ -2513,6 +2689,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2513
2689
|
TIKTOK: "TIKTOK";
|
|
2514
2690
|
YOUTUBE: "YOUTUBE";
|
|
2515
2691
|
BLUESKY: "BLUESKY";
|
|
2692
|
+
LINKEDIN: "LINKEDIN";
|
|
2516
2693
|
}>;
|
|
2517
2694
|
connected: z.ZodBoolean;
|
|
2518
2695
|
username: z.ZodNullable<z.ZodString>;
|
|
@@ -2525,6 +2702,7 @@ declare const PostPublishPreviewResponseSchema: z.ZodObject<{
|
|
|
2525
2702
|
TIKTOK: "TIKTOK";
|
|
2526
2703
|
YOUTUBE: "YOUTUBE";
|
|
2527
2704
|
BLUESKY: "BLUESKY";
|
|
2705
|
+
LINKEDIN: "LINKEDIN";
|
|
2528
2706
|
}>>;
|
|
2529
2707
|
liveHealthCheckedAt: z.ZodNullable<z.ZodString>;
|
|
2530
2708
|
}, z.core.$strip>;
|
|
@@ -2563,6 +2741,7 @@ declare const CalendarEventSchema: z.ZodObject<{
|
|
|
2563
2741
|
TIKTOK: "TIKTOK";
|
|
2564
2742
|
YOUTUBE: "YOUTUBE";
|
|
2565
2743
|
BLUESKY: "BLUESKY";
|
|
2744
|
+
LINKEDIN: "LINKEDIN";
|
|
2566
2745
|
}>;
|
|
2567
2746
|
status: z.ZodEnum<{
|
|
2568
2747
|
DRAFT: "DRAFT";
|
|
@@ -2610,6 +2789,7 @@ declare const CalendarListDataSchema: z.ZodObject<{
|
|
|
2610
2789
|
TIKTOK: "TIKTOK";
|
|
2611
2790
|
YOUTUBE: "YOUTUBE";
|
|
2612
2791
|
BLUESKY: "BLUESKY";
|
|
2792
|
+
LINKEDIN: "LINKEDIN";
|
|
2613
2793
|
}>;
|
|
2614
2794
|
status: z.ZodEnum<{
|
|
2615
2795
|
DRAFT: "DRAFT";
|
|
@@ -2660,6 +2840,7 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
2660
2840
|
TIKTOK: "TIKTOK";
|
|
2661
2841
|
YOUTUBE: "YOUTUBE";
|
|
2662
2842
|
BLUESKY: "BLUESKY";
|
|
2843
|
+
LINKEDIN: "LINKEDIN";
|
|
2663
2844
|
}>;
|
|
2664
2845
|
status: z.ZodEnum<{
|
|
2665
2846
|
DRAFT: "DRAFT";
|
|
@@ -2686,4 +2867,4 @@ declare const CalendarListResponseSchema: z.ZodObject<{
|
|
|
2686
2867
|
}, z.core.$strip>;
|
|
2687
2868
|
}, z.core.$strip>;
|
|
2688
2869
|
|
|
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 };
|
|
2870
|
+
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 };
|