bundlesocial 2.23.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 +363 -51
- package/dist/index.d.ts +363 -51
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
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;
|
|
@@ -720,6 +730,7 @@ type SocialAccountCopyResponse = Array<{
|
|
|
720
730
|
teamId: string;
|
|
721
731
|
username?: string | null;
|
|
722
732
|
displayName?: string | null;
|
|
733
|
+
avatarUrl?: string | null;
|
|
723
734
|
externalId?: string | null;
|
|
724
735
|
userUsername?: string | null;
|
|
725
736
|
userDisplayName?: string | null;
|
|
@@ -728,6 +739,7 @@ type SocialAccountCopyResponse = Array<{
|
|
|
728
739
|
id: string;
|
|
729
740
|
name?: string | null;
|
|
730
741
|
username?: string | null;
|
|
742
|
+
avatarUrl?: string | null;
|
|
731
743
|
webhook?: {
|
|
732
744
|
id?: string | null;
|
|
733
745
|
name?: string | null;
|
|
@@ -744,7 +756,7 @@ type SocialAccountCopyResponse = Array<{
|
|
|
744
756
|
type UploadGetListData = {
|
|
745
757
|
status?: 'USED' | 'UNUSED' | null;
|
|
746
758
|
teamId?: string | null;
|
|
747
|
-
type?: 'image' | 'video' | null;
|
|
759
|
+
type?: 'image' | 'video' | 'document' | null;
|
|
748
760
|
};
|
|
749
761
|
type UploadGetListResponse = Array<{
|
|
750
762
|
id: string;
|
|
@@ -757,7 +769,7 @@ type UploadGetListResponse = Array<{
|
|
|
757
769
|
iconPath?: string | null;
|
|
758
770
|
thumbnailPath?: string | null;
|
|
759
771
|
path?: string | null;
|
|
760
|
-
type: 'image' | 'video';
|
|
772
|
+
type: 'image' | 'video' | 'document';
|
|
761
773
|
width?: number | null;
|
|
762
774
|
height?: number | null;
|
|
763
775
|
fileSize?: number | null;
|
|
@@ -794,7 +806,7 @@ type UploadCreateResponse = {
|
|
|
794
806
|
iconPath?: string | null;
|
|
795
807
|
thumbnailPath?: string | null;
|
|
796
808
|
path?: string | null;
|
|
797
|
-
type: 'image' | 'video';
|
|
809
|
+
type: 'image' | 'video' | 'document';
|
|
798
810
|
width?: number | null;
|
|
799
811
|
height?: number | null;
|
|
800
812
|
fileSize?: number | null;
|
|
@@ -823,7 +835,7 @@ type UploadDeleteManyResponse = Array<{
|
|
|
823
835
|
iconPath?: string | null;
|
|
824
836
|
thumbnailPath?: string | null;
|
|
825
837
|
path?: string | null;
|
|
826
|
-
type: 'image' | 'video';
|
|
838
|
+
type: 'image' | 'video' | 'document';
|
|
827
839
|
width?: number | null;
|
|
828
840
|
height?: number | null;
|
|
829
841
|
fileSize?: number | null;
|
|
@@ -847,7 +859,7 @@ type UploadGetResponse = {
|
|
|
847
859
|
iconPath?: string | null;
|
|
848
860
|
thumbnailPath?: string | null;
|
|
849
861
|
path?: string | null;
|
|
850
|
-
type: 'image' | 'video';
|
|
862
|
+
type: 'image' | 'video' | 'document';
|
|
851
863
|
width?: number | null;
|
|
852
864
|
height?: number | null;
|
|
853
865
|
fileSize?: number | null;
|
|
@@ -878,7 +890,7 @@ type UploadDeleteResponse = {
|
|
|
878
890
|
iconPath?: string | null;
|
|
879
891
|
thumbnailPath?: string | null;
|
|
880
892
|
path?: string | null;
|
|
881
|
-
type: 'image' | 'video';
|
|
893
|
+
type: 'image' | 'video' | 'document';
|
|
882
894
|
width?: number | null;
|
|
883
895
|
height?: number | null;
|
|
884
896
|
fileSize?: number | null;
|
|
@@ -895,7 +907,7 @@ type UploadInitLargeUploadData = {
|
|
|
895
907
|
requestBody?: {
|
|
896
908
|
teamId?: string | null;
|
|
897
909
|
fileName: string;
|
|
898
|
-
mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4';
|
|
910
|
+
mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4' | 'application/pdf';
|
|
899
911
|
};
|
|
900
912
|
};
|
|
901
913
|
type UploadInitLargeUploadResponse = {
|
|
@@ -922,7 +934,7 @@ type UploadFinalizeLargeUploadResponse = {
|
|
|
922
934
|
iconPath?: string | null;
|
|
923
935
|
thumbnailPath?: string | null;
|
|
924
936
|
path?: string | null;
|
|
925
|
-
type: 'image' | 'video';
|
|
937
|
+
type: 'image' | 'video' | 'document';
|
|
926
938
|
width?: number | null;
|
|
927
939
|
height?: number | null;
|
|
928
940
|
fileSize?: number | null;
|
|
@@ -1247,7 +1259,7 @@ type PostGetResponse = {
|
|
|
1247
1259
|
iconPath?: string | null;
|
|
1248
1260
|
thumbnailPath?: string | null;
|
|
1249
1261
|
path?: string | null;
|
|
1250
|
-
type: 'image' | 'video';
|
|
1262
|
+
type: 'image' | 'video' | 'document';
|
|
1251
1263
|
width?: number | null;
|
|
1252
1264
|
height?: number | null;
|
|
1253
1265
|
fileSize?: number | null;
|
|
@@ -1270,6 +1282,7 @@ type PostGetResponse = {
|
|
|
1270
1282
|
teamId: string;
|
|
1271
1283
|
username?: string | null;
|
|
1272
1284
|
displayName?: string | null;
|
|
1285
|
+
avatarUrl?: string | null;
|
|
1273
1286
|
externalId?: string | null;
|
|
1274
1287
|
userUsername?: string | null;
|
|
1275
1288
|
userDisplayName?: string | null;
|
|
@@ -1278,6 +1291,7 @@ type PostGetResponse = {
|
|
|
1278
1291
|
id: string;
|
|
1279
1292
|
name?: string | null;
|
|
1280
1293
|
username?: string | null;
|
|
1294
|
+
avatarUrl?: string | null;
|
|
1281
1295
|
webhook?: {
|
|
1282
1296
|
id?: string | null;
|
|
1283
1297
|
name?: string | null;
|
|
@@ -2430,7 +2444,7 @@ type PostGetListResponse = {
|
|
|
2430
2444
|
iconPath?: string | null;
|
|
2431
2445
|
thumbnailPath?: string | null;
|
|
2432
2446
|
path?: string | null;
|
|
2433
|
-
type: 'image' | 'video';
|
|
2447
|
+
type: 'image' | 'video' | 'document';
|
|
2434
2448
|
width?: number | null;
|
|
2435
2449
|
height?: number | null;
|
|
2436
2450
|
fileSize?: number | null;
|
|
@@ -2453,6 +2467,7 @@ type PostGetListResponse = {
|
|
|
2453
2467
|
teamId: string;
|
|
2454
2468
|
username?: string | null;
|
|
2455
2469
|
displayName?: string | null;
|
|
2470
|
+
avatarUrl?: string | null;
|
|
2456
2471
|
externalId?: string | null;
|
|
2457
2472
|
userUsername?: string | null;
|
|
2458
2473
|
userDisplayName?: string | null;
|
|
@@ -2461,6 +2476,7 @@ type PostGetListResponse = {
|
|
|
2461
2476
|
id: string;
|
|
2462
2477
|
name?: string | null;
|
|
2463
2478
|
username?: string | null;
|
|
2479
|
+
avatarUrl?: string | null;
|
|
2464
2480
|
webhook?: {
|
|
2465
2481
|
id?: string | null;
|
|
2466
2482
|
name?: string | null;
|
|
@@ -3004,6 +3020,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
3004
3020
|
teamId: string;
|
|
3005
3021
|
username?: string | null;
|
|
3006
3022
|
displayName?: string | null;
|
|
3023
|
+
avatarUrl?: string | null;
|
|
3007
3024
|
externalId?: string | null;
|
|
3008
3025
|
userUsername?: string | null;
|
|
3009
3026
|
userDisplayName?: string | null;
|
|
@@ -3012,6 +3029,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
3012
3029
|
id: string;
|
|
3013
3030
|
name?: string | null;
|
|
3014
3031
|
username?: string | null;
|
|
3032
|
+
avatarUrl?: string | null;
|
|
3015
3033
|
webhook?: {
|
|
3016
3034
|
id?: string | null;
|
|
3017
3035
|
name?: string | null;
|
|
@@ -3372,6 +3390,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
3372
3390
|
teamId: string;
|
|
3373
3391
|
username?: string | null;
|
|
3374
3392
|
displayName?: string | null;
|
|
3393
|
+
avatarUrl?: string | null;
|
|
3375
3394
|
externalId?: string | null;
|
|
3376
3395
|
userUsername?: string | null;
|
|
3377
3396
|
userDisplayName?: string | null;
|
|
@@ -3380,6 +3399,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
3380
3399
|
id: string;
|
|
3381
3400
|
name?: string | null;
|
|
3382
3401
|
username?: string | null;
|
|
3402
|
+
avatarUrl?: string | null;
|
|
3383
3403
|
webhook?: {
|
|
3384
3404
|
id?: string | null;
|
|
3385
3405
|
name?: string | null;
|
|
@@ -4348,7 +4368,7 @@ type CommentCreateResponse = {
|
|
|
4348
4368
|
updatedAt: string | null;
|
|
4349
4369
|
deletedAt?: string | null;
|
|
4350
4370
|
};
|
|
4351
|
-
type
|
|
4371
|
+
type MiscYoutubeSetThumbnailData = {
|
|
4352
4372
|
/**
|
|
4353
4373
|
* Body
|
|
4354
4374
|
*/
|
|
@@ -4358,7 +4378,7 @@ type MiscSetThumbnailData = {
|
|
|
4358
4378
|
postId: string;
|
|
4359
4379
|
};
|
|
4360
4380
|
};
|
|
4361
|
-
type
|
|
4381
|
+
type MiscYoutubeSetThumbnailResponse = {
|
|
4362
4382
|
items?: Array<{
|
|
4363
4383
|
default?: {
|
|
4364
4384
|
url: string;
|
|
@@ -4387,11 +4407,11 @@ type MiscSetThumbnailResponse = {
|
|
|
4387
4407
|
};
|
|
4388
4408
|
}>;
|
|
4389
4409
|
};
|
|
4390
|
-
type
|
|
4410
|
+
type MiscYoutubeGetChannelPlaylistData = {
|
|
4391
4411
|
maxResults?: number;
|
|
4392
4412
|
teamId: string;
|
|
4393
4413
|
};
|
|
4394
|
-
type
|
|
4414
|
+
type MiscYoutubeGetChannelPlaylistResponse = {
|
|
4395
4415
|
kind?: string;
|
|
4396
4416
|
etag?: string;
|
|
4397
4417
|
nextPageToken?: string;
|
|
@@ -4450,7 +4470,7 @@ type MiscGetChannelPlaylistResponse = {
|
|
|
4450
4470
|
};
|
|
4451
4471
|
}>;
|
|
4452
4472
|
};
|
|
4453
|
-
type
|
|
4473
|
+
type MiscYoutubeCreateNewChannelPlaylistData = {
|
|
4454
4474
|
/**
|
|
4455
4475
|
* Body
|
|
4456
4476
|
*/
|
|
@@ -4467,7 +4487,7 @@ type MiscCreateNewChannelPlaylistData = {
|
|
|
4467
4487
|
privacyStatus?: 'public' | 'unlisted' | 'private';
|
|
4468
4488
|
};
|
|
4469
4489
|
};
|
|
4470
|
-
type
|
|
4490
|
+
type MiscYoutubeCreateNewChannelPlaylistResponse = {
|
|
4471
4491
|
kind?: string;
|
|
4472
4492
|
etag?: string;
|
|
4473
4493
|
id?: string;
|
|
@@ -4516,7 +4536,7 @@ type MiscCreateNewChannelPlaylistResponse = {
|
|
|
4516
4536
|
itemCount?: number;
|
|
4517
4537
|
};
|
|
4518
4538
|
};
|
|
4519
|
-
type
|
|
4539
|
+
type MiscYoutubeUpdateChannelPlaylistData = {
|
|
4520
4540
|
/**
|
|
4521
4541
|
* Body
|
|
4522
4542
|
*/
|
|
@@ -4534,7 +4554,7 @@ type MiscUpdateChannelPlaylistData = {
|
|
|
4534
4554
|
playlistId: string;
|
|
4535
4555
|
};
|
|
4536
4556
|
};
|
|
4537
|
-
type
|
|
4557
|
+
type MiscYoutubeUpdateChannelPlaylistResponse = {
|
|
4538
4558
|
kind?: string;
|
|
4539
4559
|
etag?: string;
|
|
4540
4560
|
id?: string;
|
|
@@ -4583,12 +4603,12 @@ type MiscUpdateChannelPlaylistResponse = {
|
|
|
4583
4603
|
itemCount?: number;
|
|
4584
4604
|
};
|
|
4585
4605
|
};
|
|
4586
|
-
type
|
|
4606
|
+
type MiscYoutubeDeleteChannelPlaylistData = {
|
|
4587
4607
|
playlistId: string;
|
|
4588
4608
|
teamId: string;
|
|
4589
4609
|
};
|
|
4590
|
-
type
|
|
4591
|
-
type
|
|
4610
|
+
type MiscYoutubeDeleteChannelPlaylistResponse = boolean;
|
|
4611
|
+
type MiscYoutubeAddVideoToPlaylistData = {
|
|
4592
4612
|
/**
|
|
4593
4613
|
* Body
|
|
4594
4614
|
*/
|
|
@@ -4599,7 +4619,7 @@ type MiscAddVideoToPlaylistData = {
|
|
|
4599
4619
|
position?: number;
|
|
4600
4620
|
};
|
|
4601
4621
|
};
|
|
4602
|
-
type
|
|
4622
|
+
type MiscYoutubeAddVideoToPlaylistResponse = {
|
|
4603
4623
|
kind?: string;
|
|
4604
4624
|
etag?: string;
|
|
4605
4625
|
id?: string;
|
|
@@ -4650,12 +4670,12 @@ type MiscAddVideoToPlaylistResponse = {
|
|
|
4650
4670
|
videoPublishedAt?: string;
|
|
4651
4671
|
};
|
|
4652
4672
|
};
|
|
4653
|
-
type
|
|
4673
|
+
type MiscYoutubeGetVideosFromPlaylistData = {
|
|
4654
4674
|
maxResults?: number;
|
|
4655
4675
|
playlistId: string;
|
|
4656
4676
|
teamId: string;
|
|
4657
4677
|
};
|
|
4658
|
-
type
|
|
4678
|
+
type MiscYoutubeGetVideosFromPlaylistResponse = {
|
|
4659
4679
|
kind?: string;
|
|
4660
4680
|
etag?: string;
|
|
4661
4681
|
nextPageToken?: string;
|
|
@@ -4716,14 +4736,50 @@ type MiscGetVideosFromPlaylistResponse = {
|
|
|
4716
4736
|
};
|
|
4717
4737
|
}>;
|
|
4718
4738
|
};
|
|
4719
|
-
type
|
|
4739
|
+
type MiscYoutubeDeleteVideoFromPlaylistData = {
|
|
4720
4740
|
/**
|
|
4721
4741
|
* Playlist item ID (not video ID)
|
|
4722
4742
|
*/
|
|
4723
4743
|
playlistItemId: string;
|
|
4724
4744
|
teamId: string;
|
|
4725
4745
|
};
|
|
4726
|
-
type
|
|
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
|
+
};
|
|
4727
4783
|
type $OpenApiTs = {
|
|
4728
4784
|
'/api/v1/': {
|
|
4729
4785
|
get: {
|
|
@@ -5056,6 +5112,7 @@ type $OpenApiTs = {
|
|
|
5056
5112
|
teamId: string;
|
|
5057
5113
|
username?: string | null;
|
|
5058
5114
|
displayName?: string | null;
|
|
5115
|
+
avatarUrl?: string | null;
|
|
5059
5116
|
externalId?: string | null;
|
|
5060
5117
|
userUsername?: string | null;
|
|
5061
5118
|
userDisplayName?: string | null;
|
|
@@ -5064,6 +5121,7 @@ type $OpenApiTs = {
|
|
|
5064
5121
|
id: string;
|
|
5065
5122
|
name?: string | null;
|
|
5066
5123
|
username?: string | null;
|
|
5124
|
+
avatarUrl?: string | null;
|
|
5067
5125
|
webhook?: {
|
|
5068
5126
|
id?: string | null;
|
|
5069
5127
|
name?: string | null;
|
|
@@ -5347,6 +5405,7 @@ type $OpenApiTs = {
|
|
|
5347
5405
|
teamId: string;
|
|
5348
5406
|
username?: string | null;
|
|
5349
5407
|
displayName?: string | null;
|
|
5408
|
+
avatarUrl?: string | null;
|
|
5350
5409
|
externalId?: string | null;
|
|
5351
5410
|
userUsername?: string | null;
|
|
5352
5411
|
userDisplayName?: string | null;
|
|
@@ -5355,6 +5414,7 @@ type $OpenApiTs = {
|
|
|
5355
5414
|
id: string;
|
|
5356
5415
|
name?: string | null;
|
|
5357
5416
|
username?: string | null;
|
|
5417
|
+
avatarUrl?: string | null;
|
|
5358
5418
|
webhook?: {
|
|
5359
5419
|
id?: string | null;
|
|
5360
5420
|
name?: string | null;
|
|
@@ -5578,6 +5638,7 @@ type $OpenApiTs = {
|
|
|
5578
5638
|
teamId: string;
|
|
5579
5639
|
username?: string | null;
|
|
5580
5640
|
displayName?: string | null;
|
|
5641
|
+
avatarUrl?: string | null;
|
|
5581
5642
|
externalId?: string | null;
|
|
5582
5643
|
userUsername?: string | null;
|
|
5583
5644
|
userDisplayName?: string | null;
|
|
@@ -5586,6 +5647,7 @@ type $OpenApiTs = {
|
|
|
5586
5647
|
id: string;
|
|
5587
5648
|
name?: string | null;
|
|
5588
5649
|
username?: string | null;
|
|
5650
|
+
avatarUrl?: string | null;
|
|
5589
5651
|
webhook?: {
|
|
5590
5652
|
id?: string | null;
|
|
5591
5653
|
name?: string | null;
|
|
@@ -5655,6 +5717,7 @@ type $OpenApiTs = {
|
|
|
5655
5717
|
teamId: string;
|
|
5656
5718
|
username?: string | null;
|
|
5657
5719
|
displayName?: string | null;
|
|
5720
|
+
avatarUrl?: string | null;
|
|
5658
5721
|
externalId?: string | null;
|
|
5659
5722
|
userUsername?: string | null;
|
|
5660
5723
|
userDisplayName?: string | null;
|
|
@@ -5663,6 +5726,7 @@ type $OpenApiTs = {
|
|
|
5663
5726
|
id: string;
|
|
5664
5727
|
name?: string | null;
|
|
5665
5728
|
username?: string | null;
|
|
5729
|
+
avatarUrl?: string | null;
|
|
5666
5730
|
webhook?: {
|
|
5667
5731
|
id?: string | null;
|
|
5668
5732
|
name?: string | null;
|
|
@@ -5732,6 +5796,7 @@ type $OpenApiTs = {
|
|
|
5732
5796
|
teamId: string;
|
|
5733
5797
|
username?: string | null;
|
|
5734
5798
|
displayName?: string | null;
|
|
5799
|
+
avatarUrl?: string | null;
|
|
5735
5800
|
externalId?: string | null;
|
|
5736
5801
|
userUsername?: string | null;
|
|
5737
5802
|
userDisplayName?: string | null;
|
|
@@ -5740,6 +5805,7 @@ type $OpenApiTs = {
|
|
|
5740
5805
|
id: string;
|
|
5741
5806
|
name?: string | null;
|
|
5742
5807
|
username?: string | null;
|
|
5808
|
+
avatarUrl?: string | null;
|
|
5743
5809
|
webhook?: {
|
|
5744
5810
|
id?: string | null;
|
|
5745
5811
|
name?: string | null;
|
|
@@ -5862,6 +5928,7 @@ type $OpenApiTs = {
|
|
|
5862
5928
|
teamId: string;
|
|
5863
5929
|
username?: string | null;
|
|
5864
5930
|
displayName?: string | null;
|
|
5931
|
+
avatarUrl?: string | null;
|
|
5865
5932
|
externalId?: string | null;
|
|
5866
5933
|
userUsername?: string | null;
|
|
5867
5934
|
userDisplayName?: string | null;
|
|
@@ -5870,6 +5937,7 @@ type $OpenApiTs = {
|
|
|
5870
5937
|
id: string;
|
|
5871
5938
|
name?: string | null;
|
|
5872
5939
|
username?: string | null;
|
|
5940
|
+
avatarUrl?: string | null;
|
|
5873
5941
|
webhook?: {
|
|
5874
5942
|
id?: string | null;
|
|
5875
5943
|
name?: string | null;
|
|
@@ -5944,7 +6012,7 @@ type $OpenApiTs = {
|
|
|
5944
6012
|
iconPath?: string | null;
|
|
5945
6013
|
thumbnailPath?: string | null;
|
|
5946
6014
|
path?: string | null;
|
|
5947
|
-
type: 'image' | 'video';
|
|
6015
|
+
type: 'image' | 'video' | 'document';
|
|
5948
6016
|
width?: number | null;
|
|
5949
6017
|
height?: number | null;
|
|
5950
6018
|
fileSize?: number | null;
|
|
@@ -6020,7 +6088,7 @@ type $OpenApiTs = {
|
|
|
6020
6088
|
iconPath?: string | null;
|
|
6021
6089
|
thumbnailPath?: string | null;
|
|
6022
6090
|
path?: string | null;
|
|
6023
|
-
type: 'image' | 'video';
|
|
6091
|
+
type: 'image' | 'video' | 'document';
|
|
6024
6092
|
width?: number | null;
|
|
6025
6093
|
height?: number | null;
|
|
6026
6094
|
fileSize?: number | null;
|
|
@@ -6089,7 +6157,7 @@ type $OpenApiTs = {
|
|
|
6089
6157
|
iconPath?: string | null;
|
|
6090
6158
|
thumbnailPath?: string | null;
|
|
6091
6159
|
path?: string | null;
|
|
6092
|
-
type: 'image' | 'video';
|
|
6160
|
+
type: 'image' | 'video' | 'document';
|
|
6093
6161
|
width?: number | null;
|
|
6094
6162
|
height?: number | null;
|
|
6095
6163
|
fileSize?: number | null;
|
|
@@ -6160,7 +6228,7 @@ type $OpenApiTs = {
|
|
|
6160
6228
|
iconPath?: string | null;
|
|
6161
6229
|
thumbnailPath?: string | null;
|
|
6162
6230
|
path?: string | null;
|
|
6163
|
-
type: 'image' | 'video';
|
|
6231
|
+
type: 'image' | 'video' | 'document';
|
|
6164
6232
|
width?: number | null;
|
|
6165
6233
|
height?: number | null;
|
|
6166
6234
|
fileSize?: number | null;
|
|
@@ -6236,7 +6304,7 @@ type $OpenApiTs = {
|
|
|
6236
6304
|
iconPath?: string | null;
|
|
6237
6305
|
thumbnailPath?: string | null;
|
|
6238
6306
|
path?: string | null;
|
|
6239
|
-
type: 'image' | 'video';
|
|
6307
|
+
type: 'image' | 'video' | 'document';
|
|
6240
6308
|
width?: number | null;
|
|
6241
6309
|
height?: number | null;
|
|
6242
6310
|
fileSize?: number | null;
|
|
@@ -6361,7 +6429,7 @@ type $OpenApiTs = {
|
|
|
6361
6429
|
iconPath?: string | null;
|
|
6362
6430
|
thumbnailPath?: string | null;
|
|
6363
6431
|
path?: string | null;
|
|
6364
|
-
type: 'image' | 'video';
|
|
6432
|
+
type: 'image' | 'video' | 'document';
|
|
6365
6433
|
width?: number | null;
|
|
6366
6434
|
height?: number | null;
|
|
6367
6435
|
fileSize?: number | null;
|
|
@@ -6733,7 +6801,7 @@ type $OpenApiTs = {
|
|
|
6733
6801
|
iconPath?: string | null;
|
|
6734
6802
|
thumbnailPath?: string | null;
|
|
6735
6803
|
path?: string | null;
|
|
6736
|
-
type: 'image' | 'video';
|
|
6804
|
+
type: 'image' | 'video' | 'document';
|
|
6737
6805
|
width?: number | null;
|
|
6738
6806
|
height?: number | null;
|
|
6739
6807
|
fileSize?: number | null;
|
|
@@ -6756,6 +6824,7 @@ type $OpenApiTs = {
|
|
|
6756
6824
|
teamId: string;
|
|
6757
6825
|
username?: string | null;
|
|
6758
6826
|
displayName?: string | null;
|
|
6827
|
+
avatarUrl?: string | null;
|
|
6759
6828
|
externalId?: string | null;
|
|
6760
6829
|
userUsername?: string | null;
|
|
6761
6830
|
userDisplayName?: string | null;
|
|
@@ -6764,6 +6833,7 @@ type $OpenApiTs = {
|
|
|
6764
6833
|
id: string;
|
|
6765
6834
|
name?: string | null;
|
|
6766
6835
|
username?: string | null;
|
|
6836
|
+
avatarUrl?: string | null;
|
|
6767
6837
|
webhook?: {
|
|
6768
6838
|
id?: string | null;
|
|
6769
6839
|
name?: string | null;
|
|
@@ -7830,7 +7900,7 @@ type $OpenApiTs = {
|
|
|
7830
7900
|
iconPath?: string | null;
|
|
7831
7901
|
thumbnailPath?: string | null;
|
|
7832
7902
|
path?: string | null;
|
|
7833
|
-
type: 'image' | 'video';
|
|
7903
|
+
type: 'image' | 'video' | 'document';
|
|
7834
7904
|
width?: number | null;
|
|
7835
7905
|
height?: number | null;
|
|
7836
7906
|
fileSize?: number | null;
|
|
@@ -7853,6 +7923,7 @@ type $OpenApiTs = {
|
|
|
7853
7923
|
teamId: string;
|
|
7854
7924
|
username?: string | null;
|
|
7855
7925
|
displayName?: string | null;
|
|
7926
|
+
avatarUrl?: string | null;
|
|
7856
7927
|
externalId?: string | null;
|
|
7857
7928
|
userUsername?: string | null;
|
|
7858
7929
|
userDisplayName?: string | null;
|
|
@@ -7861,6 +7932,7 @@ type $OpenApiTs = {
|
|
|
7861
7932
|
id: string;
|
|
7862
7933
|
name?: string | null;
|
|
7863
7934
|
username?: string | null;
|
|
7935
|
+
avatarUrl?: string | null;
|
|
7864
7936
|
webhook?: {
|
|
7865
7937
|
id?: string | null;
|
|
7866
7938
|
name?: string | null;
|
|
@@ -8279,6 +8351,7 @@ type $OpenApiTs = {
|
|
|
8279
8351
|
teamId: string;
|
|
8280
8352
|
username?: string | null;
|
|
8281
8353
|
displayName?: string | null;
|
|
8354
|
+
avatarUrl?: string | null;
|
|
8282
8355
|
externalId?: string | null;
|
|
8283
8356
|
userUsername?: string | null;
|
|
8284
8357
|
userDisplayName?: string | null;
|
|
@@ -8287,6 +8360,7 @@ type $OpenApiTs = {
|
|
|
8287
8360
|
id: string;
|
|
8288
8361
|
name?: string | null;
|
|
8289
8362
|
username?: string | null;
|
|
8363
|
+
avatarUrl?: string | null;
|
|
8290
8364
|
webhook?: {
|
|
8291
8365
|
id?: string | null;
|
|
8292
8366
|
name?: string | null;
|
|
@@ -8739,6 +8813,7 @@ type $OpenApiTs = {
|
|
|
8739
8813
|
teamId: string;
|
|
8740
8814
|
username?: string | null;
|
|
8741
8815
|
displayName?: string | null;
|
|
8816
|
+
avatarUrl?: string | null;
|
|
8742
8817
|
externalId?: string | null;
|
|
8743
8818
|
userUsername?: string | null;
|
|
8744
8819
|
userDisplayName?: string | null;
|
|
@@ -8747,6 +8822,7 @@ type $OpenApiTs = {
|
|
|
8747
8822
|
id: string;
|
|
8748
8823
|
name?: string | null;
|
|
8749
8824
|
username?: string | null;
|
|
8825
|
+
avatarUrl?: string | null;
|
|
8750
8826
|
webhook?: {
|
|
8751
8827
|
id?: string | null;
|
|
8752
8828
|
name?: string | null;
|
|
@@ -10231,7 +10307,7 @@ type $OpenApiTs = {
|
|
|
10231
10307
|
};
|
|
10232
10308
|
'/api/v1/misc/youtube/thumbnail': {
|
|
10233
10309
|
post: {
|
|
10234
|
-
req:
|
|
10310
|
+
req: MiscYoutubeSetThumbnailData;
|
|
10235
10311
|
res: {
|
|
10236
10312
|
/**
|
|
10237
10313
|
* 200
|
|
@@ -10310,7 +10386,7 @@ type $OpenApiTs = {
|
|
|
10310
10386
|
};
|
|
10311
10387
|
'/api/v1/misc/youtube/playlist': {
|
|
10312
10388
|
get: {
|
|
10313
|
-
req:
|
|
10389
|
+
req: MiscYoutubeGetChannelPlaylistData;
|
|
10314
10390
|
res: {
|
|
10315
10391
|
/**
|
|
10316
10392
|
* 200
|
|
@@ -10417,7 +10493,7 @@ type $OpenApiTs = {
|
|
|
10417
10493
|
};
|
|
10418
10494
|
};
|
|
10419
10495
|
post: {
|
|
10420
|
-
req:
|
|
10496
|
+
req: MiscYoutubeCreateNewChannelPlaylistData;
|
|
10421
10497
|
res: {
|
|
10422
10498
|
/**
|
|
10423
10499
|
* 200
|
|
@@ -10514,7 +10590,7 @@ type $OpenApiTs = {
|
|
|
10514
10590
|
};
|
|
10515
10591
|
};
|
|
10516
10592
|
put: {
|
|
10517
|
-
req:
|
|
10593
|
+
req: MiscYoutubeUpdateChannelPlaylistData;
|
|
10518
10594
|
res: {
|
|
10519
10595
|
/**
|
|
10520
10596
|
* 200
|
|
@@ -10613,7 +10689,7 @@ type $OpenApiTs = {
|
|
|
10613
10689
|
};
|
|
10614
10690
|
'/api/v1/misc/youtube/playlist/{playlistId}': {
|
|
10615
10691
|
delete: {
|
|
10616
|
-
req:
|
|
10692
|
+
req: MiscYoutubeDeleteChannelPlaylistData;
|
|
10617
10693
|
res: {
|
|
10618
10694
|
/**
|
|
10619
10695
|
* 200
|
|
@@ -10664,7 +10740,7 @@ type $OpenApiTs = {
|
|
|
10664
10740
|
};
|
|
10665
10741
|
'/api/v1/misc/youtube/playlist-items': {
|
|
10666
10742
|
post: {
|
|
10667
|
-
req:
|
|
10743
|
+
req: MiscYoutubeAddVideoToPlaylistData;
|
|
10668
10744
|
res: {
|
|
10669
10745
|
/**
|
|
10670
10746
|
* 200
|
|
@@ -10763,7 +10839,7 @@ type $OpenApiTs = {
|
|
|
10763
10839
|
};
|
|
10764
10840
|
};
|
|
10765
10841
|
get: {
|
|
10766
|
-
req:
|
|
10842
|
+
req: MiscYoutubeGetVideosFromPlaylistData;
|
|
10767
10843
|
res: {
|
|
10768
10844
|
/**
|
|
10769
10845
|
* 200
|
|
@@ -10874,7 +10950,7 @@ type $OpenApiTs = {
|
|
|
10874
10950
|
};
|
|
10875
10951
|
'/api/v1/misc/youtube/playlist-items/{playlistItemId}': {
|
|
10876
10952
|
delete: {
|
|
10877
|
-
req:
|
|
10953
|
+
req: MiscYoutubeDeleteVideoFromPlaylistData;
|
|
10878
10954
|
res: {
|
|
10879
10955
|
/**
|
|
10880
10956
|
* 200
|
|
@@ -10923,6 +10999,125 @@ type $OpenApiTs = {
|
|
|
10923
10999
|
};
|
|
10924
11000
|
};
|
|
10925
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
|
+
};
|
|
10926
11121
|
};
|
|
10927
11122
|
|
|
10928
11123
|
declare class AppService {
|
|
@@ -11314,7 +11509,99 @@ declare class MiscService {
|
|
|
11314
11509
|
* @returns unknown 200
|
|
11315
11510
|
* @throws ApiError
|
|
11316
11511
|
*/
|
|
11317
|
-
|
|
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>;
|
|
11318
11605
|
/**
|
|
11319
11606
|
* Get channel playlists
|
|
11320
11607
|
* @param data The data for the request.
|
|
@@ -11323,7 +11610,7 @@ declare class MiscService {
|
|
|
11323
11610
|
* @returns unknown 200
|
|
11324
11611
|
* @throws ApiError
|
|
11325
11612
|
*/
|
|
11326
|
-
|
|
11613
|
+
miscYoutubeGetChannelPlaylist(data: MiscYoutubeGetChannelPlaylistData): CancelablePromise<MiscYoutubeGetChannelPlaylistResponse>;
|
|
11327
11614
|
/**
|
|
11328
11615
|
* Create a new playlist
|
|
11329
11616
|
* @param data The data for the request.
|
|
@@ -11331,7 +11618,7 @@ declare class MiscService {
|
|
|
11331
11618
|
* @returns unknown 200
|
|
11332
11619
|
* @throws ApiError
|
|
11333
11620
|
*/
|
|
11334
|
-
|
|
11621
|
+
miscYoutubeCreateNewChannelPlaylist(data?: MiscYoutubeCreateNewChannelPlaylistData): CancelablePromise<MiscYoutubeCreateNewChannelPlaylistResponse>;
|
|
11335
11622
|
/**
|
|
11336
11623
|
* Update an existing playlist
|
|
11337
11624
|
* @param data The data for the request.
|
|
@@ -11339,7 +11626,7 @@ declare class MiscService {
|
|
|
11339
11626
|
* @returns unknown 200
|
|
11340
11627
|
* @throws ApiError
|
|
11341
11628
|
*/
|
|
11342
|
-
|
|
11629
|
+
miscYoutubeUpdateChannelPlaylist(data?: MiscYoutubeUpdateChannelPlaylistData): CancelablePromise<MiscYoutubeUpdateChannelPlaylistResponse>;
|
|
11343
11630
|
/**
|
|
11344
11631
|
* Remove a video from a playlist
|
|
11345
11632
|
* @param data The data for the request.
|
|
@@ -11348,7 +11635,7 @@ declare class MiscService {
|
|
|
11348
11635
|
* @returns boolean 200
|
|
11349
11636
|
* @throws ApiError
|
|
11350
11637
|
*/
|
|
11351
|
-
|
|
11638
|
+
miscYoutubeDeleteChannelPlaylist(data: MiscYoutubeDeleteChannelPlaylistData): CancelablePromise<MiscYoutubeDeleteChannelPlaylistResponse>;
|
|
11352
11639
|
/**
|
|
11353
11640
|
* Add a video to a playlist
|
|
11354
11641
|
* @param data The data for the request.
|
|
@@ -11356,7 +11643,7 @@ declare class MiscService {
|
|
|
11356
11643
|
* @returns unknown 200
|
|
11357
11644
|
* @throws ApiError
|
|
11358
11645
|
*/
|
|
11359
|
-
|
|
11646
|
+
miscYoutubeAddVideoToPlaylist(data?: MiscYoutubeAddVideoToPlaylistData): CancelablePromise<MiscYoutubeAddVideoToPlaylistResponse>;
|
|
11360
11647
|
/**
|
|
11361
11648
|
* Get videos from a playlist
|
|
11362
11649
|
* @param data The data for the request.
|
|
@@ -11366,7 +11653,7 @@ declare class MiscService {
|
|
|
11366
11653
|
* @returns unknown 200
|
|
11367
11654
|
* @throws ApiError
|
|
11368
11655
|
*/
|
|
11369
|
-
|
|
11656
|
+
miscYoutubeGetVideosFromPlaylist(data: MiscYoutubeGetVideosFromPlaylistData): CancelablePromise<MiscYoutubeGetVideosFromPlaylistResponse>;
|
|
11370
11657
|
/**
|
|
11371
11658
|
* Remove a video from a playlist
|
|
11372
11659
|
* @param data The data for the request.
|
|
@@ -11375,7 +11662,30 @@ declare class MiscService {
|
|
|
11375
11662
|
* @returns boolean 200
|
|
11376
11663
|
* @throws ApiError
|
|
11377
11664
|
*/
|
|
11378
|
-
|
|
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>;
|
|
11379
11689
|
}
|
|
11380
11690
|
|
|
11381
11691
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
@@ -11383,12 +11693,14 @@ declare class Client {
|
|
|
11383
11693
|
readonly analytics: AnalyticsService;
|
|
11384
11694
|
readonly app: AppService;
|
|
11385
11695
|
readonly comment: CommentService;
|
|
11696
|
+
readonly linkedin: LinkedinService;
|
|
11386
11697
|
readonly misc: MiscService;
|
|
11387
11698
|
readonly organization: OrganizationService;
|
|
11388
11699
|
readonly post: PostService;
|
|
11389
11700
|
readonly socialAccount: SocialAccountService;
|
|
11390
11701
|
readonly team: TeamService;
|
|
11391
11702
|
readonly upload: UploadService;
|
|
11703
|
+
readonly youtube: YoutubeService;
|
|
11392
11704
|
readonly request: BaseHttpRequest;
|
|
11393
11705
|
constructor(config?: Partial<OpenAPIConfig>, HttpRequest?: HttpRequestConstructor);
|
|
11394
11706
|
}
|
|
@@ -11452,4 +11764,4 @@ declare class Bundlesocial extends Client {
|
|
|
11452
11764
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
11453
11765
|
}
|
|
11454
11766
|
|
|
11455
|
-
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,
|
|
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 };
|