bundlesocial 2.22.0 → 2.24.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.mts CHANGED
@@ -300,6 +300,7 @@ type TeamGetTeamResponse = {
300
300
  teamId: string;
301
301
  username?: string | null;
302
302
  displayName?: string | null;
303
+ avatarUrl?: string | null;
303
304
  externalId?: string | null;
304
305
  userUsername?: string | null;
305
306
  userDisplayName?: string | null;
@@ -308,6 +309,7 @@ type TeamGetTeamResponse = {
308
309
  id: string;
309
310
  name?: string | null;
310
311
  username?: string | null;
312
+ avatarUrl?: string | null;
311
313
  webhook?: {
312
314
  id?: string | null;
313
315
  name?: string | null;
@@ -462,6 +464,7 @@ type TeamGetListResponse = {
462
464
  teamId: string;
463
465
  username?: string | null;
464
466
  displayName?: string | null;
467
+ avatarUrl?: string | null;
465
468
  externalId?: string | null;
466
469
  userUsername?: string | null;
467
470
  userDisplayName?: string | null;
@@ -470,6 +473,7 @@ type TeamGetListResponse = {
470
473
  id: string;
471
474
  name?: string | null;
472
475
  username?: string | null;
476
+ avatarUrl?: string | null;
473
477
  webhook?: {
474
478
  id?: string | null;
475
479
  name?: string | null;
@@ -582,6 +586,7 @@ type SocialAccountDisconnectResponse = {
582
586
  teamId: string;
583
587
  username?: string | null;
584
588
  displayName?: string | null;
589
+ avatarUrl?: string | null;
585
590
  externalId?: string | null;
586
591
  userUsername?: string | null;
587
592
  userDisplayName?: string | null;
@@ -590,6 +595,7 @@ type SocialAccountDisconnectResponse = {
590
595
  id: string;
591
596
  name?: string | null;
592
597
  username?: string | null;
598
+ avatarUrl?: string | null;
593
599
  webhook?: {
594
600
  id?: string | null;
595
601
  name?: string | null;
@@ -619,6 +625,7 @@ type SocialAccountSetChannelResponse = {
619
625
  teamId: string;
620
626
  username?: string | null;
621
627
  displayName?: string | null;
628
+ avatarUrl?: string | null;
622
629
  externalId?: string | null;
623
630
  userUsername?: string | null;
624
631
  userDisplayName?: string | null;
@@ -627,6 +634,7 @@ type SocialAccountSetChannelResponse = {
627
634
  id: string;
628
635
  name?: string | null;
629
636
  username?: string | null;
637
+ avatarUrl?: string | null;
630
638
  webhook?: {
631
639
  id?: string | null;
632
640
  name?: string | null;
@@ -655,6 +663,7 @@ type SocialAccountRefreshChannelsResponse = {
655
663
  teamId: string;
656
664
  username?: string | null;
657
665
  displayName?: string | null;
666
+ avatarUrl?: string | null;
658
667
  externalId?: string | null;
659
668
  userUsername?: string | null;
660
669
  userDisplayName?: string | null;
@@ -663,6 +672,7 @@ type SocialAccountRefreshChannelsResponse = {
663
672
  id: string;
664
673
  name?: string | null;
665
674
  username?: string | null;
675
+ avatarUrl?: string | null;
666
676
  webhook?: {
667
677
  id?: string | null;
668
678
  name?: string | null;
@@ -693,6 +703,7 @@ type SocialAccountCreatePortalLinkData = {
693
703
  hideUserLogo?: boolean;
694
704
  hideUserName?: boolean;
695
705
  hideLanguageSwitcher?: boolean;
706
+ showModalOnConnectSuccess?: boolean;
696
707
  language?: 'en' | 'pl' | 'fr' | 'hi' | 'sv';
697
708
  };
698
709
  };
@@ -719,6 +730,7 @@ type SocialAccountCopyResponse = Array<{
719
730
  teamId: string;
720
731
  username?: string | null;
721
732
  displayName?: string | null;
733
+ avatarUrl?: string | null;
722
734
  externalId?: string | null;
723
735
  userUsername?: string | null;
724
736
  userDisplayName?: string | null;
@@ -727,6 +739,7 @@ type SocialAccountCopyResponse = Array<{
727
739
  id: string;
728
740
  name?: string | null;
729
741
  username?: string | null;
742
+ avatarUrl?: string | null;
730
743
  webhook?: {
731
744
  id?: string | null;
732
745
  name?: string | null;
@@ -743,7 +756,7 @@ type SocialAccountCopyResponse = Array<{
743
756
  type UploadGetListData = {
744
757
  status?: 'USED' | 'UNUSED' | null;
745
758
  teamId?: string | null;
746
- type?: 'image' | 'video' | null;
759
+ type?: 'image' | 'video' | 'document' | null;
747
760
  };
748
761
  type UploadGetListResponse = Array<{
749
762
  id: string;
@@ -756,7 +769,7 @@ type UploadGetListResponse = Array<{
756
769
  iconPath?: string | null;
757
770
  thumbnailPath?: string | null;
758
771
  path?: string | null;
759
- type: 'image' | 'video';
772
+ type: 'image' | 'video' | 'document';
760
773
  width?: number | null;
761
774
  height?: number | null;
762
775
  fileSize?: number | null;
@@ -793,7 +806,7 @@ type UploadCreateResponse = {
793
806
  iconPath?: string | null;
794
807
  thumbnailPath?: string | null;
795
808
  path?: string | null;
796
- type: 'image' | 'video';
809
+ type: 'image' | 'video' | 'document';
797
810
  width?: number | null;
798
811
  height?: number | null;
799
812
  fileSize?: number | null;
@@ -822,7 +835,7 @@ type UploadDeleteManyResponse = Array<{
822
835
  iconPath?: string | null;
823
836
  thumbnailPath?: string | null;
824
837
  path?: string | null;
825
- type: 'image' | 'video';
838
+ type: 'image' | 'video' | 'document';
826
839
  width?: number | null;
827
840
  height?: number | null;
828
841
  fileSize?: number | null;
@@ -846,7 +859,7 @@ type UploadGetResponse = {
846
859
  iconPath?: string | null;
847
860
  thumbnailPath?: string | null;
848
861
  path?: string | null;
849
- type: 'image' | 'video';
862
+ type: 'image' | 'video' | 'document';
850
863
  width?: number | null;
851
864
  height?: number | null;
852
865
  fileSize?: number | null;
@@ -877,7 +890,7 @@ type UploadDeleteResponse = {
877
890
  iconPath?: string | null;
878
891
  thumbnailPath?: string | null;
879
892
  path?: string | null;
880
- type: 'image' | 'video';
893
+ type: 'image' | 'video' | 'document';
881
894
  width?: number | null;
882
895
  height?: number | null;
883
896
  fileSize?: number | null;
@@ -894,7 +907,7 @@ type UploadInitLargeUploadData = {
894
907
  requestBody?: {
895
908
  teamId?: string | null;
896
909
  fileName: string;
897
- mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4';
910
+ mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4' | 'application/pdf';
898
911
  };
899
912
  };
900
913
  type UploadInitLargeUploadResponse = {
@@ -921,7 +934,7 @@ type UploadFinalizeLargeUploadResponse = {
921
934
  iconPath?: string | null;
922
935
  thumbnailPath?: string | null;
923
936
  path?: string | null;
924
- type: 'image' | 'video';
937
+ type: 'image' | 'video' | 'document';
925
938
  width?: number | null;
926
939
  height?: number | null;
927
940
  fileSize?: number | null;
@@ -1246,7 +1259,7 @@ type PostGetResponse = {
1246
1259
  iconPath?: string | null;
1247
1260
  thumbnailPath?: string | null;
1248
1261
  path?: string | null;
1249
- type: 'image' | 'video';
1262
+ type: 'image' | 'video' | 'document';
1250
1263
  width?: number | null;
1251
1264
  height?: number | null;
1252
1265
  fileSize?: number | null;
@@ -1269,6 +1282,7 @@ type PostGetResponse = {
1269
1282
  teamId: string;
1270
1283
  username?: string | null;
1271
1284
  displayName?: string | null;
1285
+ avatarUrl?: string | null;
1272
1286
  externalId?: string | null;
1273
1287
  userUsername?: string | null;
1274
1288
  userDisplayName?: string | null;
@@ -1277,6 +1291,7 @@ type PostGetResponse = {
1277
1291
  id: string;
1278
1292
  name?: string | null;
1279
1293
  username?: string | null;
1294
+ avatarUrl?: string | null;
1280
1295
  webhook?: {
1281
1296
  id?: string | null;
1282
1297
  name?: string | null;
@@ -2429,7 +2444,7 @@ type PostGetListResponse = {
2429
2444
  iconPath?: string | null;
2430
2445
  thumbnailPath?: string | null;
2431
2446
  path?: string | null;
2432
- type: 'image' | 'video';
2447
+ type: 'image' | 'video' | 'document';
2433
2448
  width?: number | null;
2434
2449
  height?: number | null;
2435
2450
  fileSize?: number | null;
@@ -2452,6 +2467,7 @@ type PostGetListResponse = {
2452
2467
  teamId: string;
2453
2468
  username?: string | null;
2454
2469
  displayName?: string | null;
2470
+ avatarUrl?: string | null;
2455
2471
  externalId?: string | null;
2456
2472
  userUsername?: string | null;
2457
2473
  userDisplayName?: string | null;
@@ -2460,6 +2476,7 @@ type PostGetListResponse = {
2460
2476
  id: string;
2461
2477
  name?: string | null;
2462
2478
  username?: string | null;
2479
+ avatarUrl?: string | null;
2463
2480
  webhook?: {
2464
2481
  id?: string | null;
2465
2482
  name?: string | null;
@@ -3003,6 +3020,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
3003
3020
  teamId: string;
3004
3021
  username?: string | null;
3005
3022
  displayName?: string | null;
3023
+ avatarUrl?: string | null;
3006
3024
  externalId?: string | null;
3007
3025
  userUsername?: string | null;
3008
3026
  userDisplayName?: string | null;
@@ -3011,6 +3029,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
3011
3029
  id: string;
3012
3030
  name?: string | null;
3013
3031
  username?: string | null;
3032
+ avatarUrl?: string | null;
3014
3033
  webhook?: {
3015
3034
  id?: string | null;
3016
3035
  name?: string | null;
@@ -3371,6 +3390,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
3371
3390
  teamId: string;
3372
3391
  username?: string | null;
3373
3392
  displayName?: string | null;
3393
+ avatarUrl?: string | null;
3374
3394
  externalId?: string | null;
3375
3395
  userUsername?: string | null;
3376
3396
  userDisplayName?: string | null;
@@ -3379,6 +3399,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
3379
3399
  id: string;
3380
3400
  name?: string | null;
3381
3401
  username?: string | null;
3402
+ avatarUrl?: string | null;
3382
3403
  webhook?: {
3383
3404
  id?: string | null;
3384
3405
  name?: string | null;
@@ -4347,7 +4368,7 @@ type CommentCreateResponse = {
4347
4368
  updatedAt: string | null;
4348
4369
  deletedAt?: string | null;
4349
4370
  };
4350
- type MiscSetThumbnailData = {
4371
+ type MiscYoutubeSetThumbnailData = {
4351
4372
  /**
4352
4373
  * Body
4353
4374
  */
@@ -4357,7 +4378,7 @@ type MiscSetThumbnailData = {
4357
4378
  postId: string;
4358
4379
  };
4359
4380
  };
4360
- type MiscSetThumbnailResponse = {
4381
+ type MiscYoutubeSetThumbnailResponse = {
4361
4382
  items?: Array<{
4362
4383
  default?: {
4363
4384
  url: string;
@@ -4386,11 +4407,11 @@ type MiscSetThumbnailResponse = {
4386
4407
  };
4387
4408
  }>;
4388
4409
  };
4389
- type MiscGetChannelPlaylistData = {
4410
+ type MiscYoutubeGetChannelPlaylistData = {
4390
4411
  maxResults?: number;
4391
4412
  teamId: string;
4392
4413
  };
4393
- type MiscGetChannelPlaylistResponse = {
4414
+ type MiscYoutubeGetChannelPlaylistResponse = {
4394
4415
  kind?: string;
4395
4416
  etag?: string;
4396
4417
  nextPageToken?: string;
@@ -4449,7 +4470,7 @@ type MiscGetChannelPlaylistResponse = {
4449
4470
  };
4450
4471
  }>;
4451
4472
  };
4452
- type MiscCreateNewChannelPlaylistData = {
4473
+ type MiscYoutubeCreateNewChannelPlaylistData = {
4453
4474
  /**
4454
4475
  * Body
4455
4476
  */
@@ -4466,7 +4487,7 @@ type MiscCreateNewChannelPlaylistData = {
4466
4487
  privacyStatus?: 'public' | 'unlisted' | 'private';
4467
4488
  };
4468
4489
  };
4469
- type MiscCreateNewChannelPlaylistResponse = {
4490
+ type MiscYoutubeCreateNewChannelPlaylistResponse = {
4470
4491
  kind?: string;
4471
4492
  etag?: string;
4472
4493
  id?: string;
@@ -4515,7 +4536,7 @@ type MiscCreateNewChannelPlaylistResponse = {
4515
4536
  itemCount?: number;
4516
4537
  };
4517
4538
  };
4518
- type MiscUpdateChannelPlaylistData = {
4539
+ type MiscYoutubeUpdateChannelPlaylistData = {
4519
4540
  /**
4520
4541
  * Body
4521
4542
  */
@@ -4533,7 +4554,7 @@ type MiscUpdateChannelPlaylistData = {
4533
4554
  playlistId: string;
4534
4555
  };
4535
4556
  };
4536
- type MiscUpdateChannelPlaylistResponse = {
4557
+ type MiscYoutubeUpdateChannelPlaylistResponse = {
4537
4558
  kind?: string;
4538
4559
  etag?: string;
4539
4560
  id?: string;
@@ -4582,12 +4603,12 @@ type MiscUpdateChannelPlaylistResponse = {
4582
4603
  itemCount?: number;
4583
4604
  };
4584
4605
  };
4585
- type MiscDeleteChannelPlaylistData = {
4606
+ type MiscYoutubeDeleteChannelPlaylistData = {
4586
4607
  playlistId: string;
4587
4608
  teamId: string;
4588
4609
  };
4589
- type MiscDeleteChannelPlaylistResponse = boolean;
4590
- type MiscAddVideoToPlaylistData = {
4610
+ type MiscYoutubeDeleteChannelPlaylistResponse = boolean;
4611
+ type MiscYoutubeAddVideoToPlaylistData = {
4591
4612
  /**
4592
4613
  * Body
4593
4614
  */
@@ -4598,7 +4619,7 @@ type MiscAddVideoToPlaylistData = {
4598
4619
  position?: number;
4599
4620
  };
4600
4621
  };
4601
- type MiscAddVideoToPlaylistResponse = {
4622
+ type MiscYoutubeAddVideoToPlaylistResponse = {
4602
4623
  kind?: string;
4603
4624
  etag?: string;
4604
4625
  id?: string;
@@ -4649,12 +4670,12 @@ type MiscAddVideoToPlaylistResponse = {
4649
4670
  videoPublishedAt?: string;
4650
4671
  };
4651
4672
  };
4652
- type MiscGetVideosFromPlaylistData = {
4673
+ type MiscYoutubeGetVideosFromPlaylistData = {
4653
4674
  maxResults?: number;
4654
4675
  playlistId: string;
4655
4676
  teamId: string;
4656
4677
  };
4657
- type MiscGetVideosFromPlaylistResponse = {
4678
+ type MiscYoutubeGetVideosFromPlaylistResponse = {
4658
4679
  kind?: string;
4659
4680
  etag?: string;
4660
4681
  nextPageToken?: string;
@@ -4715,14 +4736,50 @@ type MiscGetVideosFromPlaylistResponse = {
4715
4736
  };
4716
4737
  }>;
4717
4738
  };
4718
- type MiscDeleteVideoFromPlaylistData = {
4739
+ type MiscYoutubeDeleteVideoFromPlaylistData = {
4719
4740
  /**
4720
4741
  * Playlist item ID (not video ID)
4721
4742
  */
4722
4743
  playlistItemId: string;
4723
4744
  teamId: string;
4724
4745
  };
4725
- type MiscDeleteVideoFromPlaylistResponse = boolean;
4746
+ type MiscYoutubeDeleteVideoFromPlaylistResponse = boolean;
4747
+ type MiscLinkedinGetTagsData = {
4748
+ q: string;
4749
+ scope?: 'people' | 'organizations' | 'all';
4750
+ teamId: string;
4751
+ };
4752
+ type MiscLinkedinGetTagsResponse = {
4753
+ people?: Array<{
4754
+ kind: 'person';
4755
+ urn: string;
4756
+ display: string;
4757
+ headline?: string;
4758
+ photoUrl?: string;
4759
+ }>;
4760
+ organizations?: Array<{
4761
+ kind: 'organization';
4762
+ urn: string;
4763
+ display: string;
4764
+ vanityName?: string;
4765
+ logoUrl?: string;
4766
+ }>;
4767
+ };
4768
+ type MiscLinkedinBuildCommentaryData = {
4769
+ /**
4770
+ * Body
4771
+ */
4772
+ requestBody?: {
4773
+ text?: string;
4774
+ tags?: Array<{
4775
+ display: string;
4776
+ urn: string;
4777
+ }>;
4778
+ };
4779
+ };
4780
+ type MiscLinkedinBuildCommentaryResponse = {
4781
+ commentary: string;
4782
+ };
4726
4783
  type $OpenApiTs = {
4727
4784
  '/api/v1/': {
4728
4785
  get: {
@@ -5055,6 +5112,7 @@ type $OpenApiTs = {
5055
5112
  teamId: string;
5056
5113
  username?: string | null;
5057
5114
  displayName?: string | null;
5115
+ avatarUrl?: string | null;
5058
5116
  externalId?: string | null;
5059
5117
  userUsername?: string | null;
5060
5118
  userDisplayName?: string | null;
@@ -5063,6 +5121,7 @@ type $OpenApiTs = {
5063
5121
  id: string;
5064
5122
  name?: string | null;
5065
5123
  username?: string | null;
5124
+ avatarUrl?: string | null;
5066
5125
  webhook?: {
5067
5126
  id?: string | null;
5068
5127
  name?: string | null;
@@ -5346,6 +5405,7 @@ type $OpenApiTs = {
5346
5405
  teamId: string;
5347
5406
  username?: string | null;
5348
5407
  displayName?: string | null;
5408
+ avatarUrl?: string | null;
5349
5409
  externalId?: string | null;
5350
5410
  userUsername?: string | null;
5351
5411
  userDisplayName?: string | null;
@@ -5354,6 +5414,7 @@ type $OpenApiTs = {
5354
5414
  id: string;
5355
5415
  name?: string | null;
5356
5416
  username?: string | null;
5417
+ avatarUrl?: string | null;
5357
5418
  webhook?: {
5358
5419
  id?: string | null;
5359
5420
  name?: string | null;
@@ -5577,6 +5638,7 @@ type $OpenApiTs = {
5577
5638
  teamId: string;
5578
5639
  username?: string | null;
5579
5640
  displayName?: string | null;
5641
+ avatarUrl?: string | null;
5580
5642
  externalId?: string | null;
5581
5643
  userUsername?: string | null;
5582
5644
  userDisplayName?: string | null;
@@ -5585,6 +5647,7 @@ type $OpenApiTs = {
5585
5647
  id: string;
5586
5648
  name?: string | null;
5587
5649
  username?: string | null;
5650
+ avatarUrl?: string | null;
5588
5651
  webhook?: {
5589
5652
  id?: string | null;
5590
5653
  name?: string | null;
@@ -5654,6 +5717,7 @@ type $OpenApiTs = {
5654
5717
  teamId: string;
5655
5718
  username?: string | null;
5656
5719
  displayName?: string | null;
5720
+ avatarUrl?: string | null;
5657
5721
  externalId?: string | null;
5658
5722
  userUsername?: string | null;
5659
5723
  userDisplayName?: string | null;
@@ -5662,6 +5726,7 @@ type $OpenApiTs = {
5662
5726
  id: string;
5663
5727
  name?: string | null;
5664
5728
  username?: string | null;
5729
+ avatarUrl?: string | null;
5665
5730
  webhook?: {
5666
5731
  id?: string | null;
5667
5732
  name?: string | null;
@@ -5731,6 +5796,7 @@ type $OpenApiTs = {
5731
5796
  teamId: string;
5732
5797
  username?: string | null;
5733
5798
  displayName?: string | null;
5799
+ avatarUrl?: string | null;
5734
5800
  externalId?: string | null;
5735
5801
  userUsername?: string | null;
5736
5802
  userDisplayName?: string | null;
@@ -5739,6 +5805,7 @@ type $OpenApiTs = {
5739
5805
  id: string;
5740
5806
  name?: string | null;
5741
5807
  username?: string | null;
5808
+ avatarUrl?: string | null;
5742
5809
  webhook?: {
5743
5810
  id?: string | null;
5744
5811
  name?: string | null;
@@ -5861,6 +5928,7 @@ type $OpenApiTs = {
5861
5928
  teamId: string;
5862
5929
  username?: string | null;
5863
5930
  displayName?: string | null;
5931
+ avatarUrl?: string | null;
5864
5932
  externalId?: string | null;
5865
5933
  userUsername?: string | null;
5866
5934
  userDisplayName?: string | null;
@@ -5869,6 +5937,7 @@ type $OpenApiTs = {
5869
5937
  id: string;
5870
5938
  name?: string | null;
5871
5939
  username?: string | null;
5940
+ avatarUrl?: string | null;
5872
5941
  webhook?: {
5873
5942
  id?: string | null;
5874
5943
  name?: string | null;
@@ -5943,7 +6012,7 @@ type $OpenApiTs = {
5943
6012
  iconPath?: string | null;
5944
6013
  thumbnailPath?: string | null;
5945
6014
  path?: string | null;
5946
- type: 'image' | 'video';
6015
+ type: 'image' | 'video' | 'document';
5947
6016
  width?: number | null;
5948
6017
  height?: number | null;
5949
6018
  fileSize?: number | null;
@@ -6019,7 +6088,7 @@ type $OpenApiTs = {
6019
6088
  iconPath?: string | null;
6020
6089
  thumbnailPath?: string | null;
6021
6090
  path?: string | null;
6022
- type: 'image' | 'video';
6091
+ type: 'image' | 'video' | 'document';
6023
6092
  width?: number | null;
6024
6093
  height?: number | null;
6025
6094
  fileSize?: number | null;
@@ -6088,7 +6157,7 @@ type $OpenApiTs = {
6088
6157
  iconPath?: string | null;
6089
6158
  thumbnailPath?: string | null;
6090
6159
  path?: string | null;
6091
- type: 'image' | 'video';
6160
+ type: 'image' | 'video' | 'document';
6092
6161
  width?: number | null;
6093
6162
  height?: number | null;
6094
6163
  fileSize?: number | null;
@@ -6159,7 +6228,7 @@ type $OpenApiTs = {
6159
6228
  iconPath?: string | null;
6160
6229
  thumbnailPath?: string | null;
6161
6230
  path?: string | null;
6162
- type: 'image' | 'video';
6231
+ type: 'image' | 'video' | 'document';
6163
6232
  width?: number | null;
6164
6233
  height?: number | null;
6165
6234
  fileSize?: number | null;
@@ -6235,7 +6304,7 @@ type $OpenApiTs = {
6235
6304
  iconPath?: string | null;
6236
6305
  thumbnailPath?: string | null;
6237
6306
  path?: string | null;
6238
- type: 'image' | 'video';
6307
+ type: 'image' | 'video' | 'document';
6239
6308
  width?: number | null;
6240
6309
  height?: number | null;
6241
6310
  fileSize?: number | null;
@@ -6360,7 +6429,7 @@ type $OpenApiTs = {
6360
6429
  iconPath?: string | null;
6361
6430
  thumbnailPath?: string | null;
6362
6431
  path?: string | null;
6363
- type: 'image' | 'video';
6432
+ type: 'image' | 'video' | 'document';
6364
6433
  width?: number | null;
6365
6434
  height?: number | null;
6366
6435
  fileSize?: number | null;
@@ -6732,7 +6801,7 @@ type $OpenApiTs = {
6732
6801
  iconPath?: string | null;
6733
6802
  thumbnailPath?: string | null;
6734
6803
  path?: string | null;
6735
- type: 'image' | 'video';
6804
+ type: 'image' | 'video' | 'document';
6736
6805
  width?: number | null;
6737
6806
  height?: number | null;
6738
6807
  fileSize?: number | null;
@@ -6755,6 +6824,7 @@ type $OpenApiTs = {
6755
6824
  teamId: string;
6756
6825
  username?: string | null;
6757
6826
  displayName?: string | null;
6827
+ avatarUrl?: string | null;
6758
6828
  externalId?: string | null;
6759
6829
  userUsername?: string | null;
6760
6830
  userDisplayName?: string | null;
@@ -6763,6 +6833,7 @@ type $OpenApiTs = {
6763
6833
  id: string;
6764
6834
  name?: string | null;
6765
6835
  username?: string | null;
6836
+ avatarUrl?: string | null;
6766
6837
  webhook?: {
6767
6838
  id?: string | null;
6768
6839
  name?: string | null;
@@ -7829,7 +7900,7 @@ type $OpenApiTs = {
7829
7900
  iconPath?: string | null;
7830
7901
  thumbnailPath?: string | null;
7831
7902
  path?: string | null;
7832
- type: 'image' | 'video';
7903
+ type: 'image' | 'video' | 'document';
7833
7904
  width?: number | null;
7834
7905
  height?: number | null;
7835
7906
  fileSize?: number | null;
@@ -7852,6 +7923,7 @@ type $OpenApiTs = {
7852
7923
  teamId: string;
7853
7924
  username?: string | null;
7854
7925
  displayName?: string | null;
7926
+ avatarUrl?: string | null;
7855
7927
  externalId?: string | null;
7856
7928
  userUsername?: string | null;
7857
7929
  userDisplayName?: string | null;
@@ -7860,6 +7932,7 @@ type $OpenApiTs = {
7860
7932
  id: string;
7861
7933
  name?: string | null;
7862
7934
  username?: string | null;
7935
+ avatarUrl?: string | null;
7863
7936
  webhook?: {
7864
7937
  id?: string | null;
7865
7938
  name?: string | null;
@@ -8278,6 +8351,7 @@ type $OpenApiTs = {
8278
8351
  teamId: string;
8279
8352
  username?: string | null;
8280
8353
  displayName?: string | null;
8354
+ avatarUrl?: string | null;
8281
8355
  externalId?: string | null;
8282
8356
  userUsername?: string | null;
8283
8357
  userDisplayName?: string | null;
@@ -8286,6 +8360,7 @@ type $OpenApiTs = {
8286
8360
  id: string;
8287
8361
  name?: string | null;
8288
8362
  username?: string | null;
8363
+ avatarUrl?: string | null;
8289
8364
  webhook?: {
8290
8365
  id?: string | null;
8291
8366
  name?: string | null;
@@ -8738,6 +8813,7 @@ type $OpenApiTs = {
8738
8813
  teamId: string;
8739
8814
  username?: string | null;
8740
8815
  displayName?: string | null;
8816
+ avatarUrl?: string | null;
8741
8817
  externalId?: string | null;
8742
8818
  userUsername?: string | null;
8743
8819
  userDisplayName?: string | null;
@@ -8746,6 +8822,7 @@ type $OpenApiTs = {
8746
8822
  id: string;
8747
8823
  name?: string | null;
8748
8824
  username?: string | null;
8825
+ avatarUrl?: string | null;
8749
8826
  webhook?: {
8750
8827
  id?: string | null;
8751
8828
  name?: string | null;
@@ -10230,7 +10307,7 @@ type $OpenApiTs = {
10230
10307
  };
10231
10308
  '/api/v1/misc/youtube/thumbnail': {
10232
10309
  post: {
10233
- req: MiscSetThumbnailData;
10310
+ req: MiscYoutubeSetThumbnailData;
10234
10311
  res: {
10235
10312
  /**
10236
10313
  * 200
@@ -10309,7 +10386,7 @@ type $OpenApiTs = {
10309
10386
  };
10310
10387
  '/api/v1/misc/youtube/playlist': {
10311
10388
  get: {
10312
- req: MiscGetChannelPlaylistData;
10389
+ req: MiscYoutubeGetChannelPlaylistData;
10313
10390
  res: {
10314
10391
  /**
10315
10392
  * 200
@@ -10416,7 +10493,7 @@ type $OpenApiTs = {
10416
10493
  };
10417
10494
  };
10418
10495
  post: {
10419
- req: MiscCreateNewChannelPlaylistData;
10496
+ req: MiscYoutubeCreateNewChannelPlaylistData;
10420
10497
  res: {
10421
10498
  /**
10422
10499
  * 200
@@ -10513,7 +10590,7 @@ type $OpenApiTs = {
10513
10590
  };
10514
10591
  };
10515
10592
  put: {
10516
- req: MiscUpdateChannelPlaylistData;
10593
+ req: MiscYoutubeUpdateChannelPlaylistData;
10517
10594
  res: {
10518
10595
  /**
10519
10596
  * 200
@@ -10612,7 +10689,7 @@ type $OpenApiTs = {
10612
10689
  };
10613
10690
  '/api/v1/misc/youtube/playlist/{playlistId}': {
10614
10691
  delete: {
10615
- req: MiscDeleteChannelPlaylistData;
10692
+ req: MiscYoutubeDeleteChannelPlaylistData;
10616
10693
  res: {
10617
10694
  /**
10618
10695
  * 200
@@ -10663,7 +10740,7 @@ type $OpenApiTs = {
10663
10740
  };
10664
10741
  '/api/v1/misc/youtube/playlist-items': {
10665
10742
  post: {
10666
- req: MiscAddVideoToPlaylistData;
10743
+ req: MiscYoutubeAddVideoToPlaylistData;
10667
10744
  res: {
10668
10745
  /**
10669
10746
  * 200
@@ -10762,7 +10839,7 @@ type $OpenApiTs = {
10762
10839
  };
10763
10840
  };
10764
10841
  get: {
10765
- req: MiscGetVideosFromPlaylistData;
10842
+ req: MiscYoutubeGetVideosFromPlaylistData;
10766
10843
  res: {
10767
10844
  /**
10768
10845
  * 200
@@ -10873,7 +10950,7 @@ type $OpenApiTs = {
10873
10950
  };
10874
10951
  '/api/v1/misc/youtube/playlist-items/{playlistItemId}': {
10875
10952
  delete: {
10876
- req: MiscDeleteVideoFromPlaylistData;
10953
+ req: MiscYoutubeDeleteVideoFromPlaylistData;
10877
10954
  res: {
10878
10955
  /**
10879
10956
  * 200
@@ -10922,6 +10999,125 @@ type $OpenApiTs = {
10922
10999
  };
10923
11000
  };
10924
11001
  };
11002
+ '/api/v1/misc/linkedin/mentions/tags': {
11003
+ get: {
11004
+ req: MiscLinkedinGetTagsData;
11005
+ res: {
11006
+ /**
11007
+ * 200
11008
+ */
11009
+ 200: {
11010
+ people?: Array<{
11011
+ kind: 'person';
11012
+ urn: string;
11013
+ display: string;
11014
+ headline?: string;
11015
+ photoUrl?: string;
11016
+ }>;
11017
+ organizations?: Array<{
11018
+ kind: 'organization';
11019
+ urn: string;
11020
+ display: string;
11021
+ vanityName?: string;
11022
+ logoUrl?: string;
11023
+ }>;
11024
+ };
11025
+ /**
11026
+ * 400
11027
+ */
11028
+ 400: {
11029
+ message: string;
11030
+ issues?: Array<{
11031
+ message: string;
11032
+ path?: Array<(string | number)> | null;
11033
+ }> | null;
11034
+ };
11035
+ /**
11036
+ * 401
11037
+ */
11038
+ 401: {
11039
+ message: string;
11040
+ };
11041
+ /**
11042
+ * 403
11043
+ */
11044
+ 403: {
11045
+ message: string;
11046
+ };
11047
+ /**
11048
+ * 404
11049
+ */
11050
+ 404: {
11051
+ message: string;
11052
+ };
11053
+ /**
11054
+ * 429
11055
+ */
11056
+ 429: {
11057
+ message: string;
11058
+ };
11059
+ /**
11060
+ * 500
11061
+ */
11062
+ 500: {
11063
+ message: string;
11064
+ };
11065
+ };
11066
+ };
11067
+ };
11068
+ '/api/v1/misc/linkedin/mentions/builder': {
11069
+ post: {
11070
+ req: MiscLinkedinBuildCommentaryData;
11071
+ res: {
11072
+ /**
11073
+ * 200
11074
+ */
11075
+ 200: {
11076
+ commentary: string;
11077
+ };
11078
+ /**
11079
+ * 400
11080
+ */
11081
+ 400: {
11082
+ message: string;
11083
+ issues?: Array<{
11084
+ message: string;
11085
+ path?: Array<(string | number)> | null;
11086
+ }> | null;
11087
+ };
11088
+ /**
11089
+ * 401
11090
+ */
11091
+ 401: {
11092
+ message: string;
11093
+ };
11094
+ /**
11095
+ * 403
11096
+ */
11097
+ 403: {
11098
+ message: string;
11099
+ };
11100
+ /**
11101
+ * 404
11102
+ */
11103
+ 404: {
11104
+ message: string;
11105
+ };
11106
+ /**
11107
+ * 429
11108
+ */
11109
+ 429: {
11110
+ message: string;
11111
+ };
11112
+ /**
11113
+ * 500
11114
+ */
11115
+ 500: {
11116
+ message: string;
11117
+ };
11118
+ };
11119
+ };
11120
+ };
10925
11121
  };
10926
11122
 
10927
11123
  declare class AppService {
@@ -11313,7 +11509,99 @@ declare class MiscService {
11313
11509
  * @returns unknown 200
11314
11510
  * @throws ApiError
11315
11511
  */
11316
- miscSetThumbnail(data?: MiscSetThumbnailData): CancelablePromise<MiscSetThumbnailResponse>;
11512
+ miscYoutubeSetThumbnail(data?: MiscYoutubeSetThumbnailData): CancelablePromise<MiscYoutubeSetThumbnailResponse>;
11513
+ /**
11514
+ * Get channel playlists
11515
+ * @param data The data for the request.
11516
+ * @param data.teamId
11517
+ * @param data.maxResults
11518
+ * @returns unknown 200
11519
+ * @throws ApiError
11520
+ */
11521
+ miscYoutubeGetChannelPlaylist(data: MiscYoutubeGetChannelPlaylistData): CancelablePromise<MiscYoutubeGetChannelPlaylistResponse>;
11522
+ /**
11523
+ * Create a new playlist
11524
+ * @param data The data for the request.
11525
+ * @param data.requestBody Body
11526
+ * @returns unknown 200
11527
+ * @throws ApiError
11528
+ */
11529
+ miscYoutubeCreateNewChannelPlaylist(data?: MiscYoutubeCreateNewChannelPlaylistData): CancelablePromise<MiscYoutubeCreateNewChannelPlaylistResponse>;
11530
+ /**
11531
+ * Update an existing playlist
11532
+ * @param data The data for the request.
11533
+ * @param data.requestBody Body
11534
+ * @returns unknown 200
11535
+ * @throws ApiError
11536
+ */
11537
+ miscYoutubeUpdateChannelPlaylist(data?: MiscYoutubeUpdateChannelPlaylistData): CancelablePromise<MiscYoutubeUpdateChannelPlaylistResponse>;
11538
+ /**
11539
+ * Remove a video from a playlist
11540
+ * @param data The data for the request.
11541
+ * @param data.playlistId
11542
+ * @param data.teamId
11543
+ * @returns boolean 200
11544
+ * @throws ApiError
11545
+ */
11546
+ miscYoutubeDeleteChannelPlaylist(data: MiscYoutubeDeleteChannelPlaylistData): CancelablePromise<MiscYoutubeDeleteChannelPlaylistResponse>;
11547
+ /**
11548
+ * Add a video to a playlist
11549
+ * @param data The data for the request.
11550
+ * @param data.requestBody Body
11551
+ * @returns unknown 200
11552
+ * @throws ApiError
11553
+ */
11554
+ miscYoutubeAddVideoToPlaylist(data?: MiscYoutubeAddVideoToPlaylistData): CancelablePromise<MiscYoutubeAddVideoToPlaylistResponse>;
11555
+ /**
11556
+ * Get videos from a playlist
11557
+ * @param data The data for the request.
11558
+ * @param data.teamId
11559
+ * @param data.playlistId
11560
+ * @param data.maxResults
11561
+ * @returns unknown 200
11562
+ * @throws ApiError
11563
+ */
11564
+ miscYoutubeGetVideosFromPlaylist(data: MiscYoutubeGetVideosFromPlaylistData): CancelablePromise<MiscYoutubeGetVideosFromPlaylistResponse>;
11565
+ /**
11566
+ * Remove a video from a playlist
11567
+ * @param data The data for the request.
11568
+ * @param data.playlistItemId Playlist item ID (not video ID)
11569
+ * @param data.teamId
11570
+ * @returns boolean 200
11571
+ * @throws ApiError
11572
+ */
11573
+ miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
11574
+ /**
11575
+ * Get LinkedIn mentionable tags (people & organizations)
11576
+ * @param data The data for the request.
11577
+ * @param data.teamId
11578
+ * @param data.q
11579
+ * @param data.scope
11580
+ * @returns unknown 200
11581
+ * @throws ApiError
11582
+ */
11583
+ miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
11584
+ /**
11585
+ * Build LinkedIn text and insert mentions at /#tag\b/gi.
11586
+ * If `#tag` (case-insensitive) is present, mentions replace it; otherwise they’re appended to the end.
11587
+ * @param data The data for the request.
11588
+ * @param data.requestBody Body
11589
+ * @returns unknown 200
11590
+ * @throws ApiError
11591
+ */
11592
+ miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
11593
+ }
11594
+ declare class YoutubeService {
11595
+ readonly httpRequest: BaseHttpRequest;
11596
+ constructor(httpRequest: BaseHttpRequest);
11597
+ /**
11598
+ * Set or change thumbnail for a YouTube video
11599
+ * @param data The data for the request.
11600
+ * @param data.requestBody Body
11601
+ * @returns unknown 200
11602
+ * @throws ApiError
11603
+ */
11604
+ miscYoutubeSetThumbnail(data?: MiscYoutubeSetThumbnailData): CancelablePromise<MiscYoutubeSetThumbnailResponse>;
11317
11605
  /**
11318
11606
  * Get channel playlists
11319
11607
  * @param data The data for the request.
@@ -11322,7 +11610,7 @@ declare class MiscService {
11322
11610
  * @returns unknown 200
11323
11611
  * @throws ApiError
11324
11612
  */
11325
- miscGetChannelPlaylist(data: MiscGetChannelPlaylistData): CancelablePromise<MiscGetChannelPlaylistResponse>;
11613
+ miscYoutubeGetChannelPlaylist(data: MiscYoutubeGetChannelPlaylistData): CancelablePromise<MiscYoutubeGetChannelPlaylistResponse>;
11326
11614
  /**
11327
11615
  * Create a new playlist
11328
11616
  * @param data The data for the request.
@@ -11330,7 +11618,7 @@ declare class MiscService {
11330
11618
  * @returns unknown 200
11331
11619
  * @throws ApiError
11332
11620
  */
11333
- miscCreateNewChannelPlaylist(data?: MiscCreateNewChannelPlaylistData): CancelablePromise<MiscCreateNewChannelPlaylistResponse>;
11621
+ miscYoutubeCreateNewChannelPlaylist(data?: MiscYoutubeCreateNewChannelPlaylistData): CancelablePromise<MiscYoutubeCreateNewChannelPlaylistResponse>;
11334
11622
  /**
11335
11623
  * Update an existing playlist
11336
11624
  * @param data The data for the request.
@@ -11338,7 +11626,7 @@ declare class MiscService {
11338
11626
  * @returns unknown 200
11339
11627
  * @throws ApiError
11340
11628
  */
11341
- miscUpdateChannelPlaylist(data?: MiscUpdateChannelPlaylistData): CancelablePromise<MiscUpdateChannelPlaylistResponse>;
11629
+ miscYoutubeUpdateChannelPlaylist(data?: MiscYoutubeUpdateChannelPlaylistData): CancelablePromise<MiscYoutubeUpdateChannelPlaylistResponse>;
11342
11630
  /**
11343
11631
  * Remove a video from a playlist
11344
11632
  * @param data The data for the request.
@@ -11347,7 +11635,7 @@ declare class MiscService {
11347
11635
  * @returns boolean 200
11348
11636
  * @throws ApiError
11349
11637
  */
11350
- miscDeleteChannelPlaylist(data: MiscDeleteChannelPlaylistData): CancelablePromise<MiscDeleteChannelPlaylistResponse>;
11638
+ miscYoutubeDeleteChannelPlaylist(data: MiscYoutubeDeleteChannelPlaylistData): CancelablePromise<MiscYoutubeDeleteChannelPlaylistResponse>;
11351
11639
  /**
11352
11640
  * Add a video to a playlist
11353
11641
  * @param data The data for the request.
@@ -11355,7 +11643,7 @@ declare class MiscService {
11355
11643
  * @returns unknown 200
11356
11644
  * @throws ApiError
11357
11645
  */
11358
- miscAddVideoToPlaylist(data?: MiscAddVideoToPlaylistData): CancelablePromise<MiscAddVideoToPlaylistResponse>;
11646
+ miscYoutubeAddVideoToPlaylist(data?: MiscYoutubeAddVideoToPlaylistData): CancelablePromise<MiscYoutubeAddVideoToPlaylistResponse>;
11359
11647
  /**
11360
11648
  * Get videos from a playlist
11361
11649
  * @param data The data for the request.
@@ -11365,7 +11653,7 @@ declare class MiscService {
11365
11653
  * @returns unknown 200
11366
11654
  * @throws ApiError
11367
11655
  */
11368
- miscGetVideosFromPlaylist(data: MiscGetVideosFromPlaylistData): CancelablePromise<MiscGetVideosFromPlaylistResponse>;
11656
+ miscYoutubeGetVideosFromPlaylist(data: MiscYoutubeGetVideosFromPlaylistData): CancelablePromise<MiscYoutubeGetVideosFromPlaylistResponse>;
11369
11657
  /**
11370
11658
  * Remove a video from a playlist
11371
11659
  * @param data The data for the request.
@@ -11374,7 +11662,30 @@ declare class MiscService {
11374
11662
  * @returns boolean 200
11375
11663
  * @throws ApiError
11376
11664
  */
11377
- miscDeleteVideoFromPlaylist(data: MiscDeleteVideoFromPlaylistData): CancelablePromise<MiscDeleteVideoFromPlaylistResponse>;
11665
+ miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
11666
+ }
11667
+ declare class LinkedinService {
11668
+ readonly httpRequest: BaseHttpRequest;
11669
+ constructor(httpRequest: BaseHttpRequest);
11670
+ /**
11671
+ * Get LinkedIn mentionable tags (people & organizations)
11672
+ * @param data The data for the request.
11673
+ * @param data.teamId
11674
+ * @param data.q
11675
+ * @param data.scope
11676
+ * @returns unknown 200
11677
+ * @throws ApiError
11678
+ */
11679
+ miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
11680
+ /**
11681
+ * Build LinkedIn text and insert mentions at /#tag\b/gi.
11682
+ * If `#tag` (case-insensitive) is present, mentions replace it; otherwise they’re appended to the end.
11683
+ * @param data The data for the request.
11684
+ * @param data.requestBody Body
11685
+ * @returns unknown 200
11686
+ * @throws ApiError
11687
+ */
11688
+ miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
11378
11689
  }
11379
11690
 
11380
11691
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
@@ -11382,12 +11693,14 @@ declare class Client {
11382
11693
  readonly analytics: AnalyticsService;
11383
11694
  readonly app: AppService;
11384
11695
  readonly comment: CommentService;
11696
+ readonly linkedin: LinkedinService;
11385
11697
  readonly misc: MiscService;
11386
11698
  readonly organization: OrganizationService;
11387
11699
  readonly post: PostService;
11388
11700
  readonly socialAccount: SocialAccountService;
11389
11701
  readonly team: TeamService;
11390
11702
  readonly upload: UploadService;
11703
+ readonly youtube: YoutubeService;
11391
11704
  readonly request: BaseHttpRequest;
11392
11705
  constructor(config?: Partial<OpenAPIConfig>, HttpRequest?: HttpRequestConstructor);
11393
11706
  }
@@ -11451,4 +11764,4 @@ declare class Bundlesocial extends Client {
11451
11764
  constructor(apiKey: string, options?: OpenAPIConfig);
11452
11765
  }
11453
11766
 
11454
- export { $OpenApiTs, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostByPostIdData, AnalyticsGetProfilePostByPostIdResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsResponse, AnalyticsGetRawPostsAnalyticsResponse, AnalyticsGetRawSocialAccountAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscAddVideoToPlaylistData, MiscAddVideoToPlaylistResponse, MiscCreateNewChannelPlaylistData, MiscCreateNewChannelPlaylistResponse, MiscDeleteChannelPlaylistData, MiscDeleteChannelPlaylistResponse, MiscDeleteVideoFromPlaylistData, MiscDeleteVideoFromPlaylistResponse, MiscGetChannelPlaylistData, MiscGetChannelPlaylistResponse, MiscGetVideosFromPlaylistData, MiscGetVideosFromPlaylistResponse, MiscSetThumbnailData, MiscSetThumbnailResponse, MiscUpdateChannelPlaylistData, MiscUpdateChannelPlaylistResponse, 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, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
11767
+ export { $OpenApiTs, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetProfileAnalyticsResponse, AnalyticsGetProfilePostByPostIdData, AnalyticsGetProfilePostByPostIdResponse, AnalyticsGetProfilePostData, AnalyticsGetProfilePostResponse, AnalyticsGetProfilePostsResponse, AnalyticsGetRawPostsAnalyticsResponse, AnalyticsGetRawSocialAccountAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, 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, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };