bundlesocial 2.8.0 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -83,6 +83,20 @@ type OrganizationGetOrganizationResponse = {
83
83
  avatarUrl?: string | null;
84
84
  apiAccess?: boolean;
85
85
  ref?: string | null;
86
+ dailyPostLimit?: {
87
+ TWITTER?: number;
88
+ FACEBOOK?: number;
89
+ INSTAGRAM?: number;
90
+ LINKEDIN?: number;
91
+ YOUTUBE?: number;
92
+ TIKTOK?: number;
93
+ THREADS?: number;
94
+ PINTEREST?: number;
95
+ REDDIT?: number;
96
+ DISCORD?: number;
97
+ SLACK?: number;
98
+ MASTODON?: number;
99
+ } | null;
86
100
  createdAt: string | null;
87
101
  updatedAt: string | null;
88
102
  deletedAt?: string | null;
@@ -235,6 +249,20 @@ type TeamGetTeamResponse = {
235
249
  avatarUrl?: string | null;
236
250
  apiAccess?: boolean;
237
251
  ref?: string | null;
252
+ dailyPostLimit?: {
253
+ TWITTER?: number;
254
+ FACEBOOK?: number;
255
+ INSTAGRAM?: number;
256
+ LINKEDIN?: number;
257
+ YOUTUBE?: number;
258
+ TIKTOK?: number;
259
+ THREADS?: number;
260
+ PINTEREST?: number;
261
+ REDDIT?: number;
262
+ DISCORD?: number;
263
+ SLACK?: number;
264
+ MASTODON?: number;
265
+ } | null;
238
266
  createdAt: string | null;
239
267
  updatedAt: string | null;
240
268
  deletedAt?: string | null;
@@ -364,6 +392,7 @@ type TeamCreateTeamData = {
364
392
  requestBody?: {
365
393
  name: string;
366
394
  avatarUrl?: string | null;
395
+ copyTeamId?: string | null;
367
396
  };
368
397
  };
369
398
  type TeamCreateTeamResponse = {
@@ -470,7 +499,7 @@ type SocialAccountRefreshChannelsData = {
470
499
  * Body
471
500
  */
472
501
  requestBody?: {
473
- type: 'DISCORD' | 'SLACK' | 'REDDIT' | 'PINTEREST';
502
+ type: 'DISCORD' | 'SLACK' | 'REDDIT' | 'PINTEREST' | 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE';
474
503
  teamId: string;
475
504
  };
476
505
  };
@@ -515,12 +544,52 @@ type SocialAccountCreatePortalLinkData = {
515
544
  type SocialAccountCreatePortalLinkResponse = {
516
545
  url: string;
517
546
  };
518
- type UploadGetListData = {
547
+ type SocialAccountCopyData = {
548
+ /**
549
+ * Body
550
+ */
551
+ requestBody?: {
552
+ fromTeamId: string;
553
+ toTeamId: string;
554
+ /**
555
+ * If you set that to true, selected page will not be transferred automatically. The user will have to select the page themselves again. This only applies to Facebook, Instagram, Linkedin and Youtube.
556
+ */
557
+ resetChannel?: boolean;
558
+ socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
559
+ };
560
+ };
561
+ type SocialAccountCopyResponse = Array<{
562
+ id: string;
563
+ type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
519
564
  teamId: string;
565
+ username?: string | null;
566
+ displayName?: string | null;
567
+ externalId?: string | null;
568
+ userUsername?: string | null;
569
+ userDisplayName?: string | null;
570
+ userId?: string | null;
571
+ channels?: Array<{
572
+ id: string;
573
+ name?: string | null;
574
+ username?: string | null;
575
+ webhook?: {
576
+ id?: string | null;
577
+ name?: string | null;
578
+ avatar?: string | null;
579
+ url?: string | null;
580
+ } | null;
581
+ }> | null;
582
+ createdAt: string | null;
583
+ updatedAt: string | null;
584
+ deletedAt?: string | null;
585
+ }>;
586
+ type UploadGetListData = {
587
+ teamId?: string | null;
520
588
  };
521
589
  type UploadGetListResponse = Array<{
522
590
  id: string;
523
- teamId: string;
591
+ teamId?: string | null;
592
+ organizationId?: string | null;
524
593
  expiresAt?: string | null;
525
594
  iconUrl?: string | null;
526
595
  thumbnailUrl?: string | null;
@@ -550,13 +619,14 @@ type UploadCreateData = {
550
619
  * Body
551
620
  */
552
621
  formData?: {
553
- teamId: string;
622
+ teamId?: string | null;
554
623
  file?: (Blob | File) | null;
555
624
  };
556
625
  };
557
626
  type UploadCreateResponse = {
558
627
  id: string;
559
- teamId: string;
628
+ teamId?: string | null;
629
+ organizationId?: string | null;
560
630
  expiresAt?: string | null;
561
631
  iconUrl?: string | null;
562
632
  thumbnailUrl?: string | null;
@@ -584,7 +654,8 @@ type UploadDeleteManyData = {
584
654
  };
585
655
  type UploadDeleteManyResponse = Array<{
586
656
  id: string;
587
- teamId: string;
657
+ teamId?: string | null;
658
+ organizationId?: string | null;
588
659
  expiresAt?: string | null;
589
660
  iconUrl?: string | null;
590
661
  thumbnailUrl?: string | null;
@@ -607,7 +678,8 @@ type UploadGetData = {
607
678
  };
608
679
  type UploadGetResponse = {
609
680
  id: string;
610
- teamId: string;
681
+ teamId?: string | null;
682
+ organizationId?: string | null;
611
683
  expiresAt?: string | null;
612
684
  iconUrl?: string | null;
613
685
  thumbnailUrl?: string | null;
@@ -630,7 +702,52 @@ type UploadDeleteData = {
630
702
  };
631
703
  type UploadDeleteResponse = {
632
704
  id: string;
633
- teamId: string;
705
+ teamId?: string | null;
706
+ organizationId?: string | null;
707
+ expiresAt?: string | null;
708
+ iconUrl?: string | null;
709
+ thumbnailUrl?: string | null;
710
+ url?: string | null;
711
+ iconPath?: string | null;
712
+ thumbnailPath?: string | null;
713
+ path?: string | null;
714
+ type: 'image' | 'video';
715
+ width?: number | null;
716
+ height?: number | null;
717
+ fileSize?: number | null;
718
+ videoLength?: number | null;
719
+ mime?: string | null;
720
+ ext?: string | null;
721
+ createdAt: string | null;
722
+ updatedAt: string | null;
723
+ };
724
+ type UploadInitLargeUploadData = {
725
+ /**
726
+ * Body
727
+ */
728
+ requestBody?: {
729
+ teamId?: string | null;
730
+ fileName: string;
731
+ mimeType: string;
732
+ };
733
+ };
734
+ type UploadInitLargeUploadResponse = {
735
+ url: string;
736
+ path: string;
737
+ };
738
+ type UploadFinalizeLargeUploadData = {
739
+ /**
740
+ * Body
741
+ */
742
+ requestBody?: {
743
+ teamId?: string | null;
744
+ path: string;
745
+ };
746
+ };
747
+ type UploadFinalizeLargeUploadResponse = {
748
+ id: string;
749
+ teamId?: string | null;
750
+ organizationId?: string | null;
634
751
  expiresAt?: string | null;
635
752
  iconUrl?: string | null;
636
753
  thumbnailUrl?: string | null;
@@ -668,6 +785,10 @@ type PostGetResponse = {
668
785
  description?: string | null;
669
786
  boardName: string;
670
787
  uploadIds?: Array<(string)> | null;
788
+ /**
789
+ * The URL to image uploaded on bundle.social.
790
+ */
791
+ thumbnail?: string | null;
671
792
  /**
672
793
  * The URL to which the Pin will link to.
673
794
  */
@@ -689,11 +810,27 @@ type PostGetResponse = {
689
810
  type?: 'POST' | 'REEL' | 'STORY';
690
811
  text?: string | null;
691
812
  uploadIds?: Array<(string)> | null;
813
+ /**
814
+ * The URL to image uploaded on bundle.social.
815
+ */
816
+ thumbnail?: string | null;
692
817
  } | null;
693
818
  INSTAGRAM?: {
694
819
  type?: 'POST' | 'REEL' | 'STORY';
695
820
  text?: string | null;
696
821
  uploadIds?: Array<(string)> | null;
822
+ /**
823
+ * Choose a frame of the published video as the cover photo in ms
824
+ */
825
+ thumbnailOffset?: number | null;
826
+ /**
827
+ * The URL to image uploaded on bundle.social.
828
+ */
829
+ thumbnail?: string | null;
830
+ /**
831
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
832
+ */
833
+ shareToFeed?: boolean | null;
697
834
  } | null;
698
835
  THREADS?: {
699
836
  text?: string | null;
@@ -736,6 +873,10 @@ type PostGetResponse = {
736
873
  LINKEDIN?: {
737
874
  text: string;
738
875
  uploadIds?: Array<(string)> | null;
876
+ /**
877
+ * The URL to image uploaded on bundle.social.
878
+ */
879
+ thumbnail?: string | null;
739
880
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
740
881
  /**
741
882
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -751,6 +892,10 @@ type PostGetResponse = {
751
892
  uploadIds?: Array<(string)> | null;
752
893
  text?: string | null;
753
894
  description?: string | null;
895
+ /**
896
+ * The URL to image uploaded on bundle.social.
897
+ */
898
+ thumbnail?: string | null;
754
899
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
755
900
  /**
756
901
  * Set to true if the video is made for kids.
@@ -803,6 +948,10 @@ type PostGetResponse = {
803
948
  MASTODON?: {
804
949
  text?: string | null;
805
950
  uploadIds?: Array<(string)> | null;
951
+ /**
952
+ * The URL to image uploaded on bundle.social.
953
+ */
954
+ thumbnail?: string | null;
806
955
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
807
956
  spoiler?: string | null;
808
957
  } | null;
@@ -830,16 +979,19 @@ type PostGetResponse = {
830
979
  PINTEREST?: {
831
980
  id?: string | null;
832
981
  permalink?: string | null;
982
+ thumbnail?: string | null;
833
983
  } | null;
834
984
  FACEBOOK?: {
835
985
  id?: string | null;
836
986
  postId?: string | null;
837
987
  videoId?: string | null;
838
988
  permalink?: string | null;
989
+ thumbnail?: string;
839
990
  } | null;
840
991
  INSTAGRAM?: {
841
992
  id?: string | null;
842
993
  permalink?: string | null;
994
+ thumbnail?: string;
843
995
  } | null;
844
996
  TIKTOK?: {
845
997
  id?: string | null;
@@ -849,6 +1001,7 @@ type PostGetResponse = {
849
1001
  id?: string | null;
850
1002
  activity?: string | null;
851
1003
  permalink?: string | null;
1004
+ thumbnail?: string;
852
1005
  } | null;
853
1006
  REDDIT?: {
854
1007
  id?: string | null;
@@ -868,10 +1021,12 @@ type PostGetResponse = {
868
1021
  YOUTUBE?: {
869
1022
  id?: string | null;
870
1023
  permalink?: string | null;
1024
+ thumbnail?: string | null;
871
1025
  } | null;
872
1026
  MASTODON?: {
873
1027
  id?: string | null;
874
1028
  permalink?: string | null;
1029
+ thumbnail?: string | null;
875
1030
  } | null;
876
1031
  THREADS?: {
877
1032
  id?: string | null;
@@ -889,7 +1044,8 @@ type PostGetResponse = {
889
1044
  deletedAt?: string | null;
890
1045
  upload: {
891
1046
  id: string;
892
- teamId: string;
1047
+ teamId?: string | null;
1048
+ organizationId?: string | null;
893
1049
  expiresAt?: string | null;
894
1050
  iconUrl?: string | null;
895
1051
  thumbnailUrl?: string | null;
@@ -961,6 +1117,10 @@ type PostUpdateData = {
961
1117
  description?: string | null;
962
1118
  boardName: string;
963
1119
  uploadIds?: Array<(string)> | null;
1120
+ /**
1121
+ * The URL to image uploaded on bundle.social.
1122
+ */
1123
+ thumbnail?: string | null;
964
1124
  /**
965
1125
  * The URL to which the Pin will link to.
966
1126
  */
@@ -982,11 +1142,27 @@ type PostUpdateData = {
982
1142
  type?: 'POST' | 'REEL' | 'STORY';
983
1143
  text?: string | null;
984
1144
  uploadIds?: Array<(string)> | null;
1145
+ /**
1146
+ * The URL to image uploaded on bundle.social.
1147
+ */
1148
+ thumbnail?: string | null;
985
1149
  } | null;
986
1150
  INSTAGRAM?: {
987
1151
  type?: 'POST' | 'REEL' | 'STORY';
988
1152
  text?: string | null;
989
1153
  uploadIds?: Array<(string)> | null;
1154
+ /**
1155
+ * Choose a frame of the published video as the cover photo in ms
1156
+ */
1157
+ thumbnailOffset?: number | null;
1158
+ /**
1159
+ * The URL to image uploaded on bundle.social.
1160
+ */
1161
+ thumbnail?: string | null;
1162
+ /**
1163
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
1164
+ */
1165
+ shareToFeed?: boolean | null;
990
1166
  } | null;
991
1167
  THREADS?: {
992
1168
  text?: string | null;
@@ -1029,6 +1205,10 @@ type PostUpdateData = {
1029
1205
  LINKEDIN?: {
1030
1206
  text: string;
1031
1207
  uploadIds?: Array<(string)> | null;
1208
+ /**
1209
+ * The URL to image uploaded on bundle.social.
1210
+ */
1211
+ thumbnail?: string | null;
1032
1212
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
1033
1213
  /**
1034
1214
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -1044,6 +1224,10 @@ type PostUpdateData = {
1044
1224
  uploadIds?: Array<(string)> | null;
1045
1225
  text?: string | null;
1046
1226
  description?: string | null;
1227
+ /**
1228
+ * The URL to image uploaded on bundle.social.
1229
+ */
1230
+ thumbnail?: string | null;
1047
1231
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
1048
1232
  /**
1049
1233
  * Set to true if the video is made for kids.
@@ -1096,6 +1280,10 @@ type PostUpdateData = {
1096
1280
  MASTODON?: {
1097
1281
  text?: string | null;
1098
1282
  uploadIds?: Array<(string)> | null;
1283
+ /**
1284
+ * The URL to image uploaded on bundle.social.
1285
+ */
1286
+ thumbnail?: string | null;
1099
1287
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
1100
1288
  spoiler?: string | null;
1101
1289
  } | null;
@@ -1119,6 +1307,10 @@ type PostUpdateResponse = {
1119
1307
  description?: string | null;
1120
1308
  boardName: string;
1121
1309
  uploadIds?: Array<(string)> | null;
1310
+ /**
1311
+ * The URL to image uploaded on bundle.social.
1312
+ */
1313
+ thumbnail?: string | null;
1122
1314
  /**
1123
1315
  * The URL to which the Pin will link to.
1124
1316
  */
@@ -1140,11 +1332,27 @@ type PostUpdateResponse = {
1140
1332
  type?: 'POST' | 'REEL' | 'STORY';
1141
1333
  text?: string | null;
1142
1334
  uploadIds?: Array<(string)> | null;
1335
+ /**
1336
+ * The URL to image uploaded on bundle.social.
1337
+ */
1338
+ thumbnail?: string | null;
1143
1339
  } | null;
1144
1340
  INSTAGRAM?: {
1145
1341
  type?: 'POST' | 'REEL' | 'STORY';
1146
1342
  text?: string | null;
1147
1343
  uploadIds?: Array<(string)> | null;
1344
+ /**
1345
+ * Choose a frame of the published video as the cover photo in ms
1346
+ */
1347
+ thumbnailOffset?: number | null;
1348
+ /**
1349
+ * The URL to image uploaded on bundle.social.
1350
+ */
1351
+ thumbnail?: string | null;
1352
+ /**
1353
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
1354
+ */
1355
+ shareToFeed?: boolean | null;
1148
1356
  } | null;
1149
1357
  THREADS?: {
1150
1358
  text?: string | null;
@@ -1187,6 +1395,10 @@ type PostUpdateResponse = {
1187
1395
  LINKEDIN?: {
1188
1396
  text: string;
1189
1397
  uploadIds?: Array<(string)> | null;
1398
+ /**
1399
+ * The URL to image uploaded on bundle.social.
1400
+ */
1401
+ thumbnail?: string | null;
1190
1402
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
1191
1403
  /**
1192
1404
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -1202,6 +1414,10 @@ type PostUpdateResponse = {
1202
1414
  uploadIds?: Array<(string)> | null;
1203
1415
  text?: string | null;
1204
1416
  description?: string | null;
1417
+ /**
1418
+ * The URL to image uploaded on bundle.social.
1419
+ */
1420
+ thumbnail?: string | null;
1205
1421
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
1206
1422
  /**
1207
1423
  * Set to true if the video is made for kids.
@@ -1254,6 +1470,10 @@ type PostUpdateResponse = {
1254
1470
  MASTODON?: {
1255
1471
  text?: string | null;
1256
1472
  uploadIds?: Array<(string)> | null;
1473
+ /**
1474
+ * The URL to image uploaded on bundle.social.
1475
+ */
1476
+ thumbnail?: string | null;
1257
1477
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
1258
1478
  spoiler?: string | null;
1259
1479
  } | null;
@@ -1281,16 +1501,19 @@ type PostUpdateResponse = {
1281
1501
  PINTEREST?: {
1282
1502
  id?: string | null;
1283
1503
  permalink?: string | null;
1504
+ thumbnail?: string | null;
1284
1505
  } | null;
1285
1506
  FACEBOOK?: {
1286
1507
  id?: string | null;
1287
1508
  postId?: string | null;
1288
1509
  videoId?: string | null;
1289
1510
  permalink?: string | null;
1511
+ thumbnail?: string;
1290
1512
  } | null;
1291
1513
  INSTAGRAM?: {
1292
1514
  id?: string | null;
1293
1515
  permalink?: string | null;
1516
+ thumbnail?: string;
1294
1517
  } | null;
1295
1518
  TIKTOK?: {
1296
1519
  id?: string | null;
@@ -1300,6 +1523,7 @@ type PostUpdateResponse = {
1300
1523
  id?: string | null;
1301
1524
  activity?: string | null;
1302
1525
  permalink?: string | null;
1526
+ thumbnail?: string;
1303
1527
  } | null;
1304
1528
  REDDIT?: {
1305
1529
  id?: string | null;
@@ -1319,10 +1543,12 @@ type PostUpdateResponse = {
1319
1543
  YOUTUBE?: {
1320
1544
  id?: string | null;
1321
1545
  permalink?: string | null;
1546
+ thumbnail?: string | null;
1322
1547
  } | null;
1323
1548
  MASTODON?: {
1324
1549
  id?: string | null;
1325
1550
  permalink?: string | null;
1551
+ thumbnail?: string | null;
1326
1552
  } | null;
1327
1553
  THREADS?: {
1328
1554
  id?: string | null;
@@ -1353,6 +1579,10 @@ type PostDeleteResponse = {
1353
1579
  description?: string | null;
1354
1580
  boardName: string;
1355
1581
  uploadIds?: Array<(string)> | null;
1582
+ /**
1583
+ * The URL to image uploaded on bundle.social.
1584
+ */
1585
+ thumbnail?: string | null;
1356
1586
  /**
1357
1587
  * The URL to which the Pin will link to.
1358
1588
  */
@@ -1374,11 +1604,27 @@ type PostDeleteResponse = {
1374
1604
  type?: 'POST' | 'REEL' | 'STORY';
1375
1605
  text?: string | null;
1376
1606
  uploadIds?: Array<(string)> | null;
1607
+ /**
1608
+ * The URL to image uploaded on bundle.social.
1609
+ */
1610
+ thumbnail?: string | null;
1377
1611
  } | null;
1378
1612
  INSTAGRAM?: {
1379
1613
  type?: 'POST' | 'REEL' | 'STORY';
1380
1614
  text?: string | null;
1381
1615
  uploadIds?: Array<(string)> | null;
1616
+ /**
1617
+ * Choose a frame of the published video as the cover photo in ms
1618
+ */
1619
+ thumbnailOffset?: number | null;
1620
+ /**
1621
+ * The URL to image uploaded on bundle.social.
1622
+ */
1623
+ thumbnail?: string | null;
1624
+ /**
1625
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
1626
+ */
1627
+ shareToFeed?: boolean | null;
1382
1628
  } | null;
1383
1629
  THREADS?: {
1384
1630
  text?: string | null;
@@ -1421,6 +1667,10 @@ type PostDeleteResponse = {
1421
1667
  LINKEDIN?: {
1422
1668
  text: string;
1423
1669
  uploadIds?: Array<(string)> | null;
1670
+ /**
1671
+ * The URL to image uploaded on bundle.social.
1672
+ */
1673
+ thumbnail?: string | null;
1424
1674
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
1425
1675
  /**
1426
1676
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -1436,6 +1686,10 @@ type PostDeleteResponse = {
1436
1686
  uploadIds?: Array<(string)> | null;
1437
1687
  text?: string | null;
1438
1688
  description?: string | null;
1689
+ /**
1690
+ * The URL to image uploaded on bundle.social.
1691
+ */
1692
+ thumbnail?: string | null;
1439
1693
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
1440
1694
  /**
1441
1695
  * Set to true if the video is made for kids.
@@ -1488,6 +1742,10 @@ type PostDeleteResponse = {
1488
1742
  MASTODON?: {
1489
1743
  text?: string | null;
1490
1744
  uploadIds?: Array<(string)> | null;
1745
+ /**
1746
+ * The URL to image uploaded on bundle.social.
1747
+ */
1748
+ thumbnail?: string | null;
1491
1749
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
1492
1750
  spoiler?: string | null;
1493
1751
  } | null;
@@ -1515,16 +1773,19 @@ type PostDeleteResponse = {
1515
1773
  PINTEREST?: {
1516
1774
  id?: string | null;
1517
1775
  permalink?: string | null;
1776
+ thumbnail?: string | null;
1518
1777
  } | null;
1519
1778
  FACEBOOK?: {
1520
1779
  id?: string | null;
1521
1780
  postId?: string | null;
1522
1781
  videoId?: string | null;
1523
1782
  permalink?: string | null;
1783
+ thumbnail?: string;
1524
1784
  } | null;
1525
1785
  INSTAGRAM?: {
1526
1786
  id?: string | null;
1527
1787
  permalink?: string | null;
1788
+ thumbnail?: string;
1528
1789
  } | null;
1529
1790
  TIKTOK?: {
1530
1791
  id?: string | null;
@@ -1534,6 +1795,7 @@ type PostDeleteResponse = {
1534
1795
  id?: string | null;
1535
1796
  activity?: string | null;
1536
1797
  permalink?: string | null;
1798
+ thumbnail?: string;
1537
1799
  } | null;
1538
1800
  REDDIT?: {
1539
1801
  id?: string | null;
@@ -1553,10 +1815,12 @@ type PostDeleteResponse = {
1553
1815
  YOUTUBE?: {
1554
1816
  id?: string | null;
1555
1817
  permalink?: string | null;
1818
+ thumbnail?: string | null;
1556
1819
  } | null;
1557
1820
  MASTODON?: {
1558
1821
  id?: string | null;
1559
1822
  permalink?: string | null;
1823
+ thumbnail?: string | null;
1560
1824
  } | null;
1561
1825
  THREADS?: {
1562
1826
  id?: string | null;
@@ -1595,6 +1859,10 @@ type PostGetListResponse = {
1595
1859
  description?: string | null;
1596
1860
  boardName: string;
1597
1861
  uploadIds?: Array<(string)> | null;
1862
+ /**
1863
+ * The URL to image uploaded on bundle.social.
1864
+ */
1865
+ thumbnail?: string | null;
1598
1866
  /**
1599
1867
  * The URL to which the Pin will link to.
1600
1868
  */
@@ -1616,11 +1884,27 @@ type PostGetListResponse = {
1616
1884
  type?: 'POST' | 'REEL' | 'STORY';
1617
1885
  text?: string | null;
1618
1886
  uploadIds?: Array<(string)> | null;
1887
+ /**
1888
+ * The URL to image uploaded on bundle.social.
1889
+ */
1890
+ thumbnail?: string | null;
1619
1891
  } | null;
1620
1892
  INSTAGRAM?: {
1621
1893
  type?: 'POST' | 'REEL' | 'STORY';
1622
1894
  text?: string | null;
1623
1895
  uploadIds?: Array<(string)> | null;
1896
+ /**
1897
+ * Choose a frame of the published video as the cover photo in ms
1898
+ */
1899
+ thumbnailOffset?: number | null;
1900
+ /**
1901
+ * The URL to image uploaded on bundle.social.
1902
+ */
1903
+ thumbnail?: string | null;
1904
+ /**
1905
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
1906
+ */
1907
+ shareToFeed?: boolean | null;
1624
1908
  } | null;
1625
1909
  THREADS?: {
1626
1910
  text?: string | null;
@@ -1663,6 +1947,10 @@ type PostGetListResponse = {
1663
1947
  LINKEDIN?: {
1664
1948
  text: string;
1665
1949
  uploadIds?: Array<(string)> | null;
1950
+ /**
1951
+ * The URL to image uploaded on bundle.social.
1952
+ */
1953
+ thumbnail?: string | null;
1666
1954
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
1667
1955
  /**
1668
1956
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -1678,6 +1966,10 @@ type PostGetListResponse = {
1678
1966
  uploadIds?: Array<(string)> | null;
1679
1967
  text?: string | null;
1680
1968
  description?: string | null;
1969
+ /**
1970
+ * The URL to image uploaded on bundle.social.
1971
+ */
1972
+ thumbnail?: string | null;
1681
1973
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
1682
1974
  /**
1683
1975
  * Set to true if the video is made for kids.
@@ -1730,6 +2022,10 @@ type PostGetListResponse = {
1730
2022
  MASTODON?: {
1731
2023
  text?: string | null;
1732
2024
  uploadIds?: Array<(string)> | null;
2025
+ /**
2026
+ * The URL to image uploaded on bundle.social.
2027
+ */
2028
+ thumbnail?: string | null;
1733
2029
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
1734
2030
  spoiler?: string | null;
1735
2031
  } | null;
@@ -1757,16 +2053,19 @@ type PostGetListResponse = {
1757
2053
  PINTEREST?: {
1758
2054
  id?: string | null;
1759
2055
  permalink?: string | null;
2056
+ thumbnail?: string | null;
1760
2057
  } | null;
1761
2058
  FACEBOOK?: {
1762
2059
  id?: string | null;
1763
2060
  postId?: string | null;
1764
2061
  videoId?: string | null;
1765
2062
  permalink?: string | null;
2063
+ thumbnail?: string;
1766
2064
  } | null;
1767
2065
  INSTAGRAM?: {
1768
2066
  id?: string | null;
1769
2067
  permalink?: string | null;
2068
+ thumbnail?: string;
1770
2069
  } | null;
1771
2070
  TIKTOK?: {
1772
2071
  id?: string | null;
@@ -1776,6 +2075,7 @@ type PostGetListResponse = {
1776
2075
  id?: string | null;
1777
2076
  activity?: string | null;
1778
2077
  permalink?: string | null;
2078
+ thumbnail?: string;
1779
2079
  } | null;
1780
2080
  REDDIT?: {
1781
2081
  id?: string | null;
@@ -1795,10 +2095,12 @@ type PostGetListResponse = {
1795
2095
  YOUTUBE?: {
1796
2096
  id?: string | null;
1797
2097
  permalink?: string | null;
2098
+ thumbnail?: string | null;
1798
2099
  } | null;
1799
2100
  MASTODON?: {
1800
2101
  id?: string | null;
1801
2102
  permalink?: string | null;
2103
+ thumbnail?: string | null;
1802
2104
  } | null;
1803
2105
  THREADS?: {
1804
2106
  id?: string | null;
@@ -1816,7 +2118,8 @@ type PostGetListResponse = {
1816
2118
  deletedAt?: string | null;
1817
2119
  upload: {
1818
2120
  id: string;
1819
- teamId: string;
2121
+ teamId?: string | null;
2122
+ organizationId?: string | null;
1820
2123
  expiresAt?: string | null;
1821
2124
  iconUrl?: string | null;
1822
2125
  thumbnailUrl?: string | null;
@@ -1890,6 +2193,10 @@ type PostCreateData = {
1890
2193
  description?: string | null;
1891
2194
  boardName: string;
1892
2195
  uploadIds?: Array<(string)> | null;
2196
+ /**
2197
+ * The URL to image uploaded on bundle.social.
2198
+ */
2199
+ thumbnail?: string | null;
1893
2200
  /**
1894
2201
  * The URL to which the Pin will link to.
1895
2202
  */
@@ -1911,11 +2218,27 @@ type PostCreateData = {
1911
2218
  type?: 'POST' | 'REEL' | 'STORY';
1912
2219
  text?: string | null;
1913
2220
  uploadIds?: Array<(string)> | null;
2221
+ /**
2222
+ * The URL to image uploaded on bundle.social.
2223
+ */
2224
+ thumbnail?: string | null;
1914
2225
  } | null;
1915
2226
  INSTAGRAM?: {
1916
2227
  type?: 'POST' | 'REEL' | 'STORY';
1917
2228
  text?: string | null;
1918
2229
  uploadIds?: Array<(string)> | null;
2230
+ /**
2231
+ * Choose a frame of the published video as the cover photo in ms
2232
+ */
2233
+ thumbnailOffset?: number | null;
2234
+ /**
2235
+ * The URL to image uploaded on bundle.social.
2236
+ */
2237
+ thumbnail?: string | null;
2238
+ /**
2239
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
2240
+ */
2241
+ shareToFeed?: boolean | null;
1919
2242
  } | null;
1920
2243
  THREADS?: {
1921
2244
  text?: string | null;
@@ -1958,6 +2281,10 @@ type PostCreateData = {
1958
2281
  LINKEDIN?: {
1959
2282
  text: string;
1960
2283
  uploadIds?: Array<(string)> | null;
2284
+ /**
2285
+ * The URL to image uploaded on bundle.social.
2286
+ */
2287
+ thumbnail?: string | null;
1961
2288
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
1962
2289
  /**
1963
2290
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -1973,6 +2300,10 @@ type PostCreateData = {
1973
2300
  uploadIds?: Array<(string)> | null;
1974
2301
  text?: string | null;
1975
2302
  description?: string | null;
2303
+ /**
2304
+ * The URL to image uploaded on bundle.social.
2305
+ */
2306
+ thumbnail?: string | null;
1976
2307
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
1977
2308
  /**
1978
2309
  * Set to true if the video is made for kids.
@@ -2025,6 +2356,10 @@ type PostCreateData = {
2025
2356
  MASTODON?: {
2026
2357
  text?: string | null;
2027
2358
  uploadIds?: Array<(string)> | null;
2359
+ /**
2360
+ * The URL to image uploaded on bundle.social.
2361
+ */
2362
+ thumbnail?: string | null;
2028
2363
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
2029
2364
  spoiler?: string | null;
2030
2365
  } | null;
@@ -2048,6 +2383,10 @@ type PostCreateResponse = {
2048
2383
  description?: string | null;
2049
2384
  boardName: string;
2050
2385
  uploadIds?: Array<(string)> | null;
2386
+ /**
2387
+ * The URL to image uploaded on bundle.social.
2388
+ */
2389
+ thumbnail?: string | null;
2051
2390
  /**
2052
2391
  * The URL to which the Pin will link to.
2053
2392
  */
@@ -2069,11 +2408,27 @@ type PostCreateResponse = {
2069
2408
  type?: 'POST' | 'REEL' | 'STORY';
2070
2409
  text?: string | null;
2071
2410
  uploadIds?: Array<(string)> | null;
2411
+ /**
2412
+ * The URL to image uploaded on bundle.social.
2413
+ */
2414
+ thumbnail?: string | null;
2072
2415
  } | null;
2073
2416
  INSTAGRAM?: {
2074
2417
  type?: 'POST' | 'REEL' | 'STORY';
2075
2418
  text?: string | null;
2076
2419
  uploadIds?: Array<(string)> | null;
2420
+ /**
2421
+ * Choose a frame of the published video as the cover photo in ms
2422
+ */
2423
+ thumbnailOffset?: number | null;
2424
+ /**
2425
+ * The URL to image uploaded on bundle.social.
2426
+ */
2427
+ thumbnail?: string | null;
2428
+ /**
2429
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
2430
+ */
2431
+ shareToFeed?: boolean | null;
2077
2432
  } | null;
2078
2433
  THREADS?: {
2079
2434
  text?: string | null;
@@ -2116,6 +2471,10 @@ type PostCreateResponse = {
2116
2471
  LINKEDIN?: {
2117
2472
  text: string;
2118
2473
  uploadIds?: Array<(string)> | null;
2474
+ /**
2475
+ * The URL to image uploaded on bundle.social.
2476
+ */
2477
+ thumbnail?: string | null;
2119
2478
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
2120
2479
  /**
2121
2480
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -2131,6 +2490,10 @@ type PostCreateResponse = {
2131
2490
  uploadIds?: Array<(string)> | null;
2132
2491
  text?: string | null;
2133
2492
  description?: string | null;
2493
+ /**
2494
+ * The URL to image uploaded on bundle.social.
2495
+ */
2496
+ thumbnail?: string | null;
2134
2497
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
2135
2498
  /**
2136
2499
  * Set to true if the video is made for kids.
@@ -2183,6 +2546,10 @@ type PostCreateResponse = {
2183
2546
  MASTODON?: {
2184
2547
  text?: string | null;
2185
2548
  uploadIds?: Array<(string)> | null;
2549
+ /**
2550
+ * The URL to image uploaded on bundle.social.
2551
+ */
2552
+ thumbnail?: string | null;
2186
2553
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
2187
2554
  spoiler?: string | null;
2188
2555
  } | null;
@@ -2210,16 +2577,19 @@ type PostCreateResponse = {
2210
2577
  PINTEREST?: {
2211
2578
  id?: string | null;
2212
2579
  permalink?: string | null;
2580
+ thumbnail?: string | null;
2213
2581
  } | null;
2214
2582
  FACEBOOK?: {
2215
2583
  id?: string | null;
2216
2584
  postId?: string | null;
2217
2585
  videoId?: string | null;
2218
2586
  permalink?: string | null;
2587
+ thumbnail?: string;
2219
2588
  } | null;
2220
2589
  INSTAGRAM?: {
2221
2590
  id?: string | null;
2222
2591
  permalink?: string | null;
2592
+ thumbnail?: string;
2223
2593
  } | null;
2224
2594
  TIKTOK?: {
2225
2595
  id?: string | null;
@@ -2229,6 +2599,7 @@ type PostCreateResponse = {
2229
2599
  id?: string | null;
2230
2600
  activity?: string | null;
2231
2601
  permalink?: string | null;
2602
+ thumbnail?: string;
2232
2603
  } | null;
2233
2604
  REDDIT?: {
2234
2605
  id?: string | null;
@@ -2248,10 +2619,12 @@ type PostCreateResponse = {
2248
2619
  YOUTUBE?: {
2249
2620
  id?: string | null;
2250
2621
  permalink?: string | null;
2622
+ thumbnail?: string | null;
2251
2623
  } | null;
2252
2624
  MASTODON?: {
2253
2625
  id?: string | null;
2254
2626
  permalink?: string | null;
2627
+ thumbnail?: string | null;
2255
2628
  } | null;
2256
2629
  THREADS?: {
2257
2630
  id?: string | null;
@@ -2384,6 +2757,10 @@ type AnalyticsGetProfilePostResponse = {
2384
2757
  description?: string | null;
2385
2758
  boardName: string;
2386
2759
  uploadIds?: Array<(string)> | null;
2760
+ /**
2761
+ * The URL to image uploaded on bundle.social.
2762
+ */
2763
+ thumbnail?: string | null;
2387
2764
  /**
2388
2765
  * The URL to which the Pin will link to.
2389
2766
  */
@@ -2405,11 +2782,27 @@ type AnalyticsGetProfilePostResponse = {
2405
2782
  type?: 'POST' | 'REEL' | 'STORY';
2406
2783
  text?: string | null;
2407
2784
  uploadIds?: Array<(string)> | null;
2785
+ /**
2786
+ * The URL to image uploaded on bundle.social.
2787
+ */
2788
+ thumbnail?: string | null;
2408
2789
  } | null;
2409
2790
  INSTAGRAM?: {
2410
2791
  type?: 'POST' | 'REEL' | 'STORY';
2411
2792
  text?: string | null;
2412
2793
  uploadIds?: Array<(string)> | null;
2794
+ /**
2795
+ * Choose a frame of the published video as the cover photo in ms
2796
+ */
2797
+ thumbnailOffset?: number | null;
2798
+ /**
2799
+ * The URL to image uploaded on bundle.social.
2800
+ */
2801
+ thumbnail?: string | null;
2802
+ /**
2803
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
2804
+ */
2805
+ shareToFeed?: boolean | null;
2413
2806
  } | null;
2414
2807
  THREADS?: {
2415
2808
  text?: string | null;
@@ -2452,6 +2845,10 @@ type AnalyticsGetProfilePostResponse = {
2452
2845
  LINKEDIN?: {
2453
2846
  text: string;
2454
2847
  uploadIds?: Array<(string)> | null;
2848
+ /**
2849
+ * The URL to image uploaded on bundle.social.
2850
+ */
2851
+ thumbnail?: string | null;
2455
2852
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
2456
2853
  /**
2457
2854
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -2467,6 +2864,10 @@ type AnalyticsGetProfilePostResponse = {
2467
2864
  uploadIds?: Array<(string)> | null;
2468
2865
  text?: string | null;
2469
2866
  description?: string | null;
2867
+ /**
2868
+ * The URL to image uploaded on bundle.social.
2869
+ */
2870
+ thumbnail?: string | null;
2470
2871
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
2471
2872
  /**
2472
2873
  * Set to true if the video is made for kids.
@@ -2519,6 +2920,10 @@ type AnalyticsGetProfilePostResponse = {
2519
2920
  MASTODON?: {
2520
2921
  text?: string | null;
2521
2922
  uploadIds?: Array<(string)> | null;
2923
+ /**
2924
+ * The URL to image uploaded on bundle.social.
2925
+ */
2926
+ thumbnail?: string | null;
2522
2927
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
2523
2928
  spoiler?: string | null;
2524
2929
  } | null;
@@ -2546,16 +2951,19 @@ type AnalyticsGetProfilePostResponse = {
2546
2951
  PINTEREST?: {
2547
2952
  id?: string | null;
2548
2953
  permalink?: string | null;
2954
+ thumbnail?: string | null;
2549
2955
  } | null;
2550
2956
  FACEBOOK?: {
2551
2957
  id?: string | null;
2552
2958
  postId?: string | null;
2553
2959
  videoId?: string | null;
2554
2960
  permalink?: string | null;
2961
+ thumbnail?: string;
2555
2962
  } | null;
2556
2963
  INSTAGRAM?: {
2557
2964
  id?: string | null;
2558
2965
  permalink?: string | null;
2966
+ thumbnail?: string;
2559
2967
  } | null;
2560
2968
  TIKTOK?: {
2561
2969
  id?: string | null;
@@ -2565,6 +2973,7 @@ type AnalyticsGetProfilePostResponse = {
2565
2973
  id?: string | null;
2566
2974
  activity?: string | null;
2567
2975
  permalink?: string | null;
2976
+ thumbnail?: string;
2568
2977
  } | null;
2569
2978
  REDDIT?: {
2570
2979
  id?: string | null;
@@ -2584,10 +2993,12 @@ type AnalyticsGetProfilePostResponse = {
2584
2993
  YOUTUBE?: {
2585
2994
  id?: string | null;
2586
2995
  permalink?: string | null;
2996
+ thumbnail?: string | null;
2587
2997
  } | null;
2588
2998
  MASTODON?: {
2589
2999
  id?: string | null;
2590
3000
  permalink?: string | null;
3001
+ thumbnail?: string | null;
2591
3002
  } | null;
2592
3003
  THREADS?: {
2593
3004
  id?: string | null;
@@ -2668,13 +3079,13 @@ type CommentGetResponse = {
2668
3079
  text?: string | null;
2669
3080
  } | null;
2670
3081
  LINKEDIN?: {
2671
- text: string;
3082
+ text?: string | null;
2672
3083
  } | null;
2673
3084
  YOUTUBE?: {
2674
3085
  text?: string | null;
2675
3086
  } | null;
2676
3087
  REDDIT?: {
2677
- text: string;
3088
+ text?: string | null;
2678
3089
  } | null;
2679
3090
  MASTODON?: {
2680
3091
  text?: string | null;
@@ -2772,13 +3183,13 @@ type CommentUpdateData = {
2772
3183
  text?: string | null;
2773
3184
  } | null;
2774
3185
  LINKEDIN?: {
2775
- text: string;
3186
+ text?: string | null;
2776
3187
  } | null;
2777
3188
  YOUTUBE?: {
2778
3189
  text?: string | null;
2779
3190
  } | null;
2780
3191
  REDDIT?: {
2781
- text: string;
3192
+ text?: string | null;
2782
3193
  } | null;
2783
3194
  MASTODON?: {
2784
3195
  text?: string | null;
@@ -2815,13 +3226,13 @@ type CommentUpdateResponse = {
2815
3226
  text?: string | null;
2816
3227
  } | null;
2817
3228
  LINKEDIN?: {
2818
- text: string;
3229
+ text?: string | null;
2819
3230
  } | null;
2820
3231
  YOUTUBE?: {
2821
3232
  text?: string | null;
2822
3233
  } | null;
2823
3234
  REDDIT?: {
2824
- text: string;
3235
+ text?: string | null;
2825
3236
  } | null;
2826
3237
  MASTODON?: {
2827
3238
  text?: string | null;
@@ -2919,13 +3330,13 @@ type CommentDeleteResponse = {
2919
3330
  text?: string | null;
2920
3331
  } | null;
2921
3332
  LINKEDIN?: {
2922
- text: string;
3333
+ text?: string | null;
2923
3334
  } | null;
2924
3335
  YOUTUBE?: {
2925
3336
  text?: string | null;
2926
3337
  } | null;
2927
3338
  REDDIT?: {
2928
- text: string;
3339
+ text?: string | null;
2929
3340
  } | null;
2930
3341
  MASTODON?: {
2931
3342
  text?: string | null;
@@ -3031,13 +3442,13 @@ type CommentGetListResponse = {
3031
3442
  text?: string | null;
3032
3443
  } | null;
3033
3444
  LINKEDIN?: {
3034
- text: string;
3445
+ text?: string | null;
3035
3446
  } | null;
3036
3447
  YOUTUBE?: {
3037
3448
  text?: string | null;
3038
3449
  } | null;
3039
3450
  REDDIT?: {
3040
- text: string;
3451
+ text?: string | null;
3041
3452
  } | null;
3042
3453
  MASTODON?: {
3043
3454
  text?: string | null;
@@ -3137,13 +3548,13 @@ type CommentCreateData = {
3137
3548
  text?: string | null;
3138
3549
  } | null;
3139
3550
  LINKEDIN?: {
3140
- text: string;
3551
+ text?: string | null;
3141
3552
  } | null;
3142
3553
  YOUTUBE?: {
3143
3554
  text?: string | null;
3144
3555
  } | null;
3145
3556
  REDDIT?: {
3146
- text: string;
3557
+ text?: string | null;
3147
3558
  } | null;
3148
3559
  MASTODON?: {
3149
3560
  text?: string | null;
@@ -3180,13 +3591,13 @@ type CommentCreateResponse = {
3180
3591
  text?: string | null;
3181
3592
  } | null;
3182
3593
  LINKEDIN?: {
3183
- text: string;
3594
+ text?: string | null;
3184
3595
  } | null;
3185
3596
  YOUTUBE?: {
3186
3597
  text?: string | null;
3187
3598
  } | null;
3188
3599
  REDDIT?: {
3189
- text: string;
3600
+ text?: string | null;
3190
3601
  } | null;
3191
3602
  MASTODON?: {
3192
3603
  text?: string | null;
@@ -3326,6 +3737,20 @@ type $OpenApiTs = {
3326
3737
  avatarUrl?: string | null;
3327
3738
  apiAccess?: boolean;
3328
3739
  ref?: string | null;
3740
+ dailyPostLimit?: {
3741
+ TWITTER?: number;
3742
+ FACEBOOK?: number;
3743
+ INSTAGRAM?: number;
3744
+ LINKEDIN?: number;
3745
+ YOUTUBE?: number;
3746
+ TIKTOK?: number;
3747
+ THREADS?: number;
3748
+ PINTEREST?: number;
3749
+ REDDIT?: number;
3750
+ DISCORD?: number;
3751
+ SLACK?: number;
3752
+ MASTODON?: number;
3753
+ } | null;
3329
3754
  createdAt: string | null;
3330
3755
  updatedAt: string | null;
3331
3756
  deletedAt?: string | null;
@@ -3525,6 +3950,20 @@ type $OpenApiTs = {
3525
3950
  avatarUrl?: string | null;
3526
3951
  apiAccess?: boolean;
3527
3952
  ref?: string | null;
3953
+ dailyPostLimit?: {
3954
+ TWITTER?: number;
3955
+ FACEBOOK?: number;
3956
+ INSTAGRAM?: number;
3957
+ LINKEDIN?: number;
3958
+ YOUTUBE?: number;
3959
+ TIKTOK?: number;
3960
+ THREADS?: number;
3961
+ PINTEREST?: number;
3962
+ REDDIT?: number;
3963
+ DISCORD?: number;
3964
+ SLACK?: number;
3965
+ MASTODON?: number;
3966
+ } | null;
3528
3967
  createdAt: string | null;
3529
3968
  updatedAt: string | null;
3530
3969
  deletedAt?: string | null;
@@ -4166,17 +4605,238 @@ type $OpenApiTs = {
4166
4605
  };
4167
4606
  };
4168
4607
  };
4169
- };
4170
- '/api/v1/upload/': {
4171
- get: {
4172
- req: UploadGetListData;
4608
+ };
4609
+ '/api/v1/social-account/copy': {
4610
+ post: {
4611
+ req: SocialAccountCopyData;
4612
+ res: {
4613
+ /**
4614
+ * 200
4615
+ */
4616
+ 200: Array<{
4617
+ id: string;
4618
+ type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
4619
+ teamId: string;
4620
+ username?: string | null;
4621
+ displayName?: string | null;
4622
+ externalId?: string | null;
4623
+ userUsername?: string | null;
4624
+ userDisplayName?: string | null;
4625
+ userId?: string | null;
4626
+ channels?: Array<{
4627
+ id: string;
4628
+ name?: string | null;
4629
+ username?: string | null;
4630
+ webhook?: {
4631
+ id?: string | null;
4632
+ name?: string | null;
4633
+ avatar?: string | null;
4634
+ url?: string | null;
4635
+ } | null;
4636
+ }> | null;
4637
+ createdAt: string | null;
4638
+ updatedAt: string | null;
4639
+ deletedAt?: string | null;
4640
+ }>;
4641
+ /**
4642
+ * 400
4643
+ */
4644
+ 400: {
4645
+ message: string;
4646
+ issues?: Array<{
4647
+ message: string;
4648
+ path?: Array<(string | number)> | null;
4649
+ }> | null;
4650
+ };
4651
+ /**
4652
+ * 401
4653
+ */
4654
+ 401: {
4655
+ message: string;
4656
+ };
4657
+ /**
4658
+ * 403
4659
+ */
4660
+ 403: {
4661
+ message: string;
4662
+ };
4663
+ /**
4664
+ * 404
4665
+ */
4666
+ 404: {
4667
+ message: string;
4668
+ };
4669
+ /**
4670
+ * 429
4671
+ */
4672
+ 429: {
4673
+ message: string;
4674
+ };
4675
+ /**
4676
+ * 500
4677
+ */
4678
+ 500: {
4679
+ message: string;
4680
+ };
4681
+ };
4682
+ };
4683
+ };
4684
+ '/api/v1/upload/': {
4685
+ get: {
4686
+ req: UploadGetListData;
4687
+ res: {
4688
+ /**
4689
+ * 200
4690
+ */
4691
+ 200: Array<{
4692
+ id: string;
4693
+ teamId?: string | null;
4694
+ organizationId?: string | null;
4695
+ expiresAt?: string | null;
4696
+ iconUrl?: string | null;
4697
+ thumbnailUrl?: string | null;
4698
+ url?: string | null;
4699
+ iconPath?: string | null;
4700
+ thumbnailPath?: string | null;
4701
+ path?: string | null;
4702
+ type: 'image' | 'video';
4703
+ width?: number | null;
4704
+ height?: number | null;
4705
+ fileSize?: number | null;
4706
+ videoLength?: number | null;
4707
+ mime?: string | null;
4708
+ ext?: string | null;
4709
+ createdAt: string | null;
4710
+ updatedAt: string | null;
4711
+ posts: Array<{
4712
+ postId: string;
4713
+ uploadId: string;
4714
+ createdAt: string | null;
4715
+ updatedAt: string | null;
4716
+ deletedAt?: string | null;
4717
+ }>;
4718
+ }>;
4719
+ /**
4720
+ * 400
4721
+ */
4722
+ 400: {
4723
+ message: string;
4724
+ issues?: Array<{
4725
+ message: string;
4726
+ path?: Array<(string | number)> | null;
4727
+ }> | null;
4728
+ };
4729
+ /**
4730
+ * 401
4731
+ */
4732
+ 401: {
4733
+ message: string;
4734
+ };
4735
+ /**
4736
+ * 403
4737
+ */
4738
+ 403: {
4739
+ message: string;
4740
+ };
4741
+ /**
4742
+ * 404
4743
+ */
4744
+ 404: {
4745
+ message: string;
4746
+ };
4747
+ /**
4748
+ * 429
4749
+ */
4750
+ 429: {
4751
+ message: string;
4752
+ };
4753
+ /**
4754
+ * 500
4755
+ */
4756
+ 500: {
4757
+ message: string;
4758
+ };
4759
+ };
4760
+ };
4761
+ post: {
4762
+ req: UploadCreateData;
4763
+ res: {
4764
+ /**
4765
+ * 200
4766
+ */
4767
+ 200: {
4768
+ id: string;
4769
+ teamId?: string | null;
4770
+ organizationId?: string | null;
4771
+ expiresAt?: string | null;
4772
+ iconUrl?: string | null;
4773
+ thumbnailUrl?: string | null;
4774
+ url?: string | null;
4775
+ iconPath?: string | null;
4776
+ thumbnailPath?: string | null;
4777
+ path?: string | null;
4778
+ type: 'image' | 'video';
4779
+ width?: number | null;
4780
+ height?: number | null;
4781
+ fileSize?: number | null;
4782
+ videoLength?: number | null;
4783
+ mime?: string | null;
4784
+ ext?: string | null;
4785
+ createdAt: string | null;
4786
+ updatedAt: string | null;
4787
+ };
4788
+ /**
4789
+ * 400
4790
+ */
4791
+ 400: {
4792
+ message: string;
4793
+ issues?: Array<{
4794
+ message: string;
4795
+ path?: Array<(string | number)> | null;
4796
+ }> | null;
4797
+ };
4798
+ /**
4799
+ * 401
4800
+ */
4801
+ 401: {
4802
+ message: string;
4803
+ };
4804
+ /**
4805
+ * 403
4806
+ */
4807
+ 403: {
4808
+ message: string;
4809
+ };
4810
+ /**
4811
+ * 404
4812
+ */
4813
+ 404: {
4814
+ message: string;
4815
+ };
4816
+ /**
4817
+ * 429
4818
+ */
4819
+ 429: {
4820
+ message: string;
4821
+ };
4822
+ /**
4823
+ * 500
4824
+ */
4825
+ 500: {
4826
+ message: string;
4827
+ };
4828
+ };
4829
+ };
4830
+ delete: {
4831
+ req: UploadDeleteManyData;
4173
4832
  res: {
4174
4833
  /**
4175
4834
  * 200
4176
4835
  */
4177
4836
  200: Array<{
4178
4837
  id: string;
4179
- teamId: string;
4838
+ teamId?: string | null;
4839
+ organizationId?: string | null;
4180
4840
  expiresAt?: string | null;
4181
4841
  iconUrl?: string | null;
4182
4842
  thumbnailUrl?: string | null;
@@ -4193,13 +4853,6 @@ type $OpenApiTs = {
4193
4853
  ext?: string | null;
4194
4854
  createdAt: string | null;
4195
4855
  updatedAt: string | null;
4196
- posts: Array<{
4197
- postId: string;
4198
- uploadId: string;
4199
- createdAt: string | null;
4200
- updatedAt: string | null;
4201
- deletedAt?: string | null;
4202
- }>;
4203
4856
  }>;
4204
4857
  /**
4205
4858
  * 400
@@ -4243,15 +4896,18 @@ type $OpenApiTs = {
4243
4896
  };
4244
4897
  };
4245
4898
  };
4246
- post: {
4247
- req: UploadCreateData;
4899
+ };
4900
+ '/api/v1/upload/{id}': {
4901
+ get: {
4902
+ req: UploadGetData;
4248
4903
  res: {
4249
4904
  /**
4250
4905
  * 200
4251
4906
  */
4252
4907
  200: {
4253
4908
  id: string;
4254
- teamId: string;
4909
+ teamId?: string | null;
4910
+ organizationId?: string | null;
4255
4911
  expiresAt?: string | null;
4256
4912
  iconUrl?: string | null;
4257
4913
  thumbnailUrl?: string | null;
@@ -4312,14 +4968,15 @@ type $OpenApiTs = {
4312
4968
  };
4313
4969
  };
4314
4970
  delete: {
4315
- req: UploadDeleteManyData;
4971
+ req: UploadDeleteData;
4316
4972
  res: {
4317
4973
  /**
4318
4974
  * 200
4319
4975
  */
4320
- 200: Array<{
4976
+ 200: {
4321
4977
  id: string;
4322
- teamId: string;
4978
+ teamId?: string | null;
4979
+ organizationId?: string | null;
4323
4980
  expiresAt?: string | null;
4324
4981
  iconUrl?: string | null;
4325
4982
  thumbnailUrl?: string | null;
@@ -4336,7 +4993,7 @@ type $OpenApiTs = {
4336
4993
  ext?: string | null;
4337
4994
  createdAt: string | null;
4338
4995
  updatedAt: string | null;
4339
- }>;
4996
+ };
4340
4997
  /**
4341
4998
  * 400
4342
4999
  */
@@ -4380,32 +5037,16 @@ type $OpenApiTs = {
4380
5037
  };
4381
5038
  };
4382
5039
  };
4383
- '/api/v1/upload/{id}': {
4384
- get: {
4385
- req: UploadGetData;
5040
+ '/api/v1/upload/init': {
5041
+ post: {
5042
+ req: UploadInitLargeUploadData;
4386
5043
  res: {
4387
5044
  /**
4388
5045
  * 200
4389
5046
  */
4390
5047
  200: {
4391
- id: string;
4392
- teamId: string;
4393
- expiresAt?: string | null;
4394
- iconUrl?: string | null;
4395
- thumbnailUrl?: string | null;
4396
- url?: string | null;
4397
- iconPath?: string | null;
4398
- thumbnailPath?: string | null;
4399
- path?: string | null;
4400
- type: 'image' | 'video';
4401
- width?: number | null;
4402
- height?: number | null;
4403
- fileSize?: number | null;
4404
- videoLength?: number | null;
4405
- mime?: string | null;
4406
- ext?: string | null;
4407
- createdAt: string | null;
4408
- updatedAt: string | null;
5048
+ url: string;
5049
+ path: string;
4409
5050
  };
4410
5051
  /**
4411
5052
  * 400
@@ -4449,15 +5090,18 @@ type $OpenApiTs = {
4449
5090
  };
4450
5091
  };
4451
5092
  };
4452
- delete: {
4453
- req: UploadDeleteData;
5093
+ };
5094
+ '/api/v1/upload/finalize': {
5095
+ post: {
5096
+ req: UploadFinalizeLargeUploadData;
4454
5097
  res: {
4455
5098
  /**
4456
5099
  * 200
4457
5100
  */
4458
5101
  200: {
4459
5102
  id: string;
4460
- teamId: string;
5103
+ teamId?: string | null;
5104
+ organizationId?: string | null;
4461
5105
  expiresAt?: string | null;
4462
5106
  iconUrl?: string | null;
4463
5107
  thumbnailUrl?: string | null;
@@ -4542,6 +5186,10 @@ type $OpenApiTs = {
4542
5186
  description?: string | null;
4543
5187
  boardName: string;
4544
5188
  uploadIds?: Array<(string)> | null;
5189
+ /**
5190
+ * The URL to image uploaded on bundle.social.
5191
+ */
5192
+ thumbnail?: string | null;
4545
5193
  /**
4546
5194
  * The URL to which the Pin will link to.
4547
5195
  */
@@ -4563,11 +5211,27 @@ type $OpenApiTs = {
4563
5211
  type?: 'POST' | 'REEL' | 'STORY';
4564
5212
  text?: string | null;
4565
5213
  uploadIds?: Array<(string)> | null;
5214
+ /**
5215
+ * The URL to image uploaded on bundle.social.
5216
+ */
5217
+ thumbnail?: string | null;
4566
5218
  } | null;
4567
5219
  INSTAGRAM?: {
4568
5220
  type?: 'POST' | 'REEL' | 'STORY';
4569
5221
  text?: string | null;
4570
5222
  uploadIds?: Array<(string)> | null;
5223
+ /**
5224
+ * Choose a frame of the published video as the cover photo in ms
5225
+ */
5226
+ thumbnailOffset?: number | null;
5227
+ /**
5228
+ * The URL to image uploaded on bundle.social.
5229
+ */
5230
+ thumbnail?: string | null;
5231
+ /**
5232
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
5233
+ */
5234
+ shareToFeed?: boolean | null;
4571
5235
  } | null;
4572
5236
  THREADS?: {
4573
5237
  text?: string | null;
@@ -4610,6 +5274,10 @@ type $OpenApiTs = {
4610
5274
  LINKEDIN?: {
4611
5275
  text: string;
4612
5276
  uploadIds?: Array<(string)> | null;
5277
+ /**
5278
+ * The URL to image uploaded on bundle.social.
5279
+ */
5280
+ thumbnail?: string | null;
4613
5281
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
4614
5282
  /**
4615
5283
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -4625,6 +5293,10 @@ type $OpenApiTs = {
4625
5293
  uploadIds?: Array<(string)> | null;
4626
5294
  text?: string | null;
4627
5295
  description?: string | null;
5296
+ /**
5297
+ * The URL to image uploaded on bundle.social.
5298
+ */
5299
+ thumbnail?: string | null;
4628
5300
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
4629
5301
  /**
4630
5302
  * Set to true if the video is made for kids.
@@ -4677,6 +5349,10 @@ type $OpenApiTs = {
4677
5349
  MASTODON?: {
4678
5350
  text?: string | null;
4679
5351
  uploadIds?: Array<(string)> | null;
5352
+ /**
5353
+ * The URL to image uploaded on bundle.social.
5354
+ */
5355
+ thumbnail?: string | null;
4680
5356
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
4681
5357
  spoiler?: string | null;
4682
5358
  } | null;
@@ -4704,16 +5380,19 @@ type $OpenApiTs = {
4704
5380
  PINTEREST?: {
4705
5381
  id?: string | null;
4706
5382
  permalink?: string | null;
5383
+ thumbnail?: string | null;
4707
5384
  } | null;
4708
5385
  FACEBOOK?: {
4709
5386
  id?: string | null;
4710
5387
  postId?: string | null;
4711
5388
  videoId?: string | null;
4712
5389
  permalink?: string | null;
5390
+ thumbnail?: string;
4713
5391
  } | null;
4714
5392
  INSTAGRAM?: {
4715
5393
  id?: string | null;
4716
5394
  permalink?: string | null;
5395
+ thumbnail?: string;
4717
5396
  } | null;
4718
5397
  TIKTOK?: {
4719
5398
  id?: string | null;
@@ -4723,6 +5402,7 @@ type $OpenApiTs = {
4723
5402
  id?: string | null;
4724
5403
  activity?: string | null;
4725
5404
  permalink?: string | null;
5405
+ thumbnail?: string;
4726
5406
  } | null;
4727
5407
  REDDIT?: {
4728
5408
  id?: string | null;
@@ -4742,10 +5422,12 @@ type $OpenApiTs = {
4742
5422
  YOUTUBE?: {
4743
5423
  id?: string | null;
4744
5424
  permalink?: string | null;
5425
+ thumbnail?: string | null;
4745
5426
  } | null;
4746
5427
  MASTODON?: {
4747
5428
  id?: string | null;
4748
5429
  permalink?: string | null;
5430
+ thumbnail?: string | null;
4749
5431
  } | null;
4750
5432
  THREADS?: {
4751
5433
  id?: string | null;
@@ -4763,7 +5445,8 @@ type $OpenApiTs = {
4763
5445
  deletedAt?: string | null;
4764
5446
  upload: {
4765
5447
  id: string;
4766
- teamId: string;
5448
+ teamId?: string | null;
5449
+ organizationId?: string | null;
4767
5450
  expiresAt?: string | null;
4768
5451
  iconUrl?: string | null;
4769
5452
  thumbnailUrl?: string | null;
@@ -4880,6 +5563,10 @@ type $OpenApiTs = {
4880
5563
  description?: string | null;
4881
5564
  boardName: string;
4882
5565
  uploadIds?: Array<(string)> | null;
5566
+ /**
5567
+ * The URL to image uploaded on bundle.social.
5568
+ */
5569
+ thumbnail?: string | null;
4883
5570
  /**
4884
5571
  * The URL to which the Pin will link to.
4885
5572
  */
@@ -4901,11 +5588,27 @@ type $OpenApiTs = {
4901
5588
  type?: 'POST' | 'REEL' | 'STORY';
4902
5589
  text?: string | null;
4903
5590
  uploadIds?: Array<(string)> | null;
5591
+ /**
5592
+ * The URL to image uploaded on bundle.social.
5593
+ */
5594
+ thumbnail?: string | null;
4904
5595
  } | null;
4905
5596
  INSTAGRAM?: {
4906
5597
  type?: 'POST' | 'REEL' | 'STORY';
4907
5598
  text?: string | null;
4908
5599
  uploadIds?: Array<(string)> | null;
5600
+ /**
5601
+ * Choose a frame of the published video as the cover photo in ms
5602
+ */
5603
+ thumbnailOffset?: number | null;
5604
+ /**
5605
+ * The URL to image uploaded on bundle.social.
5606
+ */
5607
+ thumbnail?: string | null;
5608
+ /**
5609
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
5610
+ */
5611
+ shareToFeed?: boolean | null;
4909
5612
  } | null;
4910
5613
  THREADS?: {
4911
5614
  text?: string | null;
@@ -4948,6 +5651,10 @@ type $OpenApiTs = {
4948
5651
  LINKEDIN?: {
4949
5652
  text: string;
4950
5653
  uploadIds?: Array<(string)> | null;
5654
+ /**
5655
+ * The URL to image uploaded on bundle.social.
5656
+ */
5657
+ thumbnail?: string | null;
4951
5658
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
4952
5659
  /**
4953
5660
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -4963,6 +5670,10 @@ type $OpenApiTs = {
4963
5670
  uploadIds?: Array<(string)> | null;
4964
5671
  text?: string | null;
4965
5672
  description?: string | null;
5673
+ /**
5674
+ * The URL to image uploaded on bundle.social.
5675
+ */
5676
+ thumbnail?: string | null;
4966
5677
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
4967
5678
  /**
4968
5679
  * Set to true if the video is made for kids.
@@ -5015,6 +5726,10 @@ type $OpenApiTs = {
5015
5726
  MASTODON?: {
5016
5727
  text?: string | null;
5017
5728
  uploadIds?: Array<(string)> | null;
5729
+ /**
5730
+ * The URL to image uploaded on bundle.social.
5731
+ */
5732
+ thumbnail?: string | null;
5018
5733
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
5019
5734
  spoiler?: string | null;
5020
5735
  } | null;
@@ -5042,16 +5757,19 @@ type $OpenApiTs = {
5042
5757
  PINTEREST?: {
5043
5758
  id?: string | null;
5044
5759
  permalink?: string | null;
5760
+ thumbnail?: string | null;
5045
5761
  } | null;
5046
5762
  FACEBOOK?: {
5047
5763
  id?: string | null;
5048
5764
  postId?: string | null;
5049
5765
  videoId?: string | null;
5050
5766
  permalink?: string | null;
5767
+ thumbnail?: string;
5051
5768
  } | null;
5052
5769
  INSTAGRAM?: {
5053
5770
  id?: string | null;
5054
5771
  permalink?: string | null;
5772
+ thumbnail?: string;
5055
5773
  } | null;
5056
5774
  TIKTOK?: {
5057
5775
  id?: string | null;
@@ -5061,6 +5779,7 @@ type $OpenApiTs = {
5061
5779
  id?: string | null;
5062
5780
  activity?: string | null;
5063
5781
  permalink?: string | null;
5782
+ thumbnail?: string;
5064
5783
  } | null;
5065
5784
  REDDIT?: {
5066
5785
  id?: string | null;
@@ -5080,10 +5799,12 @@ type $OpenApiTs = {
5080
5799
  YOUTUBE?: {
5081
5800
  id?: string | null;
5082
5801
  permalink?: string | null;
5802
+ thumbnail?: string | null;
5083
5803
  } | null;
5084
5804
  MASTODON?: {
5085
5805
  id?: string | null;
5086
5806
  permalink?: string | null;
5807
+ thumbnail?: string | null;
5087
5808
  } | null;
5088
5809
  THREADS?: {
5089
5810
  id?: string | null;
@@ -5159,6 +5880,10 @@ type $OpenApiTs = {
5159
5880
  description?: string | null;
5160
5881
  boardName: string;
5161
5882
  uploadIds?: Array<(string)> | null;
5883
+ /**
5884
+ * The URL to image uploaded on bundle.social.
5885
+ */
5886
+ thumbnail?: string | null;
5162
5887
  /**
5163
5888
  * The URL to which the Pin will link to.
5164
5889
  */
@@ -5180,11 +5905,27 @@ type $OpenApiTs = {
5180
5905
  type?: 'POST' | 'REEL' | 'STORY';
5181
5906
  text?: string | null;
5182
5907
  uploadIds?: Array<(string)> | null;
5908
+ /**
5909
+ * The URL to image uploaded on bundle.social.
5910
+ */
5911
+ thumbnail?: string | null;
5183
5912
  } | null;
5184
5913
  INSTAGRAM?: {
5185
5914
  type?: 'POST' | 'REEL' | 'STORY';
5186
5915
  text?: string | null;
5187
5916
  uploadIds?: Array<(string)> | null;
5917
+ /**
5918
+ * Choose a frame of the published video as the cover photo in ms
5919
+ */
5920
+ thumbnailOffset?: number | null;
5921
+ /**
5922
+ * The URL to image uploaded on bundle.social.
5923
+ */
5924
+ thumbnail?: string | null;
5925
+ /**
5926
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
5927
+ */
5928
+ shareToFeed?: boolean | null;
5188
5929
  } | null;
5189
5930
  THREADS?: {
5190
5931
  text?: string | null;
@@ -5227,6 +5968,10 @@ type $OpenApiTs = {
5227
5968
  LINKEDIN?: {
5228
5969
  text: string;
5229
5970
  uploadIds?: Array<(string)> | null;
5971
+ /**
5972
+ * The URL to image uploaded on bundle.social.
5973
+ */
5974
+ thumbnail?: string | null;
5230
5975
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
5231
5976
  /**
5232
5977
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -5242,6 +5987,10 @@ type $OpenApiTs = {
5242
5987
  uploadIds?: Array<(string)> | null;
5243
5988
  text?: string | null;
5244
5989
  description?: string | null;
5990
+ /**
5991
+ * The URL to image uploaded on bundle.social.
5992
+ */
5993
+ thumbnail?: string | null;
5245
5994
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
5246
5995
  /**
5247
5996
  * Set to true if the video is made for kids.
@@ -5294,6 +6043,10 @@ type $OpenApiTs = {
5294
6043
  MASTODON?: {
5295
6044
  text?: string | null;
5296
6045
  uploadIds?: Array<(string)> | null;
6046
+ /**
6047
+ * The URL to image uploaded on bundle.social.
6048
+ */
6049
+ thumbnail?: string | null;
5297
6050
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
5298
6051
  spoiler?: string | null;
5299
6052
  } | null;
@@ -5321,16 +6074,19 @@ type $OpenApiTs = {
5321
6074
  PINTEREST?: {
5322
6075
  id?: string | null;
5323
6076
  permalink?: string | null;
6077
+ thumbnail?: string | null;
5324
6078
  } | null;
5325
6079
  FACEBOOK?: {
5326
6080
  id?: string | null;
5327
6081
  postId?: string | null;
5328
6082
  videoId?: string | null;
5329
6083
  permalink?: string | null;
6084
+ thumbnail?: string;
5330
6085
  } | null;
5331
6086
  INSTAGRAM?: {
5332
6087
  id?: string | null;
5333
6088
  permalink?: string | null;
6089
+ thumbnail?: string;
5334
6090
  } | null;
5335
6091
  TIKTOK?: {
5336
6092
  id?: string | null;
@@ -5340,6 +6096,7 @@ type $OpenApiTs = {
5340
6096
  id?: string | null;
5341
6097
  activity?: string | null;
5342
6098
  permalink?: string | null;
6099
+ thumbnail?: string;
5343
6100
  } | null;
5344
6101
  REDDIT?: {
5345
6102
  id?: string | null;
@@ -5359,10 +6116,12 @@ type $OpenApiTs = {
5359
6116
  YOUTUBE?: {
5360
6117
  id?: string | null;
5361
6118
  permalink?: string | null;
6119
+ thumbnail?: string | null;
5362
6120
  } | null;
5363
6121
  MASTODON?: {
5364
6122
  id?: string | null;
5365
6123
  permalink?: string | null;
6124
+ thumbnail?: string | null;
5366
6125
  } | null;
5367
6126
  THREADS?: {
5368
6127
  id?: string | null;
@@ -5441,6 +6200,10 @@ type $OpenApiTs = {
5441
6200
  description?: string | null;
5442
6201
  boardName: string;
5443
6202
  uploadIds?: Array<(string)> | null;
6203
+ /**
6204
+ * The URL to image uploaded on bundle.social.
6205
+ */
6206
+ thumbnail?: string | null;
5444
6207
  /**
5445
6208
  * The URL to which the Pin will link to.
5446
6209
  */
@@ -5462,11 +6225,27 @@ type $OpenApiTs = {
5462
6225
  type?: 'POST' | 'REEL' | 'STORY';
5463
6226
  text?: string | null;
5464
6227
  uploadIds?: Array<(string)> | null;
6228
+ /**
6229
+ * The URL to image uploaded on bundle.social.
6230
+ */
6231
+ thumbnail?: string | null;
5465
6232
  } | null;
5466
6233
  INSTAGRAM?: {
5467
6234
  type?: 'POST' | 'REEL' | 'STORY';
5468
6235
  text?: string | null;
5469
6236
  uploadIds?: Array<(string)> | null;
6237
+ /**
6238
+ * Choose a frame of the published video as the cover photo in ms
6239
+ */
6240
+ thumbnailOffset?: number | null;
6241
+ /**
6242
+ * The URL to image uploaded on bundle.social.
6243
+ */
6244
+ thumbnail?: string | null;
6245
+ /**
6246
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
6247
+ */
6248
+ shareToFeed?: boolean | null;
5470
6249
  } | null;
5471
6250
  THREADS?: {
5472
6251
  text?: string | null;
@@ -5509,6 +6288,10 @@ type $OpenApiTs = {
5509
6288
  LINKEDIN?: {
5510
6289
  text: string;
5511
6290
  uploadIds?: Array<(string)> | null;
6291
+ /**
6292
+ * The URL to image uploaded on bundle.social.
6293
+ */
6294
+ thumbnail?: string | null;
5512
6295
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
5513
6296
  /**
5514
6297
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -5524,6 +6307,10 @@ type $OpenApiTs = {
5524
6307
  uploadIds?: Array<(string)> | null;
5525
6308
  text?: string | null;
5526
6309
  description?: string | null;
6310
+ /**
6311
+ * The URL to image uploaded on bundle.social.
6312
+ */
6313
+ thumbnail?: string | null;
5527
6314
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
5528
6315
  /**
5529
6316
  * Set to true if the video is made for kids.
@@ -5576,6 +6363,10 @@ type $OpenApiTs = {
5576
6363
  MASTODON?: {
5577
6364
  text?: string | null;
5578
6365
  uploadIds?: Array<(string)> | null;
6366
+ /**
6367
+ * The URL to image uploaded on bundle.social.
6368
+ */
6369
+ thumbnail?: string | null;
5579
6370
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
5580
6371
  spoiler?: string | null;
5581
6372
  } | null;
@@ -5603,16 +6394,19 @@ type $OpenApiTs = {
5603
6394
  PINTEREST?: {
5604
6395
  id?: string | null;
5605
6396
  permalink?: string | null;
6397
+ thumbnail?: string | null;
5606
6398
  } | null;
5607
6399
  FACEBOOK?: {
5608
6400
  id?: string | null;
5609
6401
  postId?: string | null;
5610
6402
  videoId?: string | null;
5611
6403
  permalink?: string | null;
6404
+ thumbnail?: string;
5612
6405
  } | null;
5613
6406
  INSTAGRAM?: {
5614
6407
  id?: string | null;
5615
6408
  permalink?: string | null;
6409
+ thumbnail?: string;
5616
6410
  } | null;
5617
6411
  TIKTOK?: {
5618
6412
  id?: string | null;
@@ -5622,6 +6416,7 @@ type $OpenApiTs = {
5622
6416
  id?: string | null;
5623
6417
  activity?: string | null;
5624
6418
  permalink?: string | null;
6419
+ thumbnail?: string;
5625
6420
  } | null;
5626
6421
  REDDIT?: {
5627
6422
  id?: string | null;
@@ -5641,10 +6436,12 @@ type $OpenApiTs = {
5641
6436
  YOUTUBE?: {
5642
6437
  id?: string | null;
5643
6438
  permalink?: string | null;
6439
+ thumbnail?: string | null;
5644
6440
  } | null;
5645
6441
  MASTODON?: {
5646
6442
  id?: string | null;
5647
6443
  permalink?: string | null;
6444
+ thumbnail?: string | null;
5648
6445
  } | null;
5649
6446
  THREADS?: {
5650
6447
  id?: string | null;
@@ -5662,7 +6459,8 @@ type $OpenApiTs = {
5662
6459
  deletedAt?: string | null;
5663
6460
  upload: {
5664
6461
  id: string;
5665
- teamId: string;
6462
+ teamId?: string | null;
6463
+ organizationId?: string | null;
5666
6464
  expiresAt?: string | null;
5667
6465
  iconUrl?: string | null;
5668
6466
  thumbnailUrl?: string | null;
@@ -5781,6 +6579,10 @@ type $OpenApiTs = {
5781
6579
  description?: string | null;
5782
6580
  boardName: string;
5783
6581
  uploadIds?: Array<(string)> | null;
6582
+ /**
6583
+ * The URL to image uploaded on bundle.social.
6584
+ */
6585
+ thumbnail?: string | null;
5784
6586
  /**
5785
6587
  * The URL to which the Pin will link to.
5786
6588
  */
@@ -5802,11 +6604,27 @@ type $OpenApiTs = {
5802
6604
  type?: 'POST' | 'REEL' | 'STORY';
5803
6605
  text?: string | null;
5804
6606
  uploadIds?: Array<(string)> | null;
6607
+ /**
6608
+ * The URL to image uploaded on bundle.social.
6609
+ */
6610
+ thumbnail?: string | null;
5805
6611
  } | null;
5806
6612
  INSTAGRAM?: {
5807
6613
  type?: 'POST' | 'REEL' | 'STORY';
5808
6614
  text?: string | null;
5809
6615
  uploadIds?: Array<(string)> | null;
6616
+ /**
6617
+ * Choose a frame of the published video as the cover photo in ms
6618
+ */
6619
+ thumbnailOffset?: number | null;
6620
+ /**
6621
+ * The URL to image uploaded on bundle.social.
6622
+ */
6623
+ thumbnail?: string | null;
6624
+ /**
6625
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
6626
+ */
6627
+ shareToFeed?: boolean | null;
5810
6628
  } | null;
5811
6629
  THREADS?: {
5812
6630
  text?: string | null;
@@ -5849,6 +6667,10 @@ type $OpenApiTs = {
5849
6667
  LINKEDIN?: {
5850
6668
  text: string;
5851
6669
  uploadIds?: Array<(string)> | null;
6670
+ /**
6671
+ * The URL to image uploaded on bundle.social.
6672
+ */
6673
+ thumbnail?: string | null;
5852
6674
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
5853
6675
  /**
5854
6676
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -5864,6 +6686,10 @@ type $OpenApiTs = {
5864
6686
  uploadIds?: Array<(string)> | null;
5865
6687
  text?: string | null;
5866
6688
  description?: string | null;
6689
+ /**
6690
+ * The URL to image uploaded on bundle.social.
6691
+ */
6692
+ thumbnail?: string | null;
5867
6693
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
5868
6694
  /**
5869
6695
  * Set to true if the video is made for kids.
@@ -5916,6 +6742,10 @@ type $OpenApiTs = {
5916
6742
  MASTODON?: {
5917
6743
  text?: string | null;
5918
6744
  uploadIds?: Array<(string)> | null;
6745
+ /**
6746
+ * The URL to image uploaded on bundle.social.
6747
+ */
6748
+ thumbnail?: string | null;
5919
6749
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
5920
6750
  spoiler?: string | null;
5921
6751
  } | null;
@@ -5943,16 +6773,19 @@ type $OpenApiTs = {
5943
6773
  PINTEREST?: {
5944
6774
  id?: string | null;
5945
6775
  permalink?: string | null;
6776
+ thumbnail?: string | null;
5946
6777
  } | null;
5947
6778
  FACEBOOK?: {
5948
6779
  id?: string | null;
5949
6780
  postId?: string | null;
5950
6781
  videoId?: string | null;
5951
6782
  permalink?: string | null;
6783
+ thumbnail?: string;
5952
6784
  } | null;
5953
6785
  INSTAGRAM?: {
5954
6786
  id?: string | null;
5955
6787
  permalink?: string | null;
6788
+ thumbnail?: string;
5956
6789
  } | null;
5957
6790
  TIKTOK?: {
5958
6791
  id?: string | null;
@@ -5962,6 +6795,7 @@ type $OpenApiTs = {
5962
6795
  id?: string | null;
5963
6796
  activity?: string | null;
5964
6797
  permalink?: string | null;
6798
+ thumbnail?: string;
5965
6799
  } | null;
5966
6800
  REDDIT?: {
5967
6801
  id?: string | null;
@@ -5981,10 +6815,12 @@ type $OpenApiTs = {
5981
6815
  YOUTUBE?: {
5982
6816
  id?: string | null;
5983
6817
  permalink?: string | null;
6818
+ thumbnail?: string | null;
5984
6819
  } | null;
5985
6820
  MASTODON?: {
5986
6821
  id?: string | null;
5987
6822
  permalink?: string | null;
6823
+ thumbnail?: string | null;
5988
6824
  } | null;
5989
6825
  THREADS?: {
5990
6826
  id?: string | null;
@@ -6256,6 +7092,10 @@ type $OpenApiTs = {
6256
7092
  description?: string | null;
6257
7093
  boardName: string;
6258
7094
  uploadIds?: Array<(string)> | null;
7095
+ /**
7096
+ * The URL to image uploaded on bundle.social.
7097
+ */
7098
+ thumbnail?: string | null;
6259
7099
  /**
6260
7100
  * The URL to which the Pin will link to.
6261
7101
  */
@@ -6277,11 +7117,27 @@ type $OpenApiTs = {
6277
7117
  type?: 'POST' | 'REEL' | 'STORY';
6278
7118
  text?: string | null;
6279
7119
  uploadIds?: Array<(string)> | null;
7120
+ /**
7121
+ * The URL to image uploaded on bundle.social.
7122
+ */
7123
+ thumbnail?: string | null;
6280
7124
  } | null;
6281
7125
  INSTAGRAM?: {
6282
7126
  type?: 'POST' | 'REEL' | 'STORY';
6283
7127
  text?: string | null;
6284
7128
  uploadIds?: Array<(string)> | null;
7129
+ /**
7130
+ * Choose a frame of the published video as the cover photo in ms
7131
+ */
7132
+ thumbnailOffset?: number | null;
7133
+ /**
7134
+ * The URL to image uploaded on bundle.social.
7135
+ */
7136
+ thumbnail?: string | null;
7137
+ /**
7138
+ * For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
7139
+ */
7140
+ shareToFeed?: boolean | null;
6285
7141
  } | null;
6286
7142
  THREADS?: {
6287
7143
  text?: string | null;
@@ -6324,6 +7180,10 @@ type $OpenApiTs = {
6324
7180
  LINKEDIN?: {
6325
7181
  text: string;
6326
7182
  uploadIds?: Array<(string)> | null;
7183
+ /**
7184
+ * The URL to image uploaded on bundle.social.
7185
+ */
7186
+ thumbnail?: string | null;
6327
7187
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
6328
7188
  /**
6329
7189
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -6339,6 +7199,10 @@ type $OpenApiTs = {
6339
7199
  uploadIds?: Array<(string)> | null;
6340
7200
  text?: string | null;
6341
7201
  description?: string | null;
7202
+ /**
7203
+ * The URL to image uploaded on bundle.social.
7204
+ */
7205
+ thumbnail?: string | null;
6342
7206
  privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
6343
7207
  /**
6344
7208
  * Set to true if the video is made for kids.
@@ -6391,6 +7255,10 @@ type $OpenApiTs = {
6391
7255
  MASTODON?: {
6392
7256
  text?: string | null;
6393
7257
  uploadIds?: Array<(string)> | null;
7258
+ /**
7259
+ * The URL to image uploaded on bundle.social.
7260
+ */
7261
+ thumbnail?: string | null;
6394
7262
  privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
6395
7263
  spoiler?: string | null;
6396
7264
  } | null;
@@ -6418,16 +7286,19 @@ type $OpenApiTs = {
6418
7286
  PINTEREST?: {
6419
7287
  id?: string | null;
6420
7288
  permalink?: string | null;
7289
+ thumbnail?: string | null;
6421
7290
  } | null;
6422
7291
  FACEBOOK?: {
6423
7292
  id?: string | null;
6424
7293
  postId?: string | null;
6425
7294
  videoId?: string | null;
6426
7295
  permalink?: string | null;
7296
+ thumbnail?: string;
6427
7297
  } | null;
6428
7298
  INSTAGRAM?: {
6429
7299
  id?: string | null;
6430
7300
  permalink?: string | null;
7301
+ thumbnail?: string;
6431
7302
  } | null;
6432
7303
  TIKTOK?: {
6433
7304
  id?: string | null;
@@ -6437,6 +7308,7 @@ type $OpenApiTs = {
6437
7308
  id?: string | null;
6438
7309
  activity?: string | null;
6439
7310
  permalink?: string | null;
7311
+ thumbnail?: string;
6440
7312
  } | null;
6441
7313
  REDDIT?: {
6442
7314
  id?: string | null;
@@ -6456,10 +7328,12 @@ type $OpenApiTs = {
6456
7328
  YOUTUBE?: {
6457
7329
  id?: string | null;
6458
7330
  permalink?: string | null;
7331
+ thumbnail?: string | null;
6459
7332
  } | null;
6460
7333
  MASTODON?: {
6461
7334
  id?: string | null;
6462
7335
  permalink?: string | null;
7336
+ thumbnail?: string | null;
6463
7337
  } | null;
6464
7338
  THREADS?: {
6465
7339
  id?: string | null;
@@ -6587,13 +7461,13 @@ type $OpenApiTs = {
6587
7461
  text?: string | null;
6588
7462
  } | null;
6589
7463
  LINKEDIN?: {
6590
- text: string;
7464
+ text?: string | null;
6591
7465
  } | null;
6592
7466
  YOUTUBE?: {
6593
7467
  text?: string | null;
6594
7468
  } | null;
6595
7469
  REDDIT?: {
6596
- text: string;
7470
+ text?: string | null;
6597
7471
  } | null;
6598
7472
  MASTODON?: {
6599
7473
  text?: string | null;
@@ -6736,13 +7610,13 @@ type $OpenApiTs = {
6736
7610
  text?: string | null;
6737
7611
  } | null;
6738
7612
  LINKEDIN?: {
6739
- text: string;
7613
+ text?: string | null;
6740
7614
  } | null;
6741
7615
  YOUTUBE?: {
6742
7616
  text?: string | null;
6743
7617
  } | null;
6744
7618
  REDDIT?: {
6745
- text: string;
7619
+ text?: string | null;
6746
7620
  } | null;
6747
7621
  MASTODON?: {
6748
7622
  text?: string | null;
@@ -6885,13 +7759,13 @@ type $OpenApiTs = {
6885
7759
  text?: string | null;
6886
7760
  } | null;
6887
7761
  LINKEDIN?: {
6888
- text: string;
7762
+ text?: string | null;
6889
7763
  } | null;
6890
7764
  YOUTUBE?: {
6891
7765
  text?: string | null;
6892
7766
  } | null;
6893
7767
  REDDIT?: {
6894
- text: string;
7768
+ text?: string | null;
6895
7769
  } | null;
6896
7770
  MASTODON?: {
6897
7771
  text?: string | null;
@@ -7037,13 +7911,13 @@ type $OpenApiTs = {
7037
7911
  text?: string | null;
7038
7912
  } | null;
7039
7913
  LINKEDIN?: {
7040
- text: string;
7914
+ text?: string | null;
7041
7915
  } | null;
7042
7916
  YOUTUBE?: {
7043
7917
  text?: string | null;
7044
7918
  } | null;
7045
7919
  REDDIT?: {
7046
- text: string;
7920
+ text?: string | null;
7047
7921
  } | null;
7048
7922
  MASTODON?: {
7049
7923
  text?: string | null;
@@ -7188,13 +8062,13 @@ type $OpenApiTs = {
7188
8062
  text?: string | null;
7189
8063
  } | null;
7190
8064
  LINKEDIN?: {
7191
- text: string;
8065
+ text?: string | null;
7192
8066
  } | null;
7193
8067
  YOUTUBE?: {
7194
8068
  text?: string | null;
7195
8069
  } | null;
7196
8070
  REDDIT?: {
7197
- text: string;
8071
+ text?: string | null;
7198
8072
  } | null;
7199
8073
  MASTODON?: {
7200
8074
  text?: string | null;
@@ -7416,6 +8290,14 @@ declare class SocialAccountService {
7416
8290
  * @throws ApiError
7417
8291
  */
7418
8292
  socialAccountCreatePortalLink(data?: SocialAccountCreatePortalLinkData): CancelablePromise<SocialAccountCreatePortalLinkResponse>;
8293
+ /**
8294
+ * Copy social accounts
8295
+ * @param data The data for the request.
8296
+ * @param data.requestBody Body
8297
+ * @returns unknown 200
8298
+ * @throws ApiError
8299
+ */
8300
+ socialAccountCopy(data?: SocialAccountCopyData): CancelablePromise<SocialAccountCopyResponse>;
7419
8301
  }
7420
8302
  declare class UploadService {
7421
8303
  readonly httpRequest: BaseHttpRequest;
@@ -7427,7 +8309,7 @@ declare class UploadService {
7427
8309
  * @returns unknown 200
7428
8310
  * @throws ApiError
7429
8311
  */
7430
- uploadGetList(data: UploadGetListData): CancelablePromise<UploadGetListResponse>;
8312
+ uploadGetList(data?: UploadGetListData): CancelablePromise<UploadGetListResponse>;
7431
8313
  /**
7432
8314
  * Create upload
7433
8315
  * Upload a file. This is the only endpoint that uses multipart/form-data.
@@ -7461,6 +8343,24 @@ declare class UploadService {
7461
8343
  * @throws ApiError
7462
8344
  */
7463
8345
  uploadDelete(data: UploadDeleteData): CancelablePromise<UploadDeleteResponse>;
8346
+ /**
8347
+ * Initialize large upload
8348
+ * Initialize large upload, you need to initialize a large upload if your file is larger than 90 MB.
8349
+ * @param data The data for the request.
8350
+ * @param data.requestBody Body
8351
+ * @returns unknown 200
8352
+ * @throws ApiError
8353
+ */
8354
+ uploadInitLargeUpload(data?: UploadInitLargeUploadData): CancelablePromise<UploadInitLargeUploadResponse>;
8355
+ /**
8356
+ * Finalize large upload
8357
+ * Finalize large upload.
8358
+ * @param data The data for the request.
8359
+ * @param data.requestBody Body
8360
+ * @returns unknown 200
8361
+ * @throws ApiError
8362
+ */
8363
+ uploadFinalizeLargeUpload(data?: UploadFinalizeLargeUploadData): CancelablePromise<UploadFinalizeLargeUploadResponse>;
7464
8364
  }
7465
8365
  declare class PostService {
7466
8366
  readonly httpRequest: BaseHttpRequest;
@@ -7657,4 +8557,4 @@ declare class Bundlesocial extends Client {
7657
8557
  constructor(apiKey: string, options?: OpenAPIConfig);
7658
8558
  }
7659
8559
 
7660
- export { $OpenApiTs, AnalyticsGetProfileAnalyticsData, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsData, AnalyticsGetProfilePostsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, OpenAPI, OpenAPIConfig, OrganizationGetOrganizationResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, WebhookEvent, WebhookEventType };
8560
+ export { $OpenApiTs, AnalyticsGetProfileAnalyticsData, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsData, AnalyticsGetProfilePostsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, OpenAPI, OpenAPIConfig, OrganizationGetOrganizationResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType };