bundlesocial 2.23.0 → 2.25.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 +2028 -182
- package/dist/index.d.ts +2028 -182
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -95,6 +95,8 @@ type OrganizationGetOrganizationResponse = {
|
|
|
95
95
|
DISCORD?: number;
|
|
96
96
|
SLACK?: number;
|
|
97
97
|
MASTODON?: number;
|
|
98
|
+
BLUESKY?: number;
|
|
99
|
+
GOOGLE_BUSINESS?: number;
|
|
98
100
|
} | null;
|
|
99
101
|
apiAccess?: boolean;
|
|
100
102
|
analyticsDisabled?: boolean;
|
|
@@ -264,6 +266,8 @@ type TeamGetTeamResponse = {
|
|
|
264
266
|
DISCORD?: number;
|
|
265
267
|
SLACK?: number;
|
|
266
268
|
MASTODON?: number;
|
|
269
|
+
BLUESKY?: number;
|
|
270
|
+
GOOGLE_BUSINESS?: number;
|
|
267
271
|
} | null;
|
|
268
272
|
apiAccess?: boolean;
|
|
269
273
|
analyticsDisabled?: boolean;
|
|
@@ -296,10 +300,11 @@ type TeamGetTeamResponse = {
|
|
|
296
300
|
}>;
|
|
297
301
|
socialAccounts: Array<{
|
|
298
302
|
id: string;
|
|
299
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
303
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
300
304
|
teamId: string;
|
|
301
305
|
username?: string | null;
|
|
302
306
|
displayName?: string | null;
|
|
307
|
+
avatarUrl?: string | null;
|
|
303
308
|
externalId?: string | null;
|
|
304
309
|
userUsername?: string | null;
|
|
305
310
|
userDisplayName?: string | null;
|
|
@@ -308,6 +313,7 @@ type TeamGetTeamResponse = {
|
|
|
308
313
|
id: string;
|
|
309
314
|
name?: string | null;
|
|
310
315
|
username?: string | null;
|
|
316
|
+
avatarUrl?: string | null;
|
|
311
317
|
webhook?: {
|
|
312
318
|
id?: string | null;
|
|
313
319
|
name?: string | null;
|
|
@@ -426,6 +432,8 @@ type TeamGetListResponse = {
|
|
|
426
432
|
DISCORD?: number;
|
|
427
433
|
SLACK?: number;
|
|
428
434
|
MASTODON?: number;
|
|
435
|
+
BLUESKY?: number;
|
|
436
|
+
GOOGLE_BUSINESS?: number;
|
|
429
437
|
} | null;
|
|
430
438
|
apiAccess?: boolean;
|
|
431
439
|
analyticsDisabled?: boolean;
|
|
@@ -458,10 +466,11 @@ type TeamGetListResponse = {
|
|
|
458
466
|
}>;
|
|
459
467
|
socialAccounts: Array<{
|
|
460
468
|
id: string;
|
|
461
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
469
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
462
470
|
teamId: string;
|
|
463
471
|
username?: string | null;
|
|
464
472
|
displayName?: string | null;
|
|
473
|
+
avatarUrl?: string | null;
|
|
465
474
|
externalId?: string | null;
|
|
466
475
|
userUsername?: string | null;
|
|
467
476
|
userDisplayName?: string | null;
|
|
@@ -470,6 +479,7 @@ type TeamGetListResponse = {
|
|
|
470
479
|
id: string;
|
|
471
480
|
name?: string | null;
|
|
472
481
|
username?: string | null;
|
|
482
|
+
avatarUrl?: string | null;
|
|
473
483
|
webhook?: {
|
|
474
484
|
id?: string | null;
|
|
475
485
|
name?: string | null;
|
|
@@ -548,11 +558,11 @@ type SocialAccountConnectData = {
|
|
|
548
558
|
* Body
|
|
549
559
|
*/
|
|
550
560
|
requestBody?: {
|
|
551
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
561
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
552
562
|
teamId: string;
|
|
553
563
|
redirectUrl: string;
|
|
554
564
|
/**
|
|
555
|
-
* Mastodon only
|
|
565
|
+
* Mastodon or Bluesky only
|
|
556
566
|
*/
|
|
557
567
|
serverUrl?: string;
|
|
558
568
|
/**
|
|
@@ -572,16 +582,17 @@ type SocialAccountDisconnectData = {
|
|
|
572
582
|
* Body
|
|
573
583
|
*/
|
|
574
584
|
requestBody?: {
|
|
575
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
585
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
576
586
|
teamId: string;
|
|
577
587
|
};
|
|
578
588
|
};
|
|
579
589
|
type SocialAccountDisconnectResponse = {
|
|
580
590
|
id: string;
|
|
581
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
591
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
582
592
|
teamId: string;
|
|
583
593
|
username?: string | null;
|
|
584
594
|
displayName?: string | null;
|
|
595
|
+
avatarUrl?: string | null;
|
|
585
596
|
externalId?: string | null;
|
|
586
597
|
userUsername?: string | null;
|
|
587
598
|
userDisplayName?: string | null;
|
|
@@ -590,6 +601,7 @@ type SocialAccountDisconnectResponse = {
|
|
|
590
601
|
id: string;
|
|
591
602
|
name?: string | null;
|
|
592
603
|
username?: string | null;
|
|
604
|
+
avatarUrl?: string | null;
|
|
593
605
|
webhook?: {
|
|
594
606
|
id?: string | null;
|
|
595
607
|
name?: string | null;
|
|
@@ -608,17 +620,18 @@ type SocialAccountSetChannelData = {
|
|
|
608
620
|
* Body
|
|
609
621
|
*/
|
|
610
622
|
requestBody?: {
|
|
611
|
-
type: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE';
|
|
623
|
+
type: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'GOOGLE_BUSINESS';
|
|
612
624
|
teamId: string;
|
|
613
625
|
channelId: string;
|
|
614
626
|
};
|
|
615
627
|
};
|
|
616
628
|
type SocialAccountSetChannelResponse = {
|
|
617
629
|
id: string;
|
|
618
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
630
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
619
631
|
teamId: string;
|
|
620
632
|
username?: string | null;
|
|
621
633
|
displayName?: string | null;
|
|
634
|
+
avatarUrl?: string | null;
|
|
622
635
|
externalId?: string | null;
|
|
623
636
|
userUsername?: string | null;
|
|
624
637
|
userDisplayName?: string | null;
|
|
@@ -627,6 +640,7 @@ type SocialAccountSetChannelResponse = {
|
|
|
627
640
|
id: string;
|
|
628
641
|
name?: string | null;
|
|
629
642
|
username?: string | null;
|
|
643
|
+
avatarUrl?: string | null;
|
|
630
644
|
webhook?: {
|
|
631
645
|
id?: string | null;
|
|
632
646
|
name?: string | null;
|
|
@@ -645,16 +659,17 @@ type SocialAccountRefreshChannelsData = {
|
|
|
645
659
|
* Body
|
|
646
660
|
*/
|
|
647
661
|
requestBody?: {
|
|
648
|
-
type: 'DISCORD' | 'SLACK' | 'REDDIT' | 'PINTEREST' | 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE';
|
|
662
|
+
type: 'DISCORD' | 'SLACK' | 'REDDIT' | 'PINTEREST' | 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'GOOGLE_BUSINESS';
|
|
649
663
|
teamId: string;
|
|
650
664
|
};
|
|
651
665
|
};
|
|
652
666
|
type SocialAccountRefreshChannelsResponse = {
|
|
653
667
|
id: string;
|
|
654
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
668
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
655
669
|
teamId: string;
|
|
656
670
|
username?: string | null;
|
|
657
671
|
displayName?: string | null;
|
|
672
|
+
avatarUrl?: string | null;
|
|
658
673
|
externalId?: string | null;
|
|
659
674
|
userUsername?: string | null;
|
|
660
675
|
userDisplayName?: string | null;
|
|
@@ -663,6 +678,7 @@ type SocialAccountRefreshChannelsResponse = {
|
|
|
663
678
|
id: string;
|
|
664
679
|
name?: string | null;
|
|
665
680
|
username?: string | null;
|
|
681
|
+
avatarUrl?: string | null;
|
|
666
682
|
webhook?: {
|
|
667
683
|
id?: string | null;
|
|
668
684
|
name?: string | null;
|
|
@@ -683,7 +699,7 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
683
699
|
requestBody?: {
|
|
684
700
|
teamId: string;
|
|
685
701
|
redirectUrl: string;
|
|
686
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
702
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
687
703
|
logoUrl?: string;
|
|
688
704
|
userLogoUrl?: string;
|
|
689
705
|
userName?: string;
|
|
@@ -711,15 +727,16 @@ type SocialAccountCopyData = {
|
|
|
711
727
|
* 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.
|
|
712
728
|
*/
|
|
713
729
|
resetChannel?: boolean;
|
|
714
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
730
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
715
731
|
};
|
|
716
732
|
};
|
|
717
733
|
type SocialAccountCopyResponse = Array<{
|
|
718
734
|
id: string;
|
|
719
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
735
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
720
736
|
teamId: string;
|
|
721
737
|
username?: string | null;
|
|
722
738
|
displayName?: string | null;
|
|
739
|
+
avatarUrl?: string | null;
|
|
723
740
|
externalId?: string | null;
|
|
724
741
|
userUsername?: string | null;
|
|
725
742
|
userDisplayName?: string | null;
|
|
@@ -728,6 +745,7 @@ type SocialAccountCopyResponse = Array<{
|
|
|
728
745
|
id: string;
|
|
729
746
|
name?: string | null;
|
|
730
747
|
username?: string | null;
|
|
748
|
+
avatarUrl?: string | null;
|
|
731
749
|
webhook?: {
|
|
732
750
|
id?: string | null;
|
|
733
751
|
name?: string | null;
|
|
@@ -744,7 +762,7 @@ type SocialAccountCopyResponse = Array<{
|
|
|
744
762
|
type UploadGetListData = {
|
|
745
763
|
status?: 'USED' | 'UNUSED' | null;
|
|
746
764
|
teamId?: string | null;
|
|
747
|
-
type?: 'image' | 'video' | null;
|
|
765
|
+
type?: 'image' | 'video' | 'document' | null;
|
|
748
766
|
};
|
|
749
767
|
type UploadGetListResponse = Array<{
|
|
750
768
|
id: string;
|
|
@@ -757,7 +775,7 @@ type UploadGetListResponse = Array<{
|
|
|
757
775
|
iconPath?: string | null;
|
|
758
776
|
thumbnailPath?: string | null;
|
|
759
777
|
path?: string | null;
|
|
760
|
-
type: 'image' | 'video';
|
|
778
|
+
type: 'image' | 'video' | 'document';
|
|
761
779
|
width?: number | null;
|
|
762
780
|
height?: number | null;
|
|
763
781
|
fileSize?: number | null;
|
|
@@ -794,7 +812,7 @@ type UploadCreateResponse = {
|
|
|
794
812
|
iconPath?: string | null;
|
|
795
813
|
thumbnailPath?: string | null;
|
|
796
814
|
path?: string | null;
|
|
797
|
-
type: 'image' | 'video';
|
|
815
|
+
type: 'image' | 'video' | 'document';
|
|
798
816
|
width?: number | null;
|
|
799
817
|
height?: number | null;
|
|
800
818
|
fileSize?: number | null;
|
|
@@ -823,7 +841,7 @@ type UploadDeleteManyResponse = Array<{
|
|
|
823
841
|
iconPath?: string | null;
|
|
824
842
|
thumbnailPath?: string | null;
|
|
825
843
|
path?: string | null;
|
|
826
|
-
type: 'image' | 'video';
|
|
844
|
+
type: 'image' | 'video' | 'document';
|
|
827
845
|
width?: number | null;
|
|
828
846
|
height?: number | null;
|
|
829
847
|
fileSize?: number | null;
|
|
@@ -847,7 +865,7 @@ type UploadGetResponse = {
|
|
|
847
865
|
iconPath?: string | null;
|
|
848
866
|
thumbnailPath?: string | null;
|
|
849
867
|
path?: string | null;
|
|
850
|
-
type: 'image' | 'video';
|
|
868
|
+
type: 'image' | 'video' | 'document';
|
|
851
869
|
width?: number | null;
|
|
852
870
|
height?: number | null;
|
|
853
871
|
fileSize?: number | null;
|
|
@@ -878,7 +896,7 @@ type UploadDeleteResponse = {
|
|
|
878
896
|
iconPath?: string | null;
|
|
879
897
|
thumbnailPath?: string | null;
|
|
880
898
|
path?: string | null;
|
|
881
|
-
type: 'image' | 'video';
|
|
899
|
+
type: 'image' | 'video' | 'document';
|
|
882
900
|
width?: number | null;
|
|
883
901
|
height?: number | null;
|
|
884
902
|
fileSize?: number | null;
|
|
@@ -895,7 +913,7 @@ type UploadInitLargeUploadData = {
|
|
|
895
913
|
requestBody?: {
|
|
896
914
|
teamId?: string | null;
|
|
897
915
|
fileName: string;
|
|
898
|
-
mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4';
|
|
916
|
+
mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'video/mp4' | 'application/pdf';
|
|
899
917
|
};
|
|
900
918
|
};
|
|
901
919
|
type UploadInitLargeUploadResponse = {
|
|
@@ -922,7 +940,7 @@ type UploadFinalizeLargeUploadResponse = {
|
|
|
922
940
|
iconPath?: string | null;
|
|
923
941
|
thumbnailPath?: string | null;
|
|
924
942
|
path?: string | null;
|
|
925
|
-
type: 'image' | 'video';
|
|
943
|
+
type: 'image' | 'video' | 'document';
|
|
926
944
|
width?: number | null;
|
|
927
945
|
height?: number | null;
|
|
928
946
|
fileSize?: number | null;
|
|
@@ -1149,6 +1167,62 @@ type PostGetResponse = {
|
|
|
1149
1167
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1150
1168
|
spoiler?: string | null;
|
|
1151
1169
|
} | null;
|
|
1170
|
+
BLUESKY?: {
|
|
1171
|
+
text?: string | null;
|
|
1172
|
+
uploadIds?: Array<(string)> | null;
|
|
1173
|
+
/**
|
|
1174
|
+
* Extra hashtags (without #), up to 8.
|
|
1175
|
+
*/
|
|
1176
|
+
tags?: Array<(string)> | null;
|
|
1177
|
+
/**
|
|
1178
|
+
* Self-labels (content warnings) applied to the post.
|
|
1179
|
+
*/
|
|
1180
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1181
|
+
/**
|
|
1182
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1183
|
+
*/
|
|
1184
|
+
quoteUri?: string;
|
|
1185
|
+
/**
|
|
1186
|
+
* Target URL for the external link card
|
|
1187
|
+
*/
|
|
1188
|
+
externalUrl?: string | null;
|
|
1189
|
+
/**
|
|
1190
|
+
* Card title for the external link card
|
|
1191
|
+
*/
|
|
1192
|
+
externalTitle?: string | null;
|
|
1193
|
+
/**
|
|
1194
|
+
* Card description for the external link card
|
|
1195
|
+
*/
|
|
1196
|
+
externalDescription?: string | null;
|
|
1197
|
+
/**
|
|
1198
|
+
* Alt text for the video embed.
|
|
1199
|
+
*/
|
|
1200
|
+
videoAlt?: string | null;
|
|
1201
|
+
} | null;
|
|
1202
|
+
GOOGLE_BUSINESS?: {
|
|
1203
|
+
text?: string | null;
|
|
1204
|
+
/**
|
|
1205
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1206
|
+
*/
|
|
1207
|
+
uploadIds?: Array<(string)> | null;
|
|
1208
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1209
|
+
/**
|
|
1210
|
+
* Language tag like 'en' or 'en-US'.
|
|
1211
|
+
*/
|
|
1212
|
+
languageCode?: string | null;
|
|
1213
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1214
|
+
callToActionUrl?: string | null;
|
|
1215
|
+
eventTitle?: string | null;
|
|
1216
|
+
eventStartDate?: string | null;
|
|
1217
|
+
eventEndDate?: string | null;
|
|
1218
|
+
offerCouponCode?: string | null;
|
|
1219
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1220
|
+
offerTermsConditions?: string | null;
|
|
1221
|
+
/**
|
|
1222
|
+
* Alert type for ALERT posts.
|
|
1223
|
+
*/
|
|
1224
|
+
alertType?: 'COVID_19' | null;
|
|
1225
|
+
} | null;
|
|
1152
1226
|
};
|
|
1153
1227
|
error?: string | null;
|
|
1154
1228
|
errors?: {
|
|
@@ -1164,6 +1238,8 @@ type PostGetResponse = {
|
|
|
1164
1238
|
YOUTUBE?: string | null;
|
|
1165
1239
|
MASTODON?: string | null;
|
|
1166
1240
|
THREADS?: string | null;
|
|
1241
|
+
BLUESKY?: string | null;
|
|
1242
|
+
GOOGLE_BUSINESS?: string | null;
|
|
1167
1243
|
} | null;
|
|
1168
1244
|
externalData?: {
|
|
1169
1245
|
TWITTER?: {
|
|
@@ -1180,12 +1256,12 @@ type PostGetResponse = {
|
|
|
1180
1256
|
postId?: string | null;
|
|
1181
1257
|
videoId?: string | null;
|
|
1182
1258
|
permalink?: string | null;
|
|
1183
|
-
thumbnail?: string;
|
|
1259
|
+
thumbnail?: string | null;
|
|
1184
1260
|
} | null;
|
|
1185
1261
|
INSTAGRAM?: {
|
|
1186
1262
|
id?: string | null;
|
|
1187
1263
|
permalink?: string | null;
|
|
1188
|
-
thumbnail?: string;
|
|
1264
|
+
thumbnail?: string | null;
|
|
1189
1265
|
} | null;
|
|
1190
1266
|
TIKTOK?: {
|
|
1191
1267
|
id?: string | null;
|
|
@@ -1195,7 +1271,7 @@ type PostGetResponse = {
|
|
|
1195
1271
|
id?: string | null;
|
|
1196
1272
|
activity?: string | null;
|
|
1197
1273
|
permalink?: string | null;
|
|
1198
|
-
thumbnail?: string;
|
|
1274
|
+
thumbnail?: string | null;
|
|
1199
1275
|
} | null;
|
|
1200
1276
|
REDDIT?: {
|
|
1201
1277
|
id?: string | null;
|
|
@@ -1226,6 +1302,29 @@ type PostGetResponse = {
|
|
|
1226
1302
|
id?: string | null;
|
|
1227
1303
|
permalink?: string | null;
|
|
1228
1304
|
} | null;
|
|
1305
|
+
BLUESKY?: {
|
|
1306
|
+
id?: string | null;
|
|
1307
|
+
uri?: string | null;
|
|
1308
|
+
/**
|
|
1309
|
+
* Content ID of the created record
|
|
1310
|
+
*/
|
|
1311
|
+
cid?: string | null;
|
|
1312
|
+
permalink?: string | null;
|
|
1313
|
+
/**
|
|
1314
|
+
* Author DID (owner of the record)
|
|
1315
|
+
*/
|
|
1316
|
+
did?: string | null;
|
|
1317
|
+
} | null;
|
|
1318
|
+
GOOGLE_BUSINESS?: {
|
|
1319
|
+
/**
|
|
1320
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
1321
|
+
*/
|
|
1322
|
+
id?: string | null;
|
|
1323
|
+
/**
|
|
1324
|
+
* Public link to the post (searchUrl) when available.
|
|
1325
|
+
*/
|
|
1326
|
+
permalink?: string | null;
|
|
1327
|
+
} | null;
|
|
1229
1328
|
} | null;
|
|
1230
1329
|
createdAt: string | null;
|
|
1231
1330
|
updatedAt: string | null;
|
|
@@ -1247,7 +1346,7 @@ type PostGetResponse = {
|
|
|
1247
1346
|
iconPath?: string | null;
|
|
1248
1347
|
thumbnailPath?: string | null;
|
|
1249
1348
|
path?: string | null;
|
|
1250
|
-
type: 'image' | 'video';
|
|
1349
|
+
type: 'image' | 'video' | 'document';
|
|
1251
1350
|
width?: number | null;
|
|
1252
1351
|
height?: number | null;
|
|
1253
1352
|
fileSize?: number | null;
|
|
@@ -1266,10 +1365,11 @@ type PostGetResponse = {
|
|
|
1266
1365
|
deletedAt?: string | null;
|
|
1267
1366
|
socialAccount: {
|
|
1268
1367
|
id: string;
|
|
1269
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
1368
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1270
1369
|
teamId: string;
|
|
1271
1370
|
username?: string | null;
|
|
1272
1371
|
displayName?: string | null;
|
|
1372
|
+
avatarUrl?: string | null;
|
|
1273
1373
|
externalId?: string | null;
|
|
1274
1374
|
userUsername?: string | null;
|
|
1275
1375
|
userDisplayName?: string | null;
|
|
@@ -1278,6 +1378,7 @@ type PostGetResponse = {
|
|
|
1278
1378
|
id: string;
|
|
1279
1379
|
name?: string | null;
|
|
1280
1380
|
username?: string | null;
|
|
1381
|
+
avatarUrl?: string | null;
|
|
1281
1382
|
webhook?: {
|
|
1282
1383
|
id?: string | null;
|
|
1283
1384
|
name?: string | null;
|
|
@@ -1302,7 +1403,7 @@ type PostUpdateData = {
|
|
|
1302
1403
|
title?: string;
|
|
1303
1404
|
postDate?: string;
|
|
1304
1405
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
1305
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
1406
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
1306
1407
|
data?: {
|
|
1307
1408
|
TWITTER?: {
|
|
1308
1409
|
text?: string | null;
|
|
@@ -1509,6 +1610,62 @@ type PostUpdateData = {
|
|
|
1509
1610
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1510
1611
|
spoiler?: string | null;
|
|
1511
1612
|
} | null;
|
|
1613
|
+
BLUESKY?: {
|
|
1614
|
+
text?: string | null;
|
|
1615
|
+
uploadIds?: Array<(string)> | null;
|
|
1616
|
+
/**
|
|
1617
|
+
* Extra hashtags (without #), up to 8.
|
|
1618
|
+
*/
|
|
1619
|
+
tags?: Array<(string)> | null;
|
|
1620
|
+
/**
|
|
1621
|
+
* Self-labels (content warnings) applied to the post.
|
|
1622
|
+
*/
|
|
1623
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1624
|
+
/**
|
|
1625
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1626
|
+
*/
|
|
1627
|
+
quoteUri?: string;
|
|
1628
|
+
/**
|
|
1629
|
+
* Target URL for the external link card
|
|
1630
|
+
*/
|
|
1631
|
+
externalUrl?: string | null;
|
|
1632
|
+
/**
|
|
1633
|
+
* Card title for the external link card
|
|
1634
|
+
*/
|
|
1635
|
+
externalTitle?: string | null;
|
|
1636
|
+
/**
|
|
1637
|
+
* Card description for the external link card
|
|
1638
|
+
*/
|
|
1639
|
+
externalDescription?: string | null;
|
|
1640
|
+
/**
|
|
1641
|
+
* Alt text for the video embed.
|
|
1642
|
+
*/
|
|
1643
|
+
videoAlt?: string | null;
|
|
1644
|
+
} | null;
|
|
1645
|
+
GOOGLE_BUSINESS?: {
|
|
1646
|
+
text?: string | null;
|
|
1647
|
+
/**
|
|
1648
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1649
|
+
*/
|
|
1650
|
+
uploadIds?: Array<(string)> | null;
|
|
1651
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1652
|
+
/**
|
|
1653
|
+
* Language tag like 'en' or 'en-US'.
|
|
1654
|
+
*/
|
|
1655
|
+
languageCode?: string | null;
|
|
1656
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1657
|
+
callToActionUrl?: string | null;
|
|
1658
|
+
eventTitle?: string | null;
|
|
1659
|
+
eventStartDate?: string | null;
|
|
1660
|
+
eventEndDate?: string | null;
|
|
1661
|
+
offerCouponCode?: string | null;
|
|
1662
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1663
|
+
offerTermsConditions?: string | null;
|
|
1664
|
+
/**
|
|
1665
|
+
* Alert type for ALERT posts.
|
|
1666
|
+
*/
|
|
1667
|
+
alertType?: 'COVID_19' | null;
|
|
1668
|
+
} | null;
|
|
1512
1669
|
};
|
|
1513
1670
|
};
|
|
1514
1671
|
};
|
|
@@ -1726,6 +1883,62 @@ type PostUpdateResponse = {
|
|
|
1726
1883
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
1727
1884
|
spoiler?: string | null;
|
|
1728
1885
|
} | null;
|
|
1886
|
+
BLUESKY?: {
|
|
1887
|
+
text?: string | null;
|
|
1888
|
+
uploadIds?: Array<(string)> | null;
|
|
1889
|
+
/**
|
|
1890
|
+
* Extra hashtags (without #), up to 8.
|
|
1891
|
+
*/
|
|
1892
|
+
tags?: Array<(string)> | null;
|
|
1893
|
+
/**
|
|
1894
|
+
* Self-labels (content warnings) applied to the post.
|
|
1895
|
+
*/
|
|
1896
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
1897
|
+
/**
|
|
1898
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
1899
|
+
*/
|
|
1900
|
+
quoteUri?: string;
|
|
1901
|
+
/**
|
|
1902
|
+
* Target URL for the external link card
|
|
1903
|
+
*/
|
|
1904
|
+
externalUrl?: string | null;
|
|
1905
|
+
/**
|
|
1906
|
+
* Card title for the external link card
|
|
1907
|
+
*/
|
|
1908
|
+
externalTitle?: string | null;
|
|
1909
|
+
/**
|
|
1910
|
+
* Card description for the external link card
|
|
1911
|
+
*/
|
|
1912
|
+
externalDescription?: string | null;
|
|
1913
|
+
/**
|
|
1914
|
+
* Alt text for the video embed.
|
|
1915
|
+
*/
|
|
1916
|
+
videoAlt?: string | null;
|
|
1917
|
+
} | null;
|
|
1918
|
+
GOOGLE_BUSINESS?: {
|
|
1919
|
+
text?: string | null;
|
|
1920
|
+
/**
|
|
1921
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
1922
|
+
*/
|
|
1923
|
+
uploadIds?: Array<(string)> | null;
|
|
1924
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
1925
|
+
/**
|
|
1926
|
+
* Language tag like 'en' or 'en-US'.
|
|
1927
|
+
*/
|
|
1928
|
+
languageCode?: string | null;
|
|
1929
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
1930
|
+
callToActionUrl?: string | null;
|
|
1931
|
+
eventTitle?: string | null;
|
|
1932
|
+
eventStartDate?: string | null;
|
|
1933
|
+
eventEndDate?: string | null;
|
|
1934
|
+
offerCouponCode?: string | null;
|
|
1935
|
+
offerRedeemOnlineUrl?: string | null;
|
|
1936
|
+
offerTermsConditions?: string | null;
|
|
1937
|
+
/**
|
|
1938
|
+
* Alert type for ALERT posts.
|
|
1939
|
+
*/
|
|
1940
|
+
alertType?: 'COVID_19' | null;
|
|
1941
|
+
} | null;
|
|
1729
1942
|
};
|
|
1730
1943
|
error?: string | null;
|
|
1731
1944
|
errors?: {
|
|
@@ -1741,6 +1954,8 @@ type PostUpdateResponse = {
|
|
|
1741
1954
|
YOUTUBE?: string | null;
|
|
1742
1955
|
MASTODON?: string | null;
|
|
1743
1956
|
THREADS?: string | null;
|
|
1957
|
+
BLUESKY?: string | null;
|
|
1958
|
+
GOOGLE_BUSINESS?: string | null;
|
|
1744
1959
|
} | null;
|
|
1745
1960
|
externalData?: {
|
|
1746
1961
|
TWITTER?: {
|
|
@@ -1757,12 +1972,12 @@ type PostUpdateResponse = {
|
|
|
1757
1972
|
postId?: string | null;
|
|
1758
1973
|
videoId?: string | null;
|
|
1759
1974
|
permalink?: string | null;
|
|
1760
|
-
thumbnail?: string;
|
|
1975
|
+
thumbnail?: string | null;
|
|
1761
1976
|
} | null;
|
|
1762
1977
|
INSTAGRAM?: {
|
|
1763
1978
|
id?: string | null;
|
|
1764
1979
|
permalink?: string | null;
|
|
1765
|
-
thumbnail?: string;
|
|
1980
|
+
thumbnail?: string | null;
|
|
1766
1981
|
} | null;
|
|
1767
1982
|
TIKTOK?: {
|
|
1768
1983
|
id?: string | null;
|
|
@@ -1772,7 +1987,7 @@ type PostUpdateResponse = {
|
|
|
1772
1987
|
id?: string | null;
|
|
1773
1988
|
activity?: string | null;
|
|
1774
1989
|
permalink?: string | null;
|
|
1775
|
-
thumbnail?: string;
|
|
1990
|
+
thumbnail?: string | null;
|
|
1776
1991
|
} | null;
|
|
1777
1992
|
REDDIT?: {
|
|
1778
1993
|
id?: string | null;
|
|
@@ -1803,6 +2018,29 @@ type PostUpdateResponse = {
|
|
|
1803
2018
|
id?: string | null;
|
|
1804
2019
|
permalink?: string | null;
|
|
1805
2020
|
} | null;
|
|
2021
|
+
BLUESKY?: {
|
|
2022
|
+
id?: string | null;
|
|
2023
|
+
uri?: string | null;
|
|
2024
|
+
/**
|
|
2025
|
+
* Content ID of the created record
|
|
2026
|
+
*/
|
|
2027
|
+
cid?: string | null;
|
|
2028
|
+
permalink?: string | null;
|
|
2029
|
+
/**
|
|
2030
|
+
* Author DID (owner of the record)
|
|
2031
|
+
*/
|
|
2032
|
+
did?: string | null;
|
|
2033
|
+
} | null;
|
|
2034
|
+
GOOGLE_BUSINESS?: {
|
|
2035
|
+
/**
|
|
2036
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2037
|
+
*/
|
|
2038
|
+
id?: string | null;
|
|
2039
|
+
/**
|
|
2040
|
+
* Public link to the post (searchUrl) when available.
|
|
2041
|
+
*/
|
|
2042
|
+
permalink?: string | null;
|
|
2043
|
+
} | null;
|
|
1806
2044
|
} | null;
|
|
1807
2045
|
createdAt: string | null;
|
|
1808
2046
|
updatedAt: string | null;
|
|
@@ -2025,6 +2263,62 @@ type PostDeleteResponse = {
|
|
|
2025
2263
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2026
2264
|
spoiler?: string | null;
|
|
2027
2265
|
} | null;
|
|
2266
|
+
BLUESKY?: {
|
|
2267
|
+
text?: string | null;
|
|
2268
|
+
uploadIds?: Array<(string)> | null;
|
|
2269
|
+
/**
|
|
2270
|
+
* Extra hashtags (without #), up to 8.
|
|
2271
|
+
*/
|
|
2272
|
+
tags?: Array<(string)> | null;
|
|
2273
|
+
/**
|
|
2274
|
+
* Self-labels (content warnings) applied to the post.
|
|
2275
|
+
*/
|
|
2276
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
2277
|
+
/**
|
|
2278
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
2279
|
+
*/
|
|
2280
|
+
quoteUri?: string;
|
|
2281
|
+
/**
|
|
2282
|
+
* Target URL for the external link card
|
|
2283
|
+
*/
|
|
2284
|
+
externalUrl?: string | null;
|
|
2285
|
+
/**
|
|
2286
|
+
* Card title for the external link card
|
|
2287
|
+
*/
|
|
2288
|
+
externalTitle?: string | null;
|
|
2289
|
+
/**
|
|
2290
|
+
* Card description for the external link card
|
|
2291
|
+
*/
|
|
2292
|
+
externalDescription?: string | null;
|
|
2293
|
+
/**
|
|
2294
|
+
* Alt text for the video embed.
|
|
2295
|
+
*/
|
|
2296
|
+
videoAlt?: string | null;
|
|
2297
|
+
} | null;
|
|
2298
|
+
GOOGLE_BUSINESS?: {
|
|
2299
|
+
text?: string | null;
|
|
2300
|
+
/**
|
|
2301
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
2302
|
+
*/
|
|
2303
|
+
uploadIds?: Array<(string)> | null;
|
|
2304
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
2305
|
+
/**
|
|
2306
|
+
* Language tag like 'en' or 'en-US'.
|
|
2307
|
+
*/
|
|
2308
|
+
languageCode?: string | null;
|
|
2309
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
2310
|
+
callToActionUrl?: string | null;
|
|
2311
|
+
eventTitle?: string | null;
|
|
2312
|
+
eventStartDate?: string | null;
|
|
2313
|
+
eventEndDate?: string | null;
|
|
2314
|
+
offerCouponCode?: string | null;
|
|
2315
|
+
offerRedeemOnlineUrl?: string | null;
|
|
2316
|
+
offerTermsConditions?: string | null;
|
|
2317
|
+
/**
|
|
2318
|
+
* Alert type for ALERT posts.
|
|
2319
|
+
*/
|
|
2320
|
+
alertType?: 'COVID_19' | null;
|
|
2321
|
+
} | null;
|
|
2028
2322
|
};
|
|
2029
2323
|
error?: string | null;
|
|
2030
2324
|
errors?: {
|
|
@@ -2040,6 +2334,8 @@ type PostDeleteResponse = {
|
|
|
2040
2334
|
YOUTUBE?: string | null;
|
|
2041
2335
|
MASTODON?: string | null;
|
|
2042
2336
|
THREADS?: string | null;
|
|
2337
|
+
BLUESKY?: string | null;
|
|
2338
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2043
2339
|
} | null;
|
|
2044
2340
|
externalData?: {
|
|
2045
2341
|
TWITTER?: {
|
|
@@ -2056,12 +2352,12 @@ type PostDeleteResponse = {
|
|
|
2056
2352
|
postId?: string | null;
|
|
2057
2353
|
videoId?: string | null;
|
|
2058
2354
|
permalink?: string | null;
|
|
2059
|
-
thumbnail?: string;
|
|
2355
|
+
thumbnail?: string | null;
|
|
2060
2356
|
} | null;
|
|
2061
2357
|
INSTAGRAM?: {
|
|
2062
2358
|
id?: string | null;
|
|
2063
2359
|
permalink?: string | null;
|
|
2064
|
-
thumbnail?: string;
|
|
2360
|
+
thumbnail?: string | null;
|
|
2065
2361
|
} | null;
|
|
2066
2362
|
TIKTOK?: {
|
|
2067
2363
|
id?: string | null;
|
|
@@ -2071,7 +2367,7 @@ type PostDeleteResponse = {
|
|
|
2071
2367
|
id?: string | null;
|
|
2072
2368
|
activity?: string | null;
|
|
2073
2369
|
permalink?: string | null;
|
|
2074
|
-
thumbnail?: string;
|
|
2370
|
+
thumbnail?: string | null;
|
|
2075
2371
|
} | null;
|
|
2076
2372
|
REDDIT?: {
|
|
2077
2373
|
id?: string | null;
|
|
@@ -2102,6 +2398,29 @@ type PostDeleteResponse = {
|
|
|
2102
2398
|
id?: string | null;
|
|
2103
2399
|
permalink?: string | null;
|
|
2104
2400
|
} | null;
|
|
2401
|
+
BLUESKY?: {
|
|
2402
|
+
id?: string | null;
|
|
2403
|
+
uri?: string | null;
|
|
2404
|
+
/**
|
|
2405
|
+
* Content ID of the created record
|
|
2406
|
+
*/
|
|
2407
|
+
cid?: string | null;
|
|
2408
|
+
permalink?: string | null;
|
|
2409
|
+
/**
|
|
2410
|
+
* Author DID (owner of the record)
|
|
2411
|
+
*/
|
|
2412
|
+
did?: string | null;
|
|
2413
|
+
} | null;
|
|
2414
|
+
GOOGLE_BUSINESS?: {
|
|
2415
|
+
/**
|
|
2416
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2417
|
+
*/
|
|
2418
|
+
id?: string | null;
|
|
2419
|
+
/**
|
|
2420
|
+
* Public link to the post (searchUrl) when available.
|
|
2421
|
+
*/
|
|
2422
|
+
permalink?: string | null;
|
|
2423
|
+
} | null;
|
|
2105
2424
|
} | null;
|
|
2106
2425
|
createdAt: string | null;
|
|
2107
2426
|
updatedAt: string | null;
|
|
@@ -2112,7 +2431,7 @@ type PostGetListData = {
|
|
|
2112
2431
|
offset?: number | null;
|
|
2113
2432
|
order?: 'ASC' | 'DESC' | null;
|
|
2114
2433
|
orderBy?: 'createdAt' | 'updatedAt' | 'postDate' | 'postedDate' | 'deletedAt' | null;
|
|
2115
|
-
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')> | null;
|
|
2434
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')> | null;
|
|
2116
2435
|
q?: string | null;
|
|
2117
2436
|
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | null;
|
|
2118
2437
|
teamId: string;
|
|
@@ -2332,6 +2651,62 @@ type PostGetListResponse = {
|
|
|
2332
2651
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2333
2652
|
spoiler?: string | null;
|
|
2334
2653
|
} | null;
|
|
2654
|
+
BLUESKY?: {
|
|
2655
|
+
text?: string | null;
|
|
2656
|
+
uploadIds?: Array<(string)> | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* Extra hashtags (without #), up to 8.
|
|
2659
|
+
*/
|
|
2660
|
+
tags?: Array<(string)> | null;
|
|
2661
|
+
/**
|
|
2662
|
+
* Self-labels (content warnings) applied to the post.
|
|
2663
|
+
*/
|
|
2664
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
2665
|
+
/**
|
|
2666
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
2667
|
+
*/
|
|
2668
|
+
quoteUri?: string;
|
|
2669
|
+
/**
|
|
2670
|
+
* Target URL for the external link card
|
|
2671
|
+
*/
|
|
2672
|
+
externalUrl?: string | null;
|
|
2673
|
+
/**
|
|
2674
|
+
* Card title for the external link card
|
|
2675
|
+
*/
|
|
2676
|
+
externalTitle?: string | null;
|
|
2677
|
+
/**
|
|
2678
|
+
* Card description for the external link card
|
|
2679
|
+
*/
|
|
2680
|
+
externalDescription?: string | null;
|
|
2681
|
+
/**
|
|
2682
|
+
* Alt text for the video embed.
|
|
2683
|
+
*/
|
|
2684
|
+
videoAlt?: string | null;
|
|
2685
|
+
} | null;
|
|
2686
|
+
GOOGLE_BUSINESS?: {
|
|
2687
|
+
text?: string | null;
|
|
2688
|
+
/**
|
|
2689
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
2690
|
+
*/
|
|
2691
|
+
uploadIds?: Array<(string)> | null;
|
|
2692
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
2693
|
+
/**
|
|
2694
|
+
* Language tag like 'en' or 'en-US'.
|
|
2695
|
+
*/
|
|
2696
|
+
languageCode?: string | null;
|
|
2697
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
2698
|
+
callToActionUrl?: string | null;
|
|
2699
|
+
eventTitle?: string | null;
|
|
2700
|
+
eventStartDate?: string | null;
|
|
2701
|
+
eventEndDate?: string | null;
|
|
2702
|
+
offerCouponCode?: string | null;
|
|
2703
|
+
offerRedeemOnlineUrl?: string | null;
|
|
2704
|
+
offerTermsConditions?: string | null;
|
|
2705
|
+
/**
|
|
2706
|
+
* Alert type for ALERT posts.
|
|
2707
|
+
*/
|
|
2708
|
+
alertType?: 'COVID_19' | null;
|
|
2709
|
+
} | null;
|
|
2335
2710
|
};
|
|
2336
2711
|
error?: string | null;
|
|
2337
2712
|
errors?: {
|
|
@@ -2347,6 +2722,8 @@ type PostGetListResponse = {
|
|
|
2347
2722
|
YOUTUBE?: string | null;
|
|
2348
2723
|
MASTODON?: string | null;
|
|
2349
2724
|
THREADS?: string | null;
|
|
2725
|
+
BLUESKY?: string | null;
|
|
2726
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2350
2727
|
} | null;
|
|
2351
2728
|
externalData?: {
|
|
2352
2729
|
TWITTER?: {
|
|
@@ -2363,12 +2740,12 @@ type PostGetListResponse = {
|
|
|
2363
2740
|
postId?: string | null;
|
|
2364
2741
|
videoId?: string | null;
|
|
2365
2742
|
permalink?: string | null;
|
|
2366
|
-
thumbnail?: string;
|
|
2743
|
+
thumbnail?: string | null;
|
|
2367
2744
|
} | null;
|
|
2368
2745
|
INSTAGRAM?: {
|
|
2369
2746
|
id?: string | null;
|
|
2370
2747
|
permalink?: string | null;
|
|
2371
|
-
thumbnail?: string;
|
|
2748
|
+
thumbnail?: string | null;
|
|
2372
2749
|
} | null;
|
|
2373
2750
|
TIKTOK?: {
|
|
2374
2751
|
id?: string | null;
|
|
@@ -2378,7 +2755,7 @@ type PostGetListResponse = {
|
|
|
2378
2755
|
id?: string | null;
|
|
2379
2756
|
activity?: string | null;
|
|
2380
2757
|
permalink?: string | null;
|
|
2381
|
-
thumbnail?: string;
|
|
2758
|
+
thumbnail?: string | null;
|
|
2382
2759
|
} | null;
|
|
2383
2760
|
REDDIT?: {
|
|
2384
2761
|
id?: string | null;
|
|
@@ -2409,6 +2786,29 @@ type PostGetListResponse = {
|
|
|
2409
2786
|
id?: string | null;
|
|
2410
2787
|
permalink?: string | null;
|
|
2411
2788
|
} | null;
|
|
2789
|
+
BLUESKY?: {
|
|
2790
|
+
id?: string | null;
|
|
2791
|
+
uri?: string | null;
|
|
2792
|
+
/**
|
|
2793
|
+
* Content ID of the created record
|
|
2794
|
+
*/
|
|
2795
|
+
cid?: string | null;
|
|
2796
|
+
permalink?: string | null;
|
|
2797
|
+
/**
|
|
2798
|
+
* Author DID (owner of the record)
|
|
2799
|
+
*/
|
|
2800
|
+
did?: string | null;
|
|
2801
|
+
} | null;
|
|
2802
|
+
GOOGLE_BUSINESS?: {
|
|
2803
|
+
/**
|
|
2804
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2805
|
+
*/
|
|
2806
|
+
id?: string | null;
|
|
2807
|
+
/**
|
|
2808
|
+
* Public link to the post (searchUrl) when available.
|
|
2809
|
+
*/
|
|
2810
|
+
permalink?: string | null;
|
|
2811
|
+
} | null;
|
|
2412
2812
|
} | null;
|
|
2413
2813
|
createdAt: string | null;
|
|
2414
2814
|
updatedAt: string | null;
|
|
@@ -2430,7 +2830,7 @@ type PostGetListResponse = {
|
|
|
2430
2830
|
iconPath?: string | null;
|
|
2431
2831
|
thumbnailPath?: string | null;
|
|
2432
2832
|
path?: string | null;
|
|
2433
|
-
type: 'image' | 'video';
|
|
2833
|
+
type: 'image' | 'video' | 'document';
|
|
2434
2834
|
width?: number | null;
|
|
2435
2835
|
height?: number | null;
|
|
2436
2836
|
fileSize?: number | null;
|
|
@@ -2449,10 +2849,11 @@ type PostGetListResponse = {
|
|
|
2449
2849
|
deletedAt?: string | null;
|
|
2450
2850
|
socialAccount: {
|
|
2451
2851
|
id: string;
|
|
2452
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
2852
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
2453
2853
|
teamId: string;
|
|
2454
2854
|
username?: string | null;
|
|
2455
2855
|
displayName?: string | null;
|
|
2856
|
+
avatarUrl?: string | null;
|
|
2456
2857
|
externalId?: string | null;
|
|
2457
2858
|
userUsername?: string | null;
|
|
2458
2859
|
userDisplayName?: string | null;
|
|
@@ -2461,6 +2862,7 @@ type PostGetListResponse = {
|
|
|
2461
2862
|
id: string;
|
|
2462
2863
|
name?: string | null;
|
|
2463
2864
|
username?: string | null;
|
|
2865
|
+
avatarUrl?: string | null;
|
|
2464
2866
|
webhook?: {
|
|
2465
2867
|
id?: string | null;
|
|
2466
2868
|
name?: string | null;
|
|
@@ -2487,7 +2889,7 @@ type PostCreateData = {
|
|
|
2487
2889
|
title: string;
|
|
2488
2890
|
postDate: string;
|
|
2489
2891
|
status: 'DRAFT' | 'SCHEDULED';
|
|
2490
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
2892
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
2491
2893
|
data: {
|
|
2492
2894
|
TWITTER?: {
|
|
2493
2895
|
text?: string | null;
|
|
@@ -2694,6 +3096,62 @@ type PostCreateData = {
|
|
|
2694
3096
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2695
3097
|
spoiler?: string | null;
|
|
2696
3098
|
} | null;
|
|
3099
|
+
BLUESKY?: {
|
|
3100
|
+
text?: string | null;
|
|
3101
|
+
uploadIds?: Array<(string)> | null;
|
|
3102
|
+
/**
|
|
3103
|
+
* Extra hashtags (without #), up to 8.
|
|
3104
|
+
*/
|
|
3105
|
+
tags?: Array<(string)> | null;
|
|
3106
|
+
/**
|
|
3107
|
+
* Self-labels (content warnings) applied to the post.
|
|
3108
|
+
*/
|
|
3109
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3110
|
+
/**
|
|
3111
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3112
|
+
*/
|
|
3113
|
+
quoteUri?: string;
|
|
3114
|
+
/**
|
|
3115
|
+
* Target URL for the external link card
|
|
3116
|
+
*/
|
|
3117
|
+
externalUrl?: string | null;
|
|
3118
|
+
/**
|
|
3119
|
+
* Card title for the external link card
|
|
3120
|
+
*/
|
|
3121
|
+
externalTitle?: string | null;
|
|
3122
|
+
/**
|
|
3123
|
+
* Card description for the external link card
|
|
3124
|
+
*/
|
|
3125
|
+
externalDescription?: string | null;
|
|
3126
|
+
/**
|
|
3127
|
+
* Alt text for the video embed.
|
|
3128
|
+
*/
|
|
3129
|
+
videoAlt?: string | null;
|
|
3130
|
+
} | null;
|
|
3131
|
+
GOOGLE_BUSINESS?: {
|
|
3132
|
+
text?: string | null;
|
|
3133
|
+
/**
|
|
3134
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3135
|
+
*/
|
|
3136
|
+
uploadIds?: Array<(string)> | null;
|
|
3137
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3138
|
+
/**
|
|
3139
|
+
* Language tag like 'en' or 'en-US'.
|
|
3140
|
+
*/
|
|
3141
|
+
languageCode?: string | null;
|
|
3142
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3143
|
+
callToActionUrl?: string | null;
|
|
3144
|
+
eventTitle?: string | null;
|
|
3145
|
+
eventStartDate?: string | null;
|
|
3146
|
+
eventEndDate?: string | null;
|
|
3147
|
+
offerCouponCode?: string | null;
|
|
3148
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3149
|
+
offerTermsConditions?: string | null;
|
|
3150
|
+
/**
|
|
3151
|
+
* Alert type for ALERT posts.
|
|
3152
|
+
*/
|
|
3153
|
+
alertType?: 'COVID_19' | null;
|
|
3154
|
+
} | null;
|
|
2697
3155
|
};
|
|
2698
3156
|
};
|
|
2699
3157
|
};
|
|
@@ -2911,22 +3369,80 @@ type PostCreateResponse = {
|
|
|
2911
3369
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2912
3370
|
spoiler?: string | null;
|
|
2913
3371
|
} | null;
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
3372
|
+
BLUESKY?: {
|
|
3373
|
+
text?: string | null;
|
|
3374
|
+
uploadIds?: Array<(string)> | null;
|
|
3375
|
+
/**
|
|
3376
|
+
* Extra hashtags (without #), up to 8.
|
|
3377
|
+
*/
|
|
3378
|
+
tags?: Array<(string)> | null;
|
|
3379
|
+
/**
|
|
3380
|
+
* Self-labels (content warnings) applied to the post.
|
|
3381
|
+
*/
|
|
3382
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3383
|
+
/**
|
|
3384
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3385
|
+
*/
|
|
3386
|
+
quoteUri?: string;
|
|
3387
|
+
/**
|
|
3388
|
+
* Target URL for the external link card
|
|
3389
|
+
*/
|
|
3390
|
+
externalUrl?: string | null;
|
|
3391
|
+
/**
|
|
3392
|
+
* Card title for the external link card
|
|
3393
|
+
*/
|
|
3394
|
+
externalTitle?: string | null;
|
|
3395
|
+
/**
|
|
3396
|
+
* Card description for the external link card
|
|
3397
|
+
*/
|
|
3398
|
+
externalDescription?: string | null;
|
|
3399
|
+
/**
|
|
3400
|
+
* Alt text for the video embed.
|
|
3401
|
+
*/
|
|
3402
|
+
videoAlt?: string | null;
|
|
3403
|
+
} | null;
|
|
3404
|
+
GOOGLE_BUSINESS?: {
|
|
3405
|
+
text?: string | null;
|
|
3406
|
+
/**
|
|
3407
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3408
|
+
*/
|
|
3409
|
+
uploadIds?: Array<(string)> | null;
|
|
3410
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3411
|
+
/**
|
|
3412
|
+
* Language tag like 'en' or 'en-US'.
|
|
3413
|
+
*/
|
|
3414
|
+
languageCode?: string | null;
|
|
3415
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3416
|
+
callToActionUrl?: string | null;
|
|
3417
|
+
eventTitle?: string | null;
|
|
3418
|
+
eventStartDate?: string | null;
|
|
3419
|
+
eventEndDate?: string | null;
|
|
3420
|
+
offerCouponCode?: string | null;
|
|
3421
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3422
|
+
offerTermsConditions?: string | null;
|
|
3423
|
+
/**
|
|
3424
|
+
* Alert type for ALERT posts.
|
|
3425
|
+
*/
|
|
3426
|
+
alertType?: 'COVID_19' | null;
|
|
3427
|
+
} | null;
|
|
3428
|
+
};
|
|
3429
|
+
error?: string | null;
|
|
3430
|
+
errors?: {
|
|
3431
|
+
TWITTER?: string | null;
|
|
3432
|
+
PINTEREST?: string | null;
|
|
3433
|
+
FACEBOOK?: string | null;
|
|
3434
|
+
INSTAGRAM?: string | null;
|
|
3435
|
+
TIKTOK?: string | null;
|
|
3436
|
+
LINKEDIN?: string | null;
|
|
3437
|
+
REDDIT?: string | null;
|
|
3438
|
+
DISCORD?: string | null;
|
|
3439
|
+
SLACK?: string | null;
|
|
3440
|
+
YOUTUBE?: string | null;
|
|
3441
|
+
MASTODON?: string | null;
|
|
3442
|
+
THREADS?: string | null;
|
|
3443
|
+
BLUESKY?: string | null;
|
|
3444
|
+
GOOGLE_BUSINESS?: string | null;
|
|
3445
|
+
} | null;
|
|
2930
3446
|
externalData?: {
|
|
2931
3447
|
TWITTER?: {
|
|
2932
3448
|
id?: string | null;
|
|
@@ -2942,12 +3458,12 @@ type PostCreateResponse = {
|
|
|
2942
3458
|
postId?: string | null;
|
|
2943
3459
|
videoId?: string | null;
|
|
2944
3460
|
permalink?: string | null;
|
|
2945
|
-
thumbnail?: string;
|
|
3461
|
+
thumbnail?: string | null;
|
|
2946
3462
|
} | null;
|
|
2947
3463
|
INSTAGRAM?: {
|
|
2948
3464
|
id?: string | null;
|
|
2949
3465
|
permalink?: string | null;
|
|
2950
|
-
thumbnail?: string;
|
|
3466
|
+
thumbnail?: string | null;
|
|
2951
3467
|
} | null;
|
|
2952
3468
|
TIKTOK?: {
|
|
2953
3469
|
id?: string | null;
|
|
@@ -2957,7 +3473,7 @@ type PostCreateResponse = {
|
|
|
2957
3473
|
id?: string | null;
|
|
2958
3474
|
activity?: string | null;
|
|
2959
3475
|
permalink?: string | null;
|
|
2960
|
-
thumbnail?: string;
|
|
3476
|
+
thumbnail?: string | null;
|
|
2961
3477
|
} | null;
|
|
2962
3478
|
REDDIT?: {
|
|
2963
3479
|
id?: string | null;
|
|
@@ -2988,22 +3504,46 @@ type PostCreateResponse = {
|
|
|
2988
3504
|
id?: string | null;
|
|
2989
3505
|
permalink?: string | null;
|
|
2990
3506
|
} | null;
|
|
3507
|
+
BLUESKY?: {
|
|
3508
|
+
id?: string | null;
|
|
3509
|
+
uri?: string | null;
|
|
3510
|
+
/**
|
|
3511
|
+
* Content ID of the created record
|
|
3512
|
+
*/
|
|
3513
|
+
cid?: string | null;
|
|
3514
|
+
permalink?: string | null;
|
|
3515
|
+
/**
|
|
3516
|
+
* Author DID (owner of the record)
|
|
3517
|
+
*/
|
|
3518
|
+
did?: string | null;
|
|
3519
|
+
} | null;
|
|
3520
|
+
GOOGLE_BUSINESS?: {
|
|
3521
|
+
/**
|
|
3522
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
3523
|
+
*/
|
|
3524
|
+
id?: string | null;
|
|
3525
|
+
/**
|
|
3526
|
+
* Public link to the post (searchUrl) when available.
|
|
3527
|
+
*/
|
|
3528
|
+
permalink?: string | null;
|
|
3529
|
+
} | null;
|
|
2991
3530
|
} | null;
|
|
2992
3531
|
createdAt: string | null;
|
|
2993
3532
|
updatedAt: string | null;
|
|
2994
3533
|
deletedAt?: string | null;
|
|
2995
3534
|
};
|
|
2996
3535
|
type AnalyticsGetSocialAccountAnalyticsData = {
|
|
2997
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3536
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
2998
3537
|
teamId: string;
|
|
2999
3538
|
};
|
|
3000
3539
|
type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
3001
3540
|
socialAccount: {
|
|
3002
3541
|
id: string;
|
|
3003
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
3542
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3004
3543
|
teamId: string;
|
|
3005
3544
|
username?: string | null;
|
|
3006
3545
|
displayName?: string | null;
|
|
3546
|
+
avatarUrl?: string | null;
|
|
3007
3547
|
externalId?: string | null;
|
|
3008
3548
|
userUsername?: string | null;
|
|
3009
3549
|
userDisplayName?: string | null;
|
|
@@ -3012,6 +3552,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
3012
3552
|
id: string;
|
|
3013
3553
|
name?: string | null;
|
|
3014
3554
|
username?: string | null;
|
|
3555
|
+
avatarUrl?: string | null;
|
|
3015
3556
|
webhook?: {
|
|
3016
3557
|
id?: string | null;
|
|
3017
3558
|
name?: string | null;
|
|
@@ -3043,7 +3584,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
3043
3584
|
}>;
|
|
3044
3585
|
};
|
|
3045
3586
|
type AnalyticsGetPostAnalyticsData = {
|
|
3046
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3587
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3047
3588
|
postId: string;
|
|
3048
3589
|
};
|
|
3049
3590
|
type AnalyticsGetPostAnalyticsResponse = {
|
|
@@ -3261,6 +3802,62 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3261
3802
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
3262
3803
|
spoiler?: string | null;
|
|
3263
3804
|
} | null;
|
|
3805
|
+
BLUESKY?: {
|
|
3806
|
+
text?: string | null;
|
|
3807
|
+
uploadIds?: Array<(string)> | null;
|
|
3808
|
+
/**
|
|
3809
|
+
* Extra hashtags (without #), up to 8.
|
|
3810
|
+
*/
|
|
3811
|
+
tags?: Array<(string)> | null;
|
|
3812
|
+
/**
|
|
3813
|
+
* Self-labels (content warnings) applied to the post.
|
|
3814
|
+
*/
|
|
3815
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
3816
|
+
/**
|
|
3817
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
3818
|
+
*/
|
|
3819
|
+
quoteUri?: string;
|
|
3820
|
+
/**
|
|
3821
|
+
* Target URL for the external link card
|
|
3822
|
+
*/
|
|
3823
|
+
externalUrl?: string | null;
|
|
3824
|
+
/**
|
|
3825
|
+
* Card title for the external link card
|
|
3826
|
+
*/
|
|
3827
|
+
externalTitle?: string | null;
|
|
3828
|
+
/**
|
|
3829
|
+
* Card description for the external link card
|
|
3830
|
+
*/
|
|
3831
|
+
externalDescription?: string | null;
|
|
3832
|
+
/**
|
|
3833
|
+
* Alt text for the video embed.
|
|
3834
|
+
*/
|
|
3835
|
+
videoAlt?: string | null;
|
|
3836
|
+
} | null;
|
|
3837
|
+
GOOGLE_BUSINESS?: {
|
|
3838
|
+
text?: string | null;
|
|
3839
|
+
/**
|
|
3840
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
3841
|
+
*/
|
|
3842
|
+
uploadIds?: Array<(string)> | null;
|
|
3843
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
3844
|
+
/**
|
|
3845
|
+
* Language tag like 'en' or 'en-US'.
|
|
3846
|
+
*/
|
|
3847
|
+
languageCode?: string | null;
|
|
3848
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
3849
|
+
callToActionUrl?: string | null;
|
|
3850
|
+
eventTitle?: string | null;
|
|
3851
|
+
eventStartDate?: string | null;
|
|
3852
|
+
eventEndDate?: string | null;
|
|
3853
|
+
offerCouponCode?: string | null;
|
|
3854
|
+
offerRedeemOnlineUrl?: string | null;
|
|
3855
|
+
offerTermsConditions?: string | null;
|
|
3856
|
+
/**
|
|
3857
|
+
* Alert type for ALERT posts.
|
|
3858
|
+
*/
|
|
3859
|
+
alertType?: 'COVID_19' | null;
|
|
3860
|
+
} | null;
|
|
3264
3861
|
};
|
|
3265
3862
|
error?: string | null;
|
|
3266
3863
|
errors?: {
|
|
@@ -3276,6 +3873,8 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3276
3873
|
YOUTUBE?: string | null;
|
|
3277
3874
|
MASTODON?: string | null;
|
|
3278
3875
|
THREADS?: string | null;
|
|
3876
|
+
BLUESKY?: string | null;
|
|
3877
|
+
GOOGLE_BUSINESS?: string | null;
|
|
3279
3878
|
} | null;
|
|
3280
3879
|
externalData?: {
|
|
3281
3880
|
TWITTER?: {
|
|
@@ -3292,12 +3891,12 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3292
3891
|
postId?: string | null;
|
|
3293
3892
|
videoId?: string | null;
|
|
3294
3893
|
permalink?: string | null;
|
|
3295
|
-
thumbnail?: string;
|
|
3894
|
+
thumbnail?: string | null;
|
|
3296
3895
|
} | null;
|
|
3297
3896
|
INSTAGRAM?: {
|
|
3298
3897
|
id?: string | null;
|
|
3299
3898
|
permalink?: string | null;
|
|
3300
|
-
thumbnail?: string;
|
|
3899
|
+
thumbnail?: string | null;
|
|
3301
3900
|
} | null;
|
|
3302
3901
|
TIKTOK?: {
|
|
3303
3902
|
id?: string | null;
|
|
@@ -3307,7 +3906,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3307
3906
|
id?: string | null;
|
|
3308
3907
|
activity?: string | null;
|
|
3309
3908
|
permalink?: string | null;
|
|
3310
|
-
thumbnail?: string;
|
|
3909
|
+
thumbnail?: string | null;
|
|
3311
3910
|
} | null;
|
|
3312
3911
|
REDDIT?: {
|
|
3313
3912
|
id?: string | null;
|
|
@@ -3338,6 +3937,29 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3338
3937
|
id?: string | null;
|
|
3339
3938
|
permalink?: string | null;
|
|
3340
3939
|
} | null;
|
|
3940
|
+
BLUESKY?: {
|
|
3941
|
+
id?: string | null;
|
|
3942
|
+
uri?: string | null;
|
|
3943
|
+
/**
|
|
3944
|
+
* Content ID of the created record
|
|
3945
|
+
*/
|
|
3946
|
+
cid?: string | null;
|
|
3947
|
+
permalink?: string | null;
|
|
3948
|
+
/**
|
|
3949
|
+
* Author DID (owner of the record)
|
|
3950
|
+
*/
|
|
3951
|
+
did?: string | null;
|
|
3952
|
+
} | null;
|
|
3953
|
+
GOOGLE_BUSINESS?: {
|
|
3954
|
+
/**
|
|
3955
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
3956
|
+
*/
|
|
3957
|
+
id?: string | null;
|
|
3958
|
+
/**
|
|
3959
|
+
* Public link to the post (searchUrl) when available.
|
|
3960
|
+
*/
|
|
3961
|
+
permalink?: string | null;
|
|
3962
|
+
} | null;
|
|
3341
3963
|
} | null;
|
|
3342
3964
|
createdAt: string | null;
|
|
3343
3965
|
updatedAt: string | null;
|
|
@@ -3362,16 +3984,17 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
3362
3984
|
}>;
|
|
3363
3985
|
};
|
|
3364
3986
|
type AnalyticsGetSocialAccountAnalyticsRawData = {
|
|
3365
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
3987
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3366
3988
|
teamId: string;
|
|
3367
3989
|
};
|
|
3368
3990
|
type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
3369
3991
|
socialAccount: {
|
|
3370
3992
|
id: string;
|
|
3371
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
3993
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3372
3994
|
teamId: string;
|
|
3373
3995
|
username?: string | null;
|
|
3374
3996
|
displayName?: string | null;
|
|
3997
|
+
avatarUrl?: string | null;
|
|
3375
3998
|
externalId?: string | null;
|
|
3376
3999
|
userUsername?: string | null;
|
|
3377
4000
|
userDisplayName?: string | null;
|
|
@@ -3380,6 +4003,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
3380
4003
|
id: string;
|
|
3381
4004
|
name?: string | null;
|
|
3382
4005
|
username?: string | null;
|
|
4006
|
+
avatarUrl?: string | null;
|
|
3383
4007
|
webhook?: {
|
|
3384
4008
|
id?: string | null;
|
|
3385
4009
|
name?: string | null;
|
|
@@ -3404,7 +4028,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
3404
4028
|
}>;
|
|
3405
4029
|
};
|
|
3406
4030
|
type AnalyticsGetPostAnalyticsRawData = {
|
|
3407
|
-
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN';
|
|
4031
|
+
platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
3408
4032
|
postId: string;
|
|
3409
4033
|
};
|
|
3410
4034
|
type AnalyticsGetPostAnalyticsRawResponse = {
|
|
@@ -3622,6 +4246,62 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3622
4246
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
3623
4247
|
spoiler?: string | null;
|
|
3624
4248
|
} | null;
|
|
4249
|
+
BLUESKY?: {
|
|
4250
|
+
text?: string | null;
|
|
4251
|
+
uploadIds?: Array<(string)> | null;
|
|
4252
|
+
/**
|
|
4253
|
+
* Extra hashtags (without #), up to 8.
|
|
4254
|
+
*/
|
|
4255
|
+
tags?: Array<(string)> | null;
|
|
4256
|
+
/**
|
|
4257
|
+
* Self-labels (content warnings) applied to the post.
|
|
4258
|
+
*/
|
|
4259
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
4260
|
+
/**
|
|
4261
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
4262
|
+
*/
|
|
4263
|
+
quoteUri?: string;
|
|
4264
|
+
/**
|
|
4265
|
+
* Target URL for the external link card
|
|
4266
|
+
*/
|
|
4267
|
+
externalUrl?: string | null;
|
|
4268
|
+
/**
|
|
4269
|
+
* Card title for the external link card
|
|
4270
|
+
*/
|
|
4271
|
+
externalTitle?: string | null;
|
|
4272
|
+
/**
|
|
4273
|
+
* Card description for the external link card
|
|
4274
|
+
*/
|
|
4275
|
+
externalDescription?: string | null;
|
|
4276
|
+
/**
|
|
4277
|
+
* Alt text for the video embed.
|
|
4278
|
+
*/
|
|
4279
|
+
videoAlt?: string | null;
|
|
4280
|
+
} | null;
|
|
4281
|
+
GOOGLE_BUSINESS?: {
|
|
4282
|
+
text?: string | null;
|
|
4283
|
+
/**
|
|
4284
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
4285
|
+
*/
|
|
4286
|
+
uploadIds?: Array<(string)> | null;
|
|
4287
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
4288
|
+
/**
|
|
4289
|
+
* Language tag like 'en' or 'en-US'.
|
|
4290
|
+
*/
|
|
4291
|
+
languageCode?: string | null;
|
|
4292
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
4293
|
+
callToActionUrl?: string | null;
|
|
4294
|
+
eventTitle?: string | null;
|
|
4295
|
+
eventStartDate?: string | null;
|
|
4296
|
+
eventEndDate?: string | null;
|
|
4297
|
+
offerCouponCode?: string | null;
|
|
4298
|
+
offerRedeemOnlineUrl?: string | null;
|
|
4299
|
+
offerTermsConditions?: string | null;
|
|
4300
|
+
/**
|
|
4301
|
+
* Alert type for ALERT posts.
|
|
4302
|
+
*/
|
|
4303
|
+
alertType?: 'COVID_19' | null;
|
|
4304
|
+
} | null;
|
|
3625
4305
|
};
|
|
3626
4306
|
error?: string | null;
|
|
3627
4307
|
errors?: {
|
|
@@ -3637,6 +4317,8 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3637
4317
|
YOUTUBE?: string | null;
|
|
3638
4318
|
MASTODON?: string | null;
|
|
3639
4319
|
THREADS?: string | null;
|
|
4320
|
+
BLUESKY?: string | null;
|
|
4321
|
+
GOOGLE_BUSINESS?: string | null;
|
|
3640
4322
|
} | null;
|
|
3641
4323
|
externalData?: {
|
|
3642
4324
|
TWITTER?: {
|
|
@@ -3653,12 +4335,12 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3653
4335
|
postId?: string | null;
|
|
3654
4336
|
videoId?: string | null;
|
|
3655
4337
|
permalink?: string | null;
|
|
3656
|
-
thumbnail?: string;
|
|
4338
|
+
thumbnail?: string | null;
|
|
3657
4339
|
} | null;
|
|
3658
4340
|
INSTAGRAM?: {
|
|
3659
4341
|
id?: string | null;
|
|
3660
4342
|
permalink?: string | null;
|
|
3661
|
-
thumbnail?: string;
|
|
4343
|
+
thumbnail?: string | null;
|
|
3662
4344
|
} | null;
|
|
3663
4345
|
TIKTOK?: {
|
|
3664
4346
|
id?: string | null;
|
|
@@ -3668,7 +4350,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3668
4350
|
id?: string | null;
|
|
3669
4351
|
activity?: string | null;
|
|
3670
4352
|
permalink?: string | null;
|
|
3671
|
-
thumbnail?: string;
|
|
4353
|
+
thumbnail?: string | null;
|
|
3672
4354
|
} | null;
|
|
3673
4355
|
REDDIT?: {
|
|
3674
4356
|
id?: string | null;
|
|
@@ -3699,6 +4381,29 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
3699
4381
|
id?: string | null;
|
|
3700
4382
|
permalink?: string | null;
|
|
3701
4383
|
} | null;
|
|
4384
|
+
BLUESKY?: {
|
|
4385
|
+
id?: string | null;
|
|
4386
|
+
uri?: string | null;
|
|
4387
|
+
/**
|
|
4388
|
+
* Content ID of the created record
|
|
4389
|
+
*/
|
|
4390
|
+
cid?: string | null;
|
|
4391
|
+
permalink?: string | null;
|
|
4392
|
+
/**
|
|
4393
|
+
* Author DID (owner of the record)
|
|
4394
|
+
*/
|
|
4395
|
+
did?: string | null;
|
|
4396
|
+
} | null;
|
|
4397
|
+
GOOGLE_BUSINESS?: {
|
|
4398
|
+
/**
|
|
4399
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
4400
|
+
*/
|
|
4401
|
+
id?: string | null;
|
|
4402
|
+
/**
|
|
4403
|
+
* Public link to the post (searchUrl) when available.
|
|
4404
|
+
*/
|
|
4405
|
+
permalink?: string | null;
|
|
4406
|
+
} | null;
|
|
3702
4407
|
} | null;
|
|
3703
4408
|
createdAt: string | null;
|
|
3704
4409
|
updatedAt: string | null;
|
|
@@ -3770,6 +4475,9 @@ type CommentGetResponse = {
|
|
|
3770
4475
|
SLACK?: {
|
|
3771
4476
|
text?: string | null;
|
|
3772
4477
|
} | null;
|
|
4478
|
+
BLUESKY?: {
|
|
4479
|
+
text?: string | null;
|
|
4480
|
+
} | null;
|
|
3773
4481
|
};
|
|
3774
4482
|
error?: string | null;
|
|
3775
4483
|
errors?: {
|
|
@@ -3783,6 +4491,7 @@ type CommentGetResponse = {
|
|
|
3783
4491
|
THREADS?: string | null;
|
|
3784
4492
|
DISCORD?: string | null;
|
|
3785
4493
|
SLACK?: string | null;
|
|
4494
|
+
BLUESKY?: string | null;
|
|
3786
4495
|
} | null;
|
|
3787
4496
|
externalData?: {
|
|
3788
4497
|
FACEBOOK?: {
|
|
@@ -3826,6 +4535,19 @@ type CommentGetResponse = {
|
|
|
3826
4535
|
id?: string | null;
|
|
3827
4536
|
permalink?: string | null;
|
|
3828
4537
|
} | null;
|
|
4538
|
+
BLUESKY?: {
|
|
4539
|
+
id?: string | null;
|
|
4540
|
+
uri?: string | null;
|
|
4541
|
+
/**
|
|
4542
|
+
* Content ID of the created record
|
|
4543
|
+
*/
|
|
4544
|
+
cid?: string | null;
|
|
4545
|
+
permalink?: string | null;
|
|
4546
|
+
/**
|
|
4547
|
+
* Author DID (owner of the record)
|
|
4548
|
+
*/
|
|
4549
|
+
did?: string | null;
|
|
4550
|
+
} | null;
|
|
3829
4551
|
} | null;
|
|
3830
4552
|
createdAt: string | null;
|
|
3831
4553
|
updatedAt: string | null;
|
|
@@ -3842,7 +4564,7 @@ type CommentUpdateData = {
|
|
|
3842
4564
|
internalParentCommentId?: string | null;
|
|
3843
4565
|
postDate?: string;
|
|
3844
4566
|
status?: 'DRAFT' | 'SCHEDULED';
|
|
3845
|
-
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4567
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
3846
4568
|
data?: {
|
|
3847
4569
|
FACEBOOK?: {
|
|
3848
4570
|
text?: string | null;
|
|
@@ -3874,6 +4596,9 @@ type CommentUpdateData = {
|
|
|
3874
4596
|
SLACK?: {
|
|
3875
4597
|
text?: string | null;
|
|
3876
4598
|
} | null;
|
|
4599
|
+
BLUESKY?: {
|
|
4600
|
+
text?: string | null;
|
|
4601
|
+
} | null;
|
|
3877
4602
|
};
|
|
3878
4603
|
};
|
|
3879
4604
|
};
|
|
@@ -3918,6 +4643,9 @@ type CommentUpdateResponse = {
|
|
|
3918
4643
|
SLACK?: {
|
|
3919
4644
|
text?: string | null;
|
|
3920
4645
|
} | null;
|
|
4646
|
+
BLUESKY?: {
|
|
4647
|
+
text?: string | null;
|
|
4648
|
+
} | null;
|
|
3921
4649
|
};
|
|
3922
4650
|
error?: string | null;
|
|
3923
4651
|
errors?: {
|
|
@@ -3931,6 +4659,7 @@ type CommentUpdateResponse = {
|
|
|
3931
4659
|
THREADS?: string | null;
|
|
3932
4660
|
DISCORD?: string | null;
|
|
3933
4661
|
SLACK?: string | null;
|
|
4662
|
+
BLUESKY?: string | null;
|
|
3934
4663
|
} | null;
|
|
3935
4664
|
externalData?: {
|
|
3936
4665
|
FACEBOOK?: {
|
|
@@ -3974,6 +4703,19 @@ type CommentUpdateResponse = {
|
|
|
3974
4703
|
id?: string | null;
|
|
3975
4704
|
permalink?: string | null;
|
|
3976
4705
|
} | null;
|
|
4706
|
+
BLUESKY?: {
|
|
4707
|
+
id?: string | null;
|
|
4708
|
+
uri?: string | null;
|
|
4709
|
+
/**
|
|
4710
|
+
* Content ID of the created record
|
|
4711
|
+
*/
|
|
4712
|
+
cid?: string | null;
|
|
4713
|
+
permalink?: string | null;
|
|
4714
|
+
/**
|
|
4715
|
+
* Author DID (owner of the record)
|
|
4716
|
+
*/
|
|
4717
|
+
did?: string | null;
|
|
4718
|
+
} | null;
|
|
3977
4719
|
} | null;
|
|
3978
4720
|
createdAt: string | null;
|
|
3979
4721
|
updatedAt: string | null;
|
|
@@ -4023,6 +4765,9 @@ type CommentDeleteResponse = {
|
|
|
4023
4765
|
SLACK?: {
|
|
4024
4766
|
text?: string | null;
|
|
4025
4767
|
} | null;
|
|
4768
|
+
BLUESKY?: {
|
|
4769
|
+
text?: string | null;
|
|
4770
|
+
} | null;
|
|
4026
4771
|
};
|
|
4027
4772
|
error?: string | null;
|
|
4028
4773
|
errors?: {
|
|
@@ -4036,6 +4781,7 @@ type CommentDeleteResponse = {
|
|
|
4036
4781
|
THREADS?: string | null;
|
|
4037
4782
|
DISCORD?: string | null;
|
|
4038
4783
|
SLACK?: string | null;
|
|
4784
|
+
BLUESKY?: string | null;
|
|
4039
4785
|
} | null;
|
|
4040
4786
|
externalData?: {
|
|
4041
4787
|
FACEBOOK?: {
|
|
@@ -4079,6 +4825,19 @@ type CommentDeleteResponse = {
|
|
|
4079
4825
|
id?: string | null;
|
|
4080
4826
|
permalink?: string | null;
|
|
4081
4827
|
} | null;
|
|
4828
|
+
BLUESKY?: {
|
|
4829
|
+
id?: string | null;
|
|
4830
|
+
uri?: string | null;
|
|
4831
|
+
/**
|
|
4832
|
+
* Content ID of the created record
|
|
4833
|
+
*/
|
|
4834
|
+
cid?: string | null;
|
|
4835
|
+
permalink?: string | null;
|
|
4836
|
+
/**
|
|
4837
|
+
* Author DID (owner of the record)
|
|
4838
|
+
*/
|
|
4839
|
+
did?: string | null;
|
|
4840
|
+
} | null;
|
|
4082
4841
|
} | null;
|
|
4083
4842
|
createdAt: string | null;
|
|
4084
4843
|
updatedAt: string | null;
|
|
@@ -4089,7 +4848,7 @@ type CommentGetListData = {
|
|
|
4089
4848
|
offset?: number | null;
|
|
4090
4849
|
order?: 'ASC' | 'DESC';
|
|
4091
4850
|
orderBy?: 'createdAt' | 'updatedAt' | 'deletedAt';
|
|
4092
|
-
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4851
|
+
platforms?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
4093
4852
|
postId?: string;
|
|
4094
4853
|
q?: string;
|
|
4095
4854
|
status?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING';
|
|
@@ -4137,6 +4896,9 @@ type CommentGetListResponse = {
|
|
|
4137
4896
|
SLACK?: {
|
|
4138
4897
|
text?: string | null;
|
|
4139
4898
|
} | null;
|
|
4899
|
+
BLUESKY?: {
|
|
4900
|
+
text?: string | null;
|
|
4901
|
+
} | null;
|
|
4140
4902
|
};
|
|
4141
4903
|
error?: string | null;
|
|
4142
4904
|
errors?: {
|
|
@@ -4150,6 +4912,7 @@ type CommentGetListResponse = {
|
|
|
4150
4912
|
THREADS?: string | null;
|
|
4151
4913
|
DISCORD?: string | null;
|
|
4152
4914
|
SLACK?: string | null;
|
|
4915
|
+
BLUESKY?: string | null;
|
|
4153
4916
|
} | null;
|
|
4154
4917
|
externalData?: {
|
|
4155
4918
|
FACEBOOK?: {
|
|
@@ -4193,6 +4956,19 @@ type CommentGetListResponse = {
|
|
|
4193
4956
|
id?: string | null;
|
|
4194
4957
|
permalink?: string | null;
|
|
4195
4958
|
} | null;
|
|
4959
|
+
BLUESKY?: {
|
|
4960
|
+
id?: string | null;
|
|
4961
|
+
uri?: string | null;
|
|
4962
|
+
/**
|
|
4963
|
+
* Content ID of the created record
|
|
4964
|
+
*/
|
|
4965
|
+
cid?: string | null;
|
|
4966
|
+
permalink?: string | null;
|
|
4967
|
+
/**
|
|
4968
|
+
* Author DID (owner of the record)
|
|
4969
|
+
*/
|
|
4970
|
+
did?: string | null;
|
|
4971
|
+
} | null;
|
|
4196
4972
|
} | null;
|
|
4197
4973
|
createdAt: string | null;
|
|
4198
4974
|
updatedAt: string | null;
|
|
@@ -4211,7 +4987,7 @@ type CommentCreateData = {
|
|
|
4211
4987
|
internalParentCommentId?: string | null;
|
|
4212
4988
|
postDate: string;
|
|
4213
4989
|
status: 'DRAFT' | 'SCHEDULED';
|
|
4214
|
-
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK')>;
|
|
4990
|
+
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'LINKEDIN' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY')>;
|
|
4215
4991
|
data: {
|
|
4216
4992
|
FACEBOOK?: {
|
|
4217
4993
|
text?: string | null;
|
|
@@ -4243,6 +5019,9 @@ type CommentCreateData = {
|
|
|
4243
5019
|
SLACK?: {
|
|
4244
5020
|
text?: string | null;
|
|
4245
5021
|
} | null;
|
|
5022
|
+
BLUESKY?: {
|
|
5023
|
+
text?: string | null;
|
|
5024
|
+
} | null;
|
|
4246
5025
|
};
|
|
4247
5026
|
};
|
|
4248
5027
|
};
|
|
@@ -4287,6 +5066,9 @@ type CommentCreateResponse = {
|
|
|
4287
5066
|
SLACK?: {
|
|
4288
5067
|
text?: string | null;
|
|
4289
5068
|
} | null;
|
|
5069
|
+
BLUESKY?: {
|
|
5070
|
+
text?: string | null;
|
|
5071
|
+
} | null;
|
|
4290
5072
|
};
|
|
4291
5073
|
error?: string | null;
|
|
4292
5074
|
errors?: {
|
|
@@ -4300,6 +5082,7 @@ type CommentCreateResponse = {
|
|
|
4300
5082
|
THREADS?: string | null;
|
|
4301
5083
|
DISCORD?: string | null;
|
|
4302
5084
|
SLACK?: string | null;
|
|
5085
|
+
BLUESKY?: string | null;
|
|
4303
5086
|
} | null;
|
|
4304
5087
|
externalData?: {
|
|
4305
5088
|
FACEBOOK?: {
|
|
@@ -4343,12 +5126,25 @@ type CommentCreateResponse = {
|
|
|
4343
5126
|
id?: string | null;
|
|
4344
5127
|
permalink?: string | null;
|
|
4345
5128
|
} | null;
|
|
5129
|
+
BLUESKY?: {
|
|
5130
|
+
id?: string | null;
|
|
5131
|
+
uri?: string | null;
|
|
5132
|
+
/**
|
|
5133
|
+
* Content ID of the created record
|
|
5134
|
+
*/
|
|
5135
|
+
cid?: string | null;
|
|
5136
|
+
permalink?: string | null;
|
|
5137
|
+
/**
|
|
5138
|
+
* Author DID (owner of the record)
|
|
5139
|
+
*/
|
|
5140
|
+
did?: string | null;
|
|
5141
|
+
} | null;
|
|
4346
5142
|
} | null;
|
|
4347
5143
|
createdAt: string | null;
|
|
4348
5144
|
updatedAt: string | null;
|
|
4349
5145
|
deletedAt?: string | null;
|
|
4350
5146
|
};
|
|
4351
|
-
type
|
|
5147
|
+
type MiscYoutubeSetThumbnailData = {
|
|
4352
5148
|
/**
|
|
4353
5149
|
* Body
|
|
4354
5150
|
*/
|
|
@@ -4358,7 +5154,7 @@ type MiscSetThumbnailData = {
|
|
|
4358
5154
|
postId: string;
|
|
4359
5155
|
};
|
|
4360
5156
|
};
|
|
4361
|
-
type
|
|
5157
|
+
type MiscYoutubeSetThumbnailResponse = {
|
|
4362
5158
|
items?: Array<{
|
|
4363
5159
|
default?: {
|
|
4364
5160
|
url: string;
|
|
@@ -4387,11 +5183,11 @@ type MiscSetThumbnailResponse = {
|
|
|
4387
5183
|
};
|
|
4388
5184
|
}>;
|
|
4389
5185
|
};
|
|
4390
|
-
type
|
|
5186
|
+
type MiscYoutubeGetChannelPlaylistData = {
|
|
4391
5187
|
maxResults?: number;
|
|
4392
5188
|
teamId: string;
|
|
4393
5189
|
};
|
|
4394
|
-
type
|
|
5190
|
+
type MiscYoutubeGetChannelPlaylistResponse = {
|
|
4395
5191
|
kind?: string;
|
|
4396
5192
|
etag?: string;
|
|
4397
5193
|
nextPageToken?: string;
|
|
@@ -4450,7 +5246,7 @@ type MiscGetChannelPlaylistResponse = {
|
|
|
4450
5246
|
};
|
|
4451
5247
|
}>;
|
|
4452
5248
|
};
|
|
4453
|
-
type
|
|
5249
|
+
type MiscYoutubeCreateNewChannelPlaylistData = {
|
|
4454
5250
|
/**
|
|
4455
5251
|
* Body
|
|
4456
5252
|
*/
|
|
@@ -4467,7 +5263,7 @@ type MiscCreateNewChannelPlaylistData = {
|
|
|
4467
5263
|
privacyStatus?: 'public' | 'unlisted' | 'private';
|
|
4468
5264
|
};
|
|
4469
5265
|
};
|
|
4470
|
-
type
|
|
5266
|
+
type MiscYoutubeCreateNewChannelPlaylistResponse = {
|
|
4471
5267
|
kind?: string;
|
|
4472
5268
|
etag?: string;
|
|
4473
5269
|
id?: string;
|
|
@@ -4516,7 +5312,7 @@ type MiscCreateNewChannelPlaylistResponse = {
|
|
|
4516
5312
|
itemCount?: number;
|
|
4517
5313
|
};
|
|
4518
5314
|
};
|
|
4519
|
-
type
|
|
5315
|
+
type MiscYoutubeUpdateChannelPlaylistData = {
|
|
4520
5316
|
/**
|
|
4521
5317
|
* Body
|
|
4522
5318
|
*/
|
|
@@ -4534,7 +5330,7 @@ type MiscUpdateChannelPlaylistData = {
|
|
|
4534
5330
|
playlistId: string;
|
|
4535
5331
|
};
|
|
4536
5332
|
};
|
|
4537
|
-
type
|
|
5333
|
+
type MiscYoutubeUpdateChannelPlaylistResponse = {
|
|
4538
5334
|
kind?: string;
|
|
4539
5335
|
etag?: string;
|
|
4540
5336
|
id?: string;
|
|
@@ -4583,12 +5379,12 @@ type MiscUpdateChannelPlaylistResponse = {
|
|
|
4583
5379
|
itemCount?: number;
|
|
4584
5380
|
};
|
|
4585
5381
|
};
|
|
4586
|
-
type
|
|
5382
|
+
type MiscYoutubeDeleteChannelPlaylistData = {
|
|
4587
5383
|
playlistId: string;
|
|
4588
5384
|
teamId: string;
|
|
4589
5385
|
};
|
|
4590
|
-
type
|
|
4591
|
-
type
|
|
5386
|
+
type MiscYoutubeDeleteChannelPlaylistResponse = boolean;
|
|
5387
|
+
type MiscYoutubeAddVideoToPlaylistData = {
|
|
4592
5388
|
/**
|
|
4593
5389
|
* Body
|
|
4594
5390
|
*/
|
|
@@ -4599,7 +5395,7 @@ type MiscAddVideoToPlaylistData = {
|
|
|
4599
5395
|
position?: number;
|
|
4600
5396
|
};
|
|
4601
5397
|
};
|
|
4602
|
-
type
|
|
5398
|
+
type MiscYoutubeAddVideoToPlaylistResponse = {
|
|
4603
5399
|
kind?: string;
|
|
4604
5400
|
etag?: string;
|
|
4605
5401
|
id?: string;
|
|
@@ -4650,12 +5446,12 @@ type MiscAddVideoToPlaylistResponse = {
|
|
|
4650
5446
|
videoPublishedAt?: string;
|
|
4651
5447
|
};
|
|
4652
5448
|
};
|
|
4653
|
-
type
|
|
5449
|
+
type MiscYoutubeGetVideosFromPlaylistData = {
|
|
4654
5450
|
maxResults?: number;
|
|
4655
5451
|
playlistId: string;
|
|
4656
5452
|
teamId: string;
|
|
4657
5453
|
};
|
|
4658
|
-
type
|
|
5454
|
+
type MiscYoutubeGetVideosFromPlaylistResponse = {
|
|
4659
5455
|
kind?: string;
|
|
4660
5456
|
etag?: string;
|
|
4661
5457
|
nextPageToken?: string;
|
|
@@ -4716,14 +5512,70 @@ type MiscGetVideosFromPlaylistResponse = {
|
|
|
4716
5512
|
};
|
|
4717
5513
|
}>;
|
|
4718
5514
|
};
|
|
4719
|
-
type
|
|
5515
|
+
type MiscYoutubeDeleteVideoFromPlaylistData = {
|
|
4720
5516
|
/**
|
|
4721
5517
|
* Playlist item ID (not video ID)
|
|
4722
5518
|
*/
|
|
4723
5519
|
playlistItemId: string;
|
|
4724
5520
|
teamId: string;
|
|
4725
5521
|
};
|
|
4726
|
-
type
|
|
5522
|
+
type MiscYoutubeDeleteVideoFromPlaylistResponse = boolean;
|
|
5523
|
+
type MiscLinkedinGetTagsData = {
|
|
5524
|
+
q: string;
|
|
5525
|
+
scope?: 'people' | 'organizations' | 'all';
|
|
5526
|
+
teamId: string;
|
|
5527
|
+
};
|
|
5528
|
+
type MiscLinkedinGetTagsResponse = {
|
|
5529
|
+
people?: Array<{
|
|
5530
|
+
kind: 'person';
|
|
5531
|
+
urn: string;
|
|
5532
|
+
display: string;
|
|
5533
|
+
headline?: string;
|
|
5534
|
+
photoUrl?: string;
|
|
5535
|
+
}>;
|
|
5536
|
+
organizations?: Array<{
|
|
5537
|
+
kind: 'organization';
|
|
5538
|
+
urn: string;
|
|
5539
|
+
display: string;
|
|
5540
|
+
vanityName?: string;
|
|
5541
|
+
logoUrl?: string;
|
|
5542
|
+
}>;
|
|
5543
|
+
};
|
|
5544
|
+
type MiscLinkedinBuildCommentaryData = {
|
|
5545
|
+
/**
|
|
5546
|
+
* Body
|
|
5547
|
+
*/
|
|
5548
|
+
requestBody?: {
|
|
5549
|
+
text?: string;
|
|
5550
|
+
tags?: Array<{
|
|
5551
|
+
display: string;
|
|
5552
|
+
urn: string;
|
|
5553
|
+
}>;
|
|
5554
|
+
};
|
|
5555
|
+
};
|
|
5556
|
+
type MiscLinkedinBuildCommentaryResponse = {
|
|
5557
|
+
commentary: string;
|
|
5558
|
+
};
|
|
5559
|
+
type MiscGoogleBusinessAddMediaData = {
|
|
5560
|
+
/**
|
|
5561
|
+
* Body
|
|
5562
|
+
*/
|
|
5563
|
+
requestBody?: {
|
|
5564
|
+
teamId: string;
|
|
5565
|
+
uploadId: string;
|
|
5566
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
5567
|
+
description?: string;
|
|
5568
|
+
};
|
|
5569
|
+
};
|
|
5570
|
+
type MiscGoogleBusinessAddMediaResponse = {
|
|
5571
|
+
name?: string;
|
|
5572
|
+
googleUrl?: string;
|
|
5573
|
+
locationAssociation?: {
|
|
5574
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
5575
|
+
priceListItemId?: string;
|
|
5576
|
+
};
|
|
5577
|
+
description?: string;
|
|
5578
|
+
};
|
|
4727
5579
|
type $OpenApiTs = {
|
|
4728
5580
|
'/api/v1/': {
|
|
4729
5581
|
get: {
|
|
@@ -4804,6 +5656,8 @@ type $OpenApiTs = {
|
|
|
4804
5656
|
DISCORD?: number;
|
|
4805
5657
|
SLACK?: number;
|
|
4806
5658
|
MASTODON?: number;
|
|
5659
|
+
BLUESKY?: number;
|
|
5660
|
+
GOOGLE_BUSINESS?: number;
|
|
4807
5661
|
} | null;
|
|
4808
5662
|
apiAccess?: boolean;
|
|
4809
5663
|
analyticsDisabled?: boolean;
|
|
@@ -5020,6 +5874,8 @@ type $OpenApiTs = {
|
|
|
5020
5874
|
DISCORD?: number;
|
|
5021
5875
|
SLACK?: number;
|
|
5022
5876
|
MASTODON?: number;
|
|
5877
|
+
BLUESKY?: number;
|
|
5878
|
+
GOOGLE_BUSINESS?: number;
|
|
5023
5879
|
} | null;
|
|
5024
5880
|
apiAccess?: boolean;
|
|
5025
5881
|
analyticsDisabled?: boolean;
|
|
@@ -5052,10 +5908,11 @@ type $OpenApiTs = {
|
|
|
5052
5908
|
}>;
|
|
5053
5909
|
socialAccounts: Array<{
|
|
5054
5910
|
id: string;
|
|
5055
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
5911
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5056
5912
|
teamId: string;
|
|
5057
5913
|
username?: string | null;
|
|
5058
5914
|
displayName?: string | null;
|
|
5915
|
+
avatarUrl?: string | null;
|
|
5059
5916
|
externalId?: string | null;
|
|
5060
5917
|
userUsername?: string | null;
|
|
5061
5918
|
userDisplayName?: string | null;
|
|
@@ -5064,6 +5921,7 @@ type $OpenApiTs = {
|
|
|
5064
5921
|
id: string;
|
|
5065
5922
|
name?: string | null;
|
|
5066
5923
|
username?: string | null;
|
|
5924
|
+
avatarUrl?: string | null;
|
|
5067
5925
|
webhook?: {
|
|
5068
5926
|
id?: string | null;
|
|
5069
5927
|
name?: string | null;
|
|
@@ -5311,6 +6169,8 @@ type $OpenApiTs = {
|
|
|
5311
6169
|
DISCORD?: number;
|
|
5312
6170
|
SLACK?: number;
|
|
5313
6171
|
MASTODON?: number;
|
|
6172
|
+
BLUESKY?: number;
|
|
6173
|
+
GOOGLE_BUSINESS?: number;
|
|
5314
6174
|
} | null;
|
|
5315
6175
|
apiAccess?: boolean;
|
|
5316
6176
|
analyticsDisabled?: boolean;
|
|
@@ -5343,10 +6203,11 @@ type $OpenApiTs = {
|
|
|
5343
6203
|
}>;
|
|
5344
6204
|
socialAccounts: Array<{
|
|
5345
6205
|
id: string;
|
|
5346
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6206
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5347
6207
|
teamId: string;
|
|
5348
6208
|
username?: string | null;
|
|
5349
6209
|
displayName?: string | null;
|
|
6210
|
+
avatarUrl?: string | null;
|
|
5350
6211
|
externalId?: string | null;
|
|
5351
6212
|
userUsername?: string | null;
|
|
5352
6213
|
userDisplayName?: string | null;
|
|
@@ -5355,6 +6216,7 @@ type $OpenApiTs = {
|
|
|
5355
6216
|
id: string;
|
|
5356
6217
|
name?: string | null;
|
|
5357
6218
|
username?: string | null;
|
|
6219
|
+
avatarUrl?: string | null;
|
|
5358
6220
|
webhook?: {
|
|
5359
6221
|
id?: string | null;
|
|
5360
6222
|
name?: string | null;
|
|
@@ -5574,10 +6436,11 @@ type $OpenApiTs = {
|
|
|
5574
6436
|
*/
|
|
5575
6437
|
200: {
|
|
5576
6438
|
id: string;
|
|
5577
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6439
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5578
6440
|
teamId: string;
|
|
5579
6441
|
username?: string | null;
|
|
5580
6442
|
displayName?: string | null;
|
|
6443
|
+
avatarUrl?: string | null;
|
|
5581
6444
|
externalId?: string | null;
|
|
5582
6445
|
userUsername?: string | null;
|
|
5583
6446
|
userDisplayName?: string | null;
|
|
@@ -5586,6 +6449,7 @@ type $OpenApiTs = {
|
|
|
5586
6449
|
id: string;
|
|
5587
6450
|
name?: string | null;
|
|
5588
6451
|
username?: string | null;
|
|
6452
|
+
avatarUrl?: string | null;
|
|
5589
6453
|
webhook?: {
|
|
5590
6454
|
id?: string | null;
|
|
5591
6455
|
name?: string | null;
|
|
@@ -5651,10 +6515,11 @@ type $OpenApiTs = {
|
|
|
5651
6515
|
*/
|
|
5652
6516
|
200: {
|
|
5653
6517
|
id: string;
|
|
5654
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6518
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5655
6519
|
teamId: string;
|
|
5656
6520
|
username?: string | null;
|
|
5657
6521
|
displayName?: string | null;
|
|
6522
|
+
avatarUrl?: string | null;
|
|
5658
6523
|
externalId?: string | null;
|
|
5659
6524
|
userUsername?: string | null;
|
|
5660
6525
|
userDisplayName?: string | null;
|
|
@@ -5663,6 +6528,7 @@ type $OpenApiTs = {
|
|
|
5663
6528
|
id: string;
|
|
5664
6529
|
name?: string | null;
|
|
5665
6530
|
username?: string | null;
|
|
6531
|
+
avatarUrl?: string | null;
|
|
5666
6532
|
webhook?: {
|
|
5667
6533
|
id?: string | null;
|
|
5668
6534
|
name?: string | null;
|
|
@@ -5728,10 +6594,11 @@ type $OpenApiTs = {
|
|
|
5728
6594
|
*/
|
|
5729
6595
|
200: {
|
|
5730
6596
|
id: string;
|
|
5731
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6597
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5732
6598
|
teamId: string;
|
|
5733
6599
|
username?: string | null;
|
|
5734
6600
|
displayName?: string | null;
|
|
6601
|
+
avatarUrl?: string | null;
|
|
5735
6602
|
externalId?: string | null;
|
|
5736
6603
|
userUsername?: string | null;
|
|
5737
6604
|
userDisplayName?: string | null;
|
|
@@ -5740,6 +6607,7 @@ type $OpenApiTs = {
|
|
|
5740
6607
|
id: string;
|
|
5741
6608
|
name?: string | null;
|
|
5742
6609
|
username?: string | null;
|
|
6610
|
+
avatarUrl?: string | null;
|
|
5743
6611
|
webhook?: {
|
|
5744
6612
|
id?: string | null;
|
|
5745
6613
|
name?: string | null;
|
|
@@ -5858,10 +6726,11 @@ type $OpenApiTs = {
|
|
|
5858
6726
|
*/
|
|
5859
6727
|
200: Array<{
|
|
5860
6728
|
id: string;
|
|
5861
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
6729
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
5862
6730
|
teamId: string;
|
|
5863
6731
|
username?: string | null;
|
|
5864
6732
|
displayName?: string | null;
|
|
6733
|
+
avatarUrl?: string | null;
|
|
5865
6734
|
externalId?: string | null;
|
|
5866
6735
|
userUsername?: string | null;
|
|
5867
6736
|
userDisplayName?: string | null;
|
|
@@ -5870,6 +6739,7 @@ type $OpenApiTs = {
|
|
|
5870
6739
|
id: string;
|
|
5871
6740
|
name?: string | null;
|
|
5872
6741
|
username?: string | null;
|
|
6742
|
+
avatarUrl?: string | null;
|
|
5873
6743
|
webhook?: {
|
|
5874
6744
|
id?: string | null;
|
|
5875
6745
|
name?: string | null;
|
|
@@ -5944,7 +6814,7 @@ type $OpenApiTs = {
|
|
|
5944
6814
|
iconPath?: string | null;
|
|
5945
6815
|
thumbnailPath?: string | null;
|
|
5946
6816
|
path?: string | null;
|
|
5947
|
-
type: 'image' | 'video';
|
|
6817
|
+
type: 'image' | 'video' | 'document';
|
|
5948
6818
|
width?: number | null;
|
|
5949
6819
|
height?: number | null;
|
|
5950
6820
|
fileSize?: number | null;
|
|
@@ -6020,7 +6890,7 @@ type $OpenApiTs = {
|
|
|
6020
6890
|
iconPath?: string | null;
|
|
6021
6891
|
thumbnailPath?: string | null;
|
|
6022
6892
|
path?: string | null;
|
|
6023
|
-
type: 'image' | 'video';
|
|
6893
|
+
type: 'image' | 'video' | 'document';
|
|
6024
6894
|
width?: number | null;
|
|
6025
6895
|
height?: number | null;
|
|
6026
6896
|
fileSize?: number | null;
|
|
@@ -6089,7 +6959,7 @@ type $OpenApiTs = {
|
|
|
6089
6959
|
iconPath?: string | null;
|
|
6090
6960
|
thumbnailPath?: string | null;
|
|
6091
6961
|
path?: string | null;
|
|
6092
|
-
type: 'image' | 'video';
|
|
6962
|
+
type: 'image' | 'video' | 'document';
|
|
6093
6963
|
width?: number | null;
|
|
6094
6964
|
height?: number | null;
|
|
6095
6965
|
fileSize?: number | null;
|
|
@@ -6160,7 +7030,7 @@ type $OpenApiTs = {
|
|
|
6160
7030
|
iconPath?: string | null;
|
|
6161
7031
|
thumbnailPath?: string | null;
|
|
6162
7032
|
path?: string | null;
|
|
6163
|
-
type: 'image' | 'video';
|
|
7033
|
+
type: 'image' | 'video' | 'document';
|
|
6164
7034
|
width?: number | null;
|
|
6165
7035
|
height?: number | null;
|
|
6166
7036
|
fileSize?: number | null;
|
|
@@ -6236,7 +7106,7 @@ type $OpenApiTs = {
|
|
|
6236
7106
|
iconPath?: string | null;
|
|
6237
7107
|
thumbnailPath?: string | null;
|
|
6238
7108
|
path?: string | null;
|
|
6239
|
-
type: 'image' | 'video';
|
|
7109
|
+
type: 'image' | 'video' | 'document';
|
|
6240
7110
|
width?: number | null;
|
|
6241
7111
|
height?: number | null;
|
|
6242
7112
|
fileSize?: number | null;
|
|
@@ -6361,7 +7231,7 @@ type $OpenApiTs = {
|
|
|
6361
7231
|
iconPath?: string | null;
|
|
6362
7232
|
thumbnailPath?: string | null;
|
|
6363
7233
|
path?: string | null;
|
|
6364
|
-
type: 'image' | 'video';
|
|
7234
|
+
type: 'image' | 'video' | 'document';
|
|
6365
7235
|
width?: number | null;
|
|
6366
7236
|
height?: number | null;
|
|
6367
7237
|
fileSize?: number | null;
|
|
@@ -6635,27 +7505,85 @@ type $OpenApiTs = {
|
|
|
6635
7505
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
6636
7506
|
spoiler?: string | null;
|
|
6637
7507
|
} | null;
|
|
6638
|
-
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
|
|
6645
|
-
|
|
6646
|
-
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
7508
|
+
BLUESKY?: {
|
|
7509
|
+
text?: string | null;
|
|
7510
|
+
uploadIds?: Array<(string)> | null;
|
|
7511
|
+
/**
|
|
7512
|
+
* Extra hashtags (without #), up to 8.
|
|
7513
|
+
*/
|
|
7514
|
+
tags?: Array<(string)> | null;
|
|
7515
|
+
/**
|
|
7516
|
+
* Self-labels (content warnings) applied to the post.
|
|
7517
|
+
*/
|
|
7518
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
7519
|
+
/**
|
|
7520
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
7521
|
+
*/
|
|
7522
|
+
quoteUri?: string;
|
|
7523
|
+
/**
|
|
7524
|
+
* Target URL for the external link card
|
|
7525
|
+
*/
|
|
7526
|
+
externalUrl?: string | null;
|
|
7527
|
+
/**
|
|
7528
|
+
* Card title for the external link card
|
|
7529
|
+
*/
|
|
7530
|
+
externalTitle?: string | null;
|
|
7531
|
+
/**
|
|
7532
|
+
* Card description for the external link card
|
|
7533
|
+
*/
|
|
7534
|
+
externalDescription?: string | null;
|
|
7535
|
+
/**
|
|
7536
|
+
* Alt text for the video embed.
|
|
7537
|
+
*/
|
|
7538
|
+
videoAlt?: string | null;
|
|
7539
|
+
} | null;
|
|
7540
|
+
GOOGLE_BUSINESS?: {
|
|
7541
|
+
text?: string | null;
|
|
7542
|
+
/**
|
|
7543
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
7544
|
+
*/
|
|
7545
|
+
uploadIds?: Array<(string)> | null;
|
|
7546
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
7547
|
+
/**
|
|
7548
|
+
* Language tag like 'en' or 'en-US'.
|
|
7549
|
+
*/
|
|
7550
|
+
languageCode?: string | null;
|
|
7551
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
7552
|
+
callToActionUrl?: string | null;
|
|
7553
|
+
eventTitle?: string | null;
|
|
7554
|
+
eventStartDate?: string | null;
|
|
7555
|
+
eventEndDate?: string | null;
|
|
7556
|
+
offerCouponCode?: string | null;
|
|
7557
|
+
offerRedeemOnlineUrl?: string | null;
|
|
7558
|
+
offerTermsConditions?: string | null;
|
|
7559
|
+
/**
|
|
7560
|
+
* Alert type for ALERT posts.
|
|
7561
|
+
*/
|
|
7562
|
+
alertType?: 'COVID_19' | null;
|
|
7563
|
+
} | null;
|
|
7564
|
+
};
|
|
7565
|
+
error?: string | null;
|
|
7566
|
+
errors?: {
|
|
7567
|
+
TWITTER?: string | null;
|
|
7568
|
+
PINTEREST?: string | null;
|
|
7569
|
+
FACEBOOK?: string | null;
|
|
7570
|
+
INSTAGRAM?: string | null;
|
|
7571
|
+
TIKTOK?: string | null;
|
|
7572
|
+
LINKEDIN?: string | null;
|
|
7573
|
+
REDDIT?: string | null;
|
|
7574
|
+
DISCORD?: string | null;
|
|
7575
|
+
SLACK?: string | null;
|
|
7576
|
+
YOUTUBE?: string | null;
|
|
7577
|
+
MASTODON?: string | null;
|
|
7578
|
+
THREADS?: string | null;
|
|
7579
|
+
BLUESKY?: string | null;
|
|
7580
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7581
|
+
} | null;
|
|
7582
|
+
externalData?: {
|
|
7583
|
+
TWITTER?: {
|
|
7584
|
+
id?: string | null;
|
|
7585
|
+
permalink?: string | null;
|
|
7586
|
+
} | null;
|
|
6659
7587
|
PINTEREST?: {
|
|
6660
7588
|
id?: string | null;
|
|
6661
7589
|
permalink?: string | null;
|
|
@@ -6666,12 +7594,12 @@ type $OpenApiTs = {
|
|
|
6666
7594
|
postId?: string | null;
|
|
6667
7595
|
videoId?: string | null;
|
|
6668
7596
|
permalink?: string | null;
|
|
6669
|
-
thumbnail?: string;
|
|
7597
|
+
thumbnail?: string | null;
|
|
6670
7598
|
} | null;
|
|
6671
7599
|
INSTAGRAM?: {
|
|
6672
7600
|
id?: string | null;
|
|
6673
7601
|
permalink?: string | null;
|
|
6674
|
-
thumbnail?: string;
|
|
7602
|
+
thumbnail?: string | null;
|
|
6675
7603
|
} | null;
|
|
6676
7604
|
TIKTOK?: {
|
|
6677
7605
|
id?: string | null;
|
|
@@ -6681,7 +7609,7 @@ type $OpenApiTs = {
|
|
|
6681
7609
|
id?: string | null;
|
|
6682
7610
|
activity?: string | null;
|
|
6683
7611
|
permalink?: string | null;
|
|
6684
|
-
thumbnail?: string;
|
|
7612
|
+
thumbnail?: string | null;
|
|
6685
7613
|
} | null;
|
|
6686
7614
|
REDDIT?: {
|
|
6687
7615
|
id?: string | null;
|
|
@@ -6712,6 +7640,29 @@ type $OpenApiTs = {
|
|
|
6712
7640
|
id?: string | null;
|
|
6713
7641
|
permalink?: string | null;
|
|
6714
7642
|
} | null;
|
|
7643
|
+
BLUESKY?: {
|
|
7644
|
+
id?: string | null;
|
|
7645
|
+
uri?: string | null;
|
|
7646
|
+
/**
|
|
7647
|
+
* Content ID of the created record
|
|
7648
|
+
*/
|
|
7649
|
+
cid?: string | null;
|
|
7650
|
+
permalink?: string | null;
|
|
7651
|
+
/**
|
|
7652
|
+
* Author DID (owner of the record)
|
|
7653
|
+
*/
|
|
7654
|
+
did?: string | null;
|
|
7655
|
+
} | null;
|
|
7656
|
+
GOOGLE_BUSINESS?: {
|
|
7657
|
+
/**
|
|
7658
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
7659
|
+
*/
|
|
7660
|
+
id?: string | null;
|
|
7661
|
+
/**
|
|
7662
|
+
* Public link to the post (searchUrl) when available.
|
|
7663
|
+
*/
|
|
7664
|
+
permalink?: string | null;
|
|
7665
|
+
} | null;
|
|
6715
7666
|
} | null;
|
|
6716
7667
|
createdAt: string | null;
|
|
6717
7668
|
updatedAt: string | null;
|
|
@@ -6733,7 +7684,7 @@ type $OpenApiTs = {
|
|
|
6733
7684
|
iconPath?: string | null;
|
|
6734
7685
|
thumbnailPath?: string | null;
|
|
6735
7686
|
path?: string | null;
|
|
6736
|
-
type: 'image' | 'video';
|
|
7687
|
+
type: 'image' | 'video' | 'document';
|
|
6737
7688
|
width?: number | null;
|
|
6738
7689
|
height?: number | null;
|
|
6739
7690
|
fileSize?: number | null;
|
|
@@ -6752,10 +7703,11 @@ type $OpenApiTs = {
|
|
|
6752
7703
|
deletedAt?: string | null;
|
|
6753
7704
|
socialAccount: {
|
|
6754
7705
|
id: string;
|
|
6755
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
7706
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
6756
7707
|
teamId: string;
|
|
6757
7708
|
username?: string | null;
|
|
6758
7709
|
displayName?: string | null;
|
|
7710
|
+
avatarUrl?: string | null;
|
|
6759
7711
|
externalId?: string | null;
|
|
6760
7712
|
userUsername?: string | null;
|
|
6761
7713
|
userDisplayName?: string | null;
|
|
@@ -6764,6 +7716,7 @@ type $OpenApiTs = {
|
|
|
6764
7716
|
id: string;
|
|
6765
7717
|
name?: string | null;
|
|
6766
7718
|
username?: string | null;
|
|
7719
|
+
avatarUrl?: string | null;
|
|
6767
7720
|
webhook?: {
|
|
6768
7721
|
id?: string | null;
|
|
6769
7722
|
name?: string | null;
|
|
@@ -7041,6 +7994,62 @@ type $OpenApiTs = {
|
|
|
7041
7994
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7042
7995
|
spoiler?: string | null;
|
|
7043
7996
|
} | null;
|
|
7997
|
+
BLUESKY?: {
|
|
7998
|
+
text?: string | null;
|
|
7999
|
+
uploadIds?: Array<(string)> | null;
|
|
8000
|
+
/**
|
|
8001
|
+
* Extra hashtags (without #), up to 8.
|
|
8002
|
+
*/
|
|
8003
|
+
tags?: Array<(string)> | null;
|
|
8004
|
+
/**
|
|
8005
|
+
* Self-labels (content warnings) applied to the post.
|
|
8006
|
+
*/
|
|
8007
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
8008
|
+
/**
|
|
8009
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
8010
|
+
*/
|
|
8011
|
+
quoteUri?: string;
|
|
8012
|
+
/**
|
|
8013
|
+
* Target URL for the external link card
|
|
8014
|
+
*/
|
|
8015
|
+
externalUrl?: string | null;
|
|
8016
|
+
/**
|
|
8017
|
+
* Card title for the external link card
|
|
8018
|
+
*/
|
|
8019
|
+
externalTitle?: string | null;
|
|
8020
|
+
/**
|
|
8021
|
+
* Card description for the external link card
|
|
8022
|
+
*/
|
|
8023
|
+
externalDescription?: string | null;
|
|
8024
|
+
/**
|
|
8025
|
+
* Alt text for the video embed.
|
|
8026
|
+
*/
|
|
8027
|
+
videoAlt?: string | null;
|
|
8028
|
+
} | null;
|
|
8029
|
+
GOOGLE_BUSINESS?: {
|
|
8030
|
+
text?: string | null;
|
|
8031
|
+
/**
|
|
8032
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8033
|
+
*/
|
|
8034
|
+
uploadIds?: Array<(string)> | null;
|
|
8035
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8036
|
+
/**
|
|
8037
|
+
* Language tag like 'en' or 'en-US'.
|
|
8038
|
+
*/
|
|
8039
|
+
languageCode?: string | null;
|
|
8040
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8041
|
+
callToActionUrl?: string | null;
|
|
8042
|
+
eventTitle?: string | null;
|
|
8043
|
+
eventStartDate?: string | null;
|
|
8044
|
+
eventEndDate?: string | null;
|
|
8045
|
+
offerCouponCode?: string | null;
|
|
8046
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8047
|
+
offerTermsConditions?: string | null;
|
|
8048
|
+
/**
|
|
8049
|
+
* Alert type for ALERT posts.
|
|
8050
|
+
*/
|
|
8051
|
+
alertType?: 'COVID_19' | null;
|
|
8052
|
+
} | null;
|
|
7044
8053
|
};
|
|
7045
8054
|
error?: string | null;
|
|
7046
8055
|
errors?: {
|
|
@@ -7056,6 +8065,8 @@ type $OpenApiTs = {
|
|
|
7056
8065
|
YOUTUBE?: string | null;
|
|
7057
8066
|
MASTODON?: string | null;
|
|
7058
8067
|
THREADS?: string | null;
|
|
8068
|
+
BLUESKY?: string | null;
|
|
8069
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7059
8070
|
} | null;
|
|
7060
8071
|
externalData?: {
|
|
7061
8072
|
TWITTER?: {
|
|
@@ -7072,12 +8083,12 @@ type $OpenApiTs = {
|
|
|
7072
8083
|
postId?: string | null;
|
|
7073
8084
|
videoId?: string | null;
|
|
7074
8085
|
permalink?: string | null;
|
|
7075
|
-
thumbnail?: string;
|
|
8086
|
+
thumbnail?: string | null;
|
|
7076
8087
|
} | null;
|
|
7077
8088
|
INSTAGRAM?: {
|
|
7078
8089
|
id?: string | null;
|
|
7079
8090
|
permalink?: string | null;
|
|
7080
|
-
thumbnail?: string;
|
|
8091
|
+
thumbnail?: string | null;
|
|
7081
8092
|
} | null;
|
|
7082
8093
|
TIKTOK?: {
|
|
7083
8094
|
id?: string | null;
|
|
@@ -7087,7 +8098,7 @@ type $OpenApiTs = {
|
|
|
7087
8098
|
id?: string | null;
|
|
7088
8099
|
activity?: string | null;
|
|
7089
8100
|
permalink?: string | null;
|
|
7090
|
-
thumbnail?: string;
|
|
8101
|
+
thumbnail?: string | null;
|
|
7091
8102
|
} | null;
|
|
7092
8103
|
REDDIT?: {
|
|
7093
8104
|
id?: string | null;
|
|
@@ -7118,6 +8129,29 @@ type $OpenApiTs = {
|
|
|
7118
8129
|
id?: string | null;
|
|
7119
8130
|
permalink?: string | null;
|
|
7120
8131
|
} | null;
|
|
8132
|
+
BLUESKY?: {
|
|
8133
|
+
id?: string | null;
|
|
8134
|
+
uri?: string | null;
|
|
8135
|
+
/**
|
|
8136
|
+
* Content ID of the created record
|
|
8137
|
+
*/
|
|
8138
|
+
cid?: string | null;
|
|
8139
|
+
permalink?: string | null;
|
|
8140
|
+
/**
|
|
8141
|
+
* Author DID (owner of the record)
|
|
8142
|
+
*/
|
|
8143
|
+
did?: string | null;
|
|
8144
|
+
} | null;
|
|
8145
|
+
GOOGLE_BUSINESS?: {
|
|
8146
|
+
/**
|
|
8147
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
8148
|
+
*/
|
|
8149
|
+
id?: string | null;
|
|
8150
|
+
/**
|
|
8151
|
+
* Public link to the post (searchUrl) when available.
|
|
8152
|
+
*/
|
|
8153
|
+
permalink?: string | null;
|
|
8154
|
+
} | null;
|
|
7121
8155
|
} | null;
|
|
7122
8156
|
createdAt: string | null;
|
|
7123
8157
|
updatedAt: string | null;
|
|
@@ -7385,6 +8419,62 @@ type $OpenApiTs = {
|
|
|
7385
8419
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7386
8420
|
spoiler?: string | null;
|
|
7387
8421
|
} | null;
|
|
8422
|
+
BLUESKY?: {
|
|
8423
|
+
text?: string | null;
|
|
8424
|
+
uploadIds?: Array<(string)> | null;
|
|
8425
|
+
/**
|
|
8426
|
+
* Extra hashtags (without #), up to 8.
|
|
8427
|
+
*/
|
|
8428
|
+
tags?: Array<(string)> | null;
|
|
8429
|
+
/**
|
|
8430
|
+
* Self-labels (content warnings) applied to the post.
|
|
8431
|
+
*/
|
|
8432
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
8433
|
+
/**
|
|
8434
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
8435
|
+
*/
|
|
8436
|
+
quoteUri?: string;
|
|
8437
|
+
/**
|
|
8438
|
+
* Target URL for the external link card
|
|
8439
|
+
*/
|
|
8440
|
+
externalUrl?: string | null;
|
|
8441
|
+
/**
|
|
8442
|
+
* Card title for the external link card
|
|
8443
|
+
*/
|
|
8444
|
+
externalTitle?: string | null;
|
|
8445
|
+
/**
|
|
8446
|
+
* Card description for the external link card
|
|
8447
|
+
*/
|
|
8448
|
+
externalDescription?: string | null;
|
|
8449
|
+
/**
|
|
8450
|
+
* Alt text for the video embed.
|
|
8451
|
+
*/
|
|
8452
|
+
videoAlt?: string | null;
|
|
8453
|
+
} | null;
|
|
8454
|
+
GOOGLE_BUSINESS?: {
|
|
8455
|
+
text?: string | null;
|
|
8456
|
+
/**
|
|
8457
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8458
|
+
*/
|
|
8459
|
+
uploadIds?: Array<(string)> | null;
|
|
8460
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8461
|
+
/**
|
|
8462
|
+
* Language tag like 'en' or 'en-US'.
|
|
8463
|
+
*/
|
|
8464
|
+
languageCode?: string | null;
|
|
8465
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8466
|
+
callToActionUrl?: string | null;
|
|
8467
|
+
eventTitle?: string | null;
|
|
8468
|
+
eventStartDate?: string | null;
|
|
8469
|
+
eventEndDate?: string | null;
|
|
8470
|
+
offerCouponCode?: string | null;
|
|
8471
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8472
|
+
offerTermsConditions?: string | null;
|
|
8473
|
+
/**
|
|
8474
|
+
* Alert type for ALERT posts.
|
|
8475
|
+
*/
|
|
8476
|
+
alertType?: 'COVID_19' | null;
|
|
8477
|
+
} | null;
|
|
7388
8478
|
};
|
|
7389
8479
|
error?: string | null;
|
|
7390
8480
|
errors?: {
|
|
@@ -7400,6 +8490,8 @@ type $OpenApiTs = {
|
|
|
7400
8490
|
YOUTUBE?: string | null;
|
|
7401
8491
|
MASTODON?: string | null;
|
|
7402
8492
|
THREADS?: string | null;
|
|
8493
|
+
BLUESKY?: string | null;
|
|
8494
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7403
8495
|
} | null;
|
|
7404
8496
|
externalData?: {
|
|
7405
8497
|
TWITTER?: {
|
|
@@ -7416,12 +8508,12 @@ type $OpenApiTs = {
|
|
|
7416
8508
|
postId?: string | null;
|
|
7417
8509
|
videoId?: string | null;
|
|
7418
8510
|
permalink?: string | null;
|
|
7419
|
-
thumbnail?: string;
|
|
8511
|
+
thumbnail?: string | null;
|
|
7420
8512
|
} | null;
|
|
7421
8513
|
INSTAGRAM?: {
|
|
7422
8514
|
id?: string | null;
|
|
7423
8515
|
permalink?: string | null;
|
|
7424
|
-
thumbnail?: string;
|
|
8516
|
+
thumbnail?: string | null;
|
|
7425
8517
|
} | null;
|
|
7426
8518
|
TIKTOK?: {
|
|
7427
8519
|
id?: string | null;
|
|
@@ -7431,7 +8523,7 @@ type $OpenApiTs = {
|
|
|
7431
8523
|
id?: string | null;
|
|
7432
8524
|
activity?: string | null;
|
|
7433
8525
|
permalink?: string | null;
|
|
7434
|
-
thumbnail?: string;
|
|
8526
|
+
thumbnail?: string | null;
|
|
7435
8527
|
} | null;
|
|
7436
8528
|
REDDIT?: {
|
|
7437
8529
|
id?: string | null;
|
|
@@ -7462,6 +8554,29 @@ type $OpenApiTs = {
|
|
|
7462
8554
|
id?: string | null;
|
|
7463
8555
|
permalink?: string | null;
|
|
7464
8556
|
} | null;
|
|
8557
|
+
BLUESKY?: {
|
|
8558
|
+
id?: string | null;
|
|
8559
|
+
uri?: string | null;
|
|
8560
|
+
/**
|
|
8561
|
+
* Content ID of the created record
|
|
8562
|
+
*/
|
|
8563
|
+
cid?: string | null;
|
|
8564
|
+
permalink?: string | null;
|
|
8565
|
+
/**
|
|
8566
|
+
* Author DID (owner of the record)
|
|
8567
|
+
*/
|
|
8568
|
+
did?: string | null;
|
|
8569
|
+
} | null;
|
|
8570
|
+
GOOGLE_BUSINESS?: {
|
|
8571
|
+
/**
|
|
8572
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
8573
|
+
*/
|
|
8574
|
+
id?: string | null;
|
|
8575
|
+
/**
|
|
8576
|
+
* Public link to the post (searchUrl) when available.
|
|
8577
|
+
*/
|
|
8578
|
+
permalink?: string | null;
|
|
8579
|
+
} | null;
|
|
7465
8580
|
} | null;
|
|
7466
8581
|
createdAt: string | null;
|
|
7467
8582
|
updatedAt: string | null;
|
|
@@ -7732,6 +8847,62 @@ type $OpenApiTs = {
|
|
|
7732
8847
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
7733
8848
|
spoiler?: string | null;
|
|
7734
8849
|
} | null;
|
|
8850
|
+
BLUESKY?: {
|
|
8851
|
+
text?: string | null;
|
|
8852
|
+
uploadIds?: Array<(string)> | null;
|
|
8853
|
+
/**
|
|
8854
|
+
* Extra hashtags (without #), up to 8.
|
|
8855
|
+
*/
|
|
8856
|
+
tags?: Array<(string)> | null;
|
|
8857
|
+
/**
|
|
8858
|
+
* Self-labels (content warnings) applied to the post.
|
|
8859
|
+
*/
|
|
8860
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
8861
|
+
/**
|
|
8862
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
8863
|
+
*/
|
|
8864
|
+
quoteUri?: string;
|
|
8865
|
+
/**
|
|
8866
|
+
* Target URL for the external link card
|
|
8867
|
+
*/
|
|
8868
|
+
externalUrl?: string | null;
|
|
8869
|
+
/**
|
|
8870
|
+
* Card title for the external link card
|
|
8871
|
+
*/
|
|
8872
|
+
externalTitle?: string | null;
|
|
8873
|
+
/**
|
|
8874
|
+
* Card description for the external link card
|
|
8875
|
+
*/
|
|
8876
|
+
externalDescription?: string | null;
|
|
8877
|
+
/**
|
|
8878
|
+
* Alt text for the video embed.
|
|
8879
|
+
*/
|
|
8880
|
+
videoAlt?: string | null;
|
|
8881
|
+
} | null;
|
|
8882
|
+
GOOGLE_BUSINESS?: {
|
|
8883
|
+
text?: string | null;
|
|
8884
|
+
/**
|
|
8885
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
8886
|
+
*/
|
|
8887
|
+
uploadIds?: Array<(string)> | null;
|
|
8888
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
8889
|
+
/**
|
|
8890
|
+
* Language tag like 'en' or 'en-US'.
|
|
8891
|
+
*/
|
|
8892
|
+
languageCode?: string | null;
|
|
8893
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
8894
|
+
callToActionUrl?: string | null;
|
|
8895
|
+
eventTitle?: string | null;
|
|
8896
|
+
eventStartDate?: string | null;
|
|
8897
|
+
eventEndDate?: string | null;
|
|
8898
|
+
offerCouponCode?: string | null;
|
|
8899
|
+
offerRedeemOnlineUrl?: string | null;
|
|
8900
|
+
offerTermsConditions?: string | null;
|
|
8901
|
+
/**
|
|
8902
|
+
* Alert type for ALERT posts.
|
|
8903
|
+
*/
|
|
8904
|
+
alertType?: 'COVID_19' | null;
|
|
8905
|
+
} | null;
|
|
7735
8906
|
};
|
|
7736
8907
|
error?: string | null;
|
|
7737
8908
|
errors?: {
|
|
@@ -7747,6 +8918,8 @@ type $OpenApiTs = {
|
|
|
7747
8918
|
YOUTUBE?: string | null;
|
|
7748
8919
|
MASTODON?: string | null;
|
|
7749
8920
|
THREADS?: string | null;
|
|
8921
|
+
BLUESKY?: string | null;
|
|
8922
|
+
GOOGLE_BUSINESS?: string | null;
|
|
7750
8923
|
} | null;
|
|
7751
8924
|
externalData?: {
|
|
7752
8925
|
TWITTER?: {
|
|
@@ -7763,12 +8936,12 @@ type $OpenApiTs = {
|
|
|
7763
8936
|
postId?: string | null;
|
|
7764
8937
|
videoId?: string | null;
|
|
7765
8938
|
permalink?: string | null;
|
|
7766
|
-
thumbnail?: string;
|
|
8939
|
+
thumbnail?: string | null;
|
|
7767
8940
|
} | null;
|
|
7768
8941
|
INSTAGRAM?: {
|
|
7769
8942
|
id?: string | null;
|
|
7770
8943
|
permalink?: string | null;
|
|
7771
|
-
thumbnail?: string;
|
|
8944
|
+
thumbnail?: string | null;
|
|
7772
8945
|
} | null;
|
|
7773
8946
|
TIKTOK?: {
|
|
7774
8947
|
id?: string | null;
|
|
@@ -7778,7 +8951,7 @@ type $OpenApiTs = {
|
|
|
7778
8951
|
id?: string | null;
|
|
7779
8952
|
activity?: string | null;
|
|
7780
8953
|
permalink?: string | null;
|
|
7781
|
-
thumbnail?: string;
|
|
8954
|
+
thumbnail?: string | null;
|
|
7782
8955
|
} | null;
|
|
7783
8956
|
REDDIT?: {
|
|
7784
8957
|
id?: string | null;
|
|
@@ -7809,6 +8982,29 @@ type $OpenApiTs = {
|
|
|
7809
8982
|
id?: string | null;
|
|
7810
8983
|
permalink?: string | null;
|
|
7811
8984
|
} | null;
|
|
8985
|
+
BLUESKY?: {
|
|
8986
|
+
id?: string | null;
|
|
8987
|
+
uri?: string | null;
|
|
8988
|
+
/**
|
|
8989
|
+
* Content ID of the created record
|
|
8990
|
+
*/
|
|
8991
|
+
cid?: string | null;
|
|
8992
|
+
permalink?: string | null;
|
|
8993
|
+
/**
|
|
8994
|
+
* Author DID (owner of the record)
|
|
8995
|
+
*/
|
|
8996
|
+
did?: string | null;
|
|
8997
|
+
} | null;
|
|
8998
|
+
GOOGLE_BUSINESS?: {
|
|
8999
|
+
/**
|
|
9000
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
9001
|
+
*/
|
|
9002
|
+
id?: string | null;
|
|
9003
|
+
/**
|
|
9004
|
+
* Public link to the post (searchUrl) when available.
|
|
9005
|
+
*/
|
|
9006
|
+
permalink?: string | null;
|
|
9007
|
+
} | null;
|
|
7812
9008
|
} | null;
|
|
7813
9009
|
createdAt: string | null;
|
|
7814
9010
|
updatedAt: string | null;
|
|
@@ -7830,7 +9026,7 @@ type $OpenApiTs = {
|
|
|
7830
9026
|
iconPath?: string | null;
|
|
7831
9027
|
thumbnailPath?: string | null;
|
|
7832
9028
|
path?: string | null;
|
|
7833
|
-
type: 'image' | 'video';
|
|
9029
|
+
type: 'image' | 'video' | 'document';
|
|
7834
9030
|
width?: number | null;
|
|
7835
9031
|
height?: number | null;
|
|
7836
9032
|
fileSize?: number | null;
|
|
@@ -7849,10 +9045,11 @@ type $OpenApiTs = {
|
|
|
7849
9045
|
deletedAt?: string | null;
|
|
7850
9046
|
socialAccount: {
|
|
7851
9047
|
id: string;
|
|
7852
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
9048
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
7853
9049
|
teamId: string;
|
|
7854
9050
|
username?: string | null;
|
|
7855
9051
|
displayName?: string | null;
|
|
9052
|
+
avatarUrl?: string | null;
|
|
7856
9053
|
externalId?: string | null;
|
|
7857
9054
|
userUsername?: string | null;
|
|
7858
9055
|
userDisplayName?: string | null;
|
|
@@ -7861,6 +9058,7 @@ type $OpenApiTs = {
|
|
|
7861
9058
|
id: string;
|
|
7862
9059
|
name?: string | null;
|
|
7863
9060
|
username?: string | null;
|
|
9061
|
+
avatarUrl?: string | null;
|
|
7864
9062
|
webhook?: {
|
|
7865
9063
|
id?: string | null;
|
|
7866
9064
|
name?: string | null;
|
|
@@ -8140,6 +9338,62 @@ type $OpenApiTs = {
|
|
|
8140
9338
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
8141
9339
|
spoiler?: string | null;
|
|
8142
9340
|
} | null;
|
|
9341
|
+
BLUESKY?: {
|
|
9342
|
+
text?: string | null;
|
|
9343
|
+
uploadIds?: Array<(string)> | null;
|
|
9344
|
+
/**
|
|
9345
|
+
* Extra hashtags (without #), up to 8.
|
|
9346
|
+
*/
|
|
9347
|
+
tags?: Array<(string)> | null;
|
|
9348
|
+
/**
|
|
9349
|
+
* Self-labels (content warnings) applied to the post.
|
|
9350
|
+
*/
|
|
9351
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
9352
|
+
/**
|
|
9353
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
9354
|
+
*/
|
|
9355
|
+
quoteUri?: string;
|
|
9356
|
+
/**
|
|
9357
|
+
* Target URL for the external link card
|
|
9358
|
+
*/
|
|
9359
|
+
externalUrl?: string | null;
|
|
9360
|
+
/**
|
|
9361
|
+
* Card title for the external link card
|
|
9362
|
+
*/
|
|
9363
|
+
externalTitle?: string | null;
|
|
9364
|
+
/**
|
|
9365
|
+
* Card description for the external link card
|
|
9366
|
+
*/
|
|
9367
|
+
externalDescription?: string | null;
|
|
9368
|
+
/**
|
|
9369
|
+
* Alt text for the video embed.
|
|
9370
|
+
*/
|
|
9371
|
+
videoAlt?: string | null;
|
|
9372
|
+
} | null;
|
|
9373
|
+
GOOGLE_BUSINESS?: {
|
|
9374
|
+
text?: string | null;
|
|
9375
|
+
/**
|
|
9376
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
9377
|
+
*/
|
|
9378
|
+
uploadIds?: Array<(string)> | null;
|
|
9379
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
9380
|
+
/**
|
|
9381
|
+
* Language tag like 'en' or 'en-US'.
|
|
9382
|
+
*/
|
|
9383
|
+
languageCode?: string | null;
|
|
9384
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
9385
|
+
callToActionUrl?: string | null;
|
|
9386
|
+
eventTitle?: string | null;
|
|
9387
|
+
eventStartDate?: string | null;
|
|
9388
|
+
eventEndDate?: string | null;
|
|
9389
|
+
offerCouponCode?: string | null;
|
|
9390
|
+
offerRedeemOnlineUrl?: string | null;
|
|
9391
|
+
offerTermsConditions?: string | null;
|
|
9392
|
+
/**
|
|
9393
|
+
* Alert type for ALERT posts.
|
|
9394
|
+
*/
|
|
9395
|
+
alertType?: 'COVID_19' | null;
|
|
9396
|
+
} | null;
|
|
8143
9397
|
};
|
|
8144
9398
|
error?: string | null;
|
|
8145
9399
|
errors?: {
|
|
@@ -8155,6 +9409,8 @@ type $OpenApiTs = {
|
|
|
8155
9409
|
YOUTUBE?: string | null;
|
|
8156
9410
|
MASTODON?: string | null;
|
|
8157
9411
|
THREADS?: string | null;
|
|
9412
|
+
BLUESKY?: string | null;
|
|
9413
|
+
GOOGLE_BUSINESS?: string | null;
|
|
8158
9414
|
} | null;
|
|
8159
9415
|
externalData?: {
|
|
8160
9416
|
TWITTER?: {
|
|
@@ -8171,12 +9427,12 @@ type $OpenApiTs = {
|
|
|
8171
9427
|
postId?: string | null;
|
|
8172
9428
|
videoId?: string | null;
|
|
8173
9429
|
permalink?: string | null;
|
|
8174
|
-
thumbnail?: string;
|
|
9430
|
+
thumbnail?: string | null;
|
|
8175
9431
|
} | null;
|
|
8176
9432
|
INSTAGRAM?: {
|
|
8177
9433
|
id?: string | null;
|
|
8178
9434
|
permalink?: string | null;
|
|
8179
|
-
thumbnail?: string;
|
|
9435
|
+
thumbnail?: string | null;
|
|
8180
9436
|
} | null;
|
|
8181
9437
|
TIKTOK?: {
|
|
8182
9438
|
id?: string | null;
|
|
@@ -8186,7 +9442,7 @@ type $OpenApiTs = {
|
|
|
8186
9442
|
id?: string | null;
|
|
8187
9443
|
activity?: string | null;
|
|
8188
9444
|
permalink?: string | null;
|
|
8189
|
-
thumbnail?: string;
|
|
9445
|
+
thumbnail?: string | null;
|
|
8190
9446
|
} | null;
|
|
8191
9447
|
REDDIT?: {
|
|
8192
9448
|
id?: string | null;
|
|
@@ -8217,6 +9473,29 @@ type $OpenApiTs = {
|
|
|
8217
9473
|
id?: string | null;
|
|
8218
9474
|
permalink?: string | null;
|
|
8219
9475
|
} | null;
|
|
9476
|
+
BLUESKY?: {
|
|
9477
|
+
id?: string | null;
|
|
9478
|
+
uri?: string | null;
|
|
9479
|
+
/**
|
|
9480
|
+
* Content ID of the created record
|
|
9481
|
+
*/
|
|
9482
|
+
cid?: string | null;
|
|
9483
|
+
permalink?: string | null;
|
|
9484
|
+
/**
|
|
9485
|
+
* Author DID (owner of the record)
|
|
9486
|
+
*/
|
|
9487
|
+
did?: string | null;
|
|
9488
|
+
} | null;
|
|
9489
|
+
GOOGLE_BUSINESS?: {
|
|
9490
|
+
/**
|
|
9491
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
9492
|
+
*/
|
|
9493
|
+
id?: string | null;
|
|
9494
|
+
/**
|
|
9495
|
+
* Public link to the post (searchUrl) when available.
|
|
9496
|
+
*/
|
|
9497
|
+
permalink?: string | null;
|
|
9498
|
+
} | null;
|
|
8220
9499
|
} | null;
|
|
8221
9500
|
createdAt: string | null;
|
|
8222
9501
|
updatedAt: string | null;
|
|
@@ -8275,10 +9554,11 @@ type $OpenApiTs = {
|
|
|
8275
9554
|
200: {
|
|
8276
9555
|
socialAccount: {
|
|
8277
9556
|
id: string;
|
|
8278
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
9557
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8279
9558
|
teamId: string;
|
|
8280
9559
|
username?: string | null;
|
|
8281
9560
|
displayName?: string | null;
|
|
9561
|
+
avatarUrl?: string | null;
|
|
8282
9562
|
externalId?: string | null;
|
|
8283
9563
|
userUsername?: string | null;
|
|
8284
9564
|
userDisplayName?: string | null;
|
|
@@ -8287,6 +9567,7 @@ type $OpenApiTs = {
|
|
|
8287
9567
|
id: string;
|
|
8288
9568
|
name?: string | null;
|
|
8289
9569
|
username?: string | null;
|
|
9570
|
+
avatarUrl?: string | null;
|
|
8290
9571
|
webhook?: {
|
|
8291
9572
|
id?: string | null;
|
|
8292
9573
|
name?: string | null;
|
|
@@ -8582,21 +9863,79 @@ type $OpenApiTs = {
|
|
|
8582
9863
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
8583
9864
|
spoiler?: string | null;
|
|
8584
9865
|
} | null;
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8597
|
-
|
|
8598
|
-
|
|
8599
|
-
|
|
9866
|
+
BLUESKY?: {
|
|
9867
|
+
text?: string | null;
|
|
9868
|
+
uploadIds?: Array<(string)> | null;
|
|
9869
|
+
/**
|
|
9870
|
+
* Extra hashtags (without #), up to 8.
|
|
9871
|
+
*/
|
|
9872
|
+
tags?: Array<(string)> | null;
|
|
9873
|
+
/**
|
|
9874
|
+
* Self-labels (content warnings) applied to the post.
|
|
9875
|
+
*/
|
|
9876
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
9877
|
+
/**
|
|
9878
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
9879
|
+
*/
|
|
9880
|
+
quoteUri?: string;
|
|
9881
|
+
/**
|
|
9882
|
+
* Target URL for the external link card
|
|
9883
|
+
*/
|
|
9884
|
+
externalUrl?: string | null;
|
|
9885
|
+
/**
|
|
9886
|
+
* Card title for the external link card
|
|
9887
|
+
*/
|
|
9888
|
+
externalTitle?: string | null;
|
|
9889
|
+
/**
|
|
9890
|
+
* Card description for the external link card
|
|
9891
|
+
*/
|
|
9892
|
+
externalDescription?: string | null;
|
|
9893
|
+
/**
|
|
9894
|
+
* Alt text for the video embed.
|
|
9895
|
+
*/
|
|
9896
|
+
videoAlt?: string | null;
|
|
9897
|
+
} | null;
|
|
9898
|
+
GOOGLE_BUSINESS?: {
|
|
9899
|
+
text?: string | null;
|
|
9900
|
+
/**
|
|
9901
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
9902
|
+
*/
|
|
9903
|
+
uploadIds?: Array<(string)> | null;
|
|
9904
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
9905
|
+
/**
|
|
9906
|
+
* Language tag like 'en' or 'en-US'.
|
|
9907
|
+
*/
|
|
9908
|
+
languageCode?: string | null;
|
|
9909
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
9910
|
+
callToActionUrl?: string | null;
|
|
9911
|
+
eventTitle?: string | null;
|
|
9912
|
+
eventStartDate?: string | null;
|
|
9913
|
+
eventEndDate?: string | null;
|
|
9914
|
+
offerCouponCode?: string | null;
|
|
9915
|
+
offerRedeemOnlineUrl?: string | null;
|
|
9916
|
+
offerTermsConditions?: string | null;
|
|
9917
|
+
/**
|
|
9918
|
+
* Alert type for ALERT posts.
|
|
9919
|
+
*/
|
|
9920
|
+
alertType?: 'COVID_19' | null;
|
|
9921
|
+
} | null;
|
|
9922
|
+
};
|
|
9923
|
+
error?: string | null;
|
|
9924
|
+
errors?: {
|
|
9925
|
+
TWITTER?: string | null;
|
|
9926
|
+
PINTEREST?: string | null;
|
|
9927
|
+
FACEBOOK?: string | null;
|
|
9928
|
+
INSTAGRAM?: string | null;
|
|
9929
|
+
TIKTOK?: string | null;
|
|
9930
|
+
LINKEDIN?: string | null;
|
|
9931
|
+
REDDIT?: string | null;
|
|
9932
|
+
DISCORD?: string | null;
|
|
9933
|
+
SLACK?: string | null;
|
|
9934
|
+
YOUTUBE?: string | null;
|
|
9935
|
+
MASTODON?: string | null;
|
|
9936
|
+
THREADS?: string | null;
|
|
9937
|
+
BLUESKY?: string | null;
|
|
9938
|
+
GOOGLE_BUSINESS?: string | null;
|
|
8600
9939
|
} | null;
|
|
8601
9940
|
externalData?: {
|
|
8602
9941
|
TWITTER?: {
|
|
@@ -8613,12 +9952,12 @@ type $OpenApiTs = {
|
|
|
8613
9952
|
postId?: string | null;
|
|
8614
9953
|
videoId?: string | null;
|
|
8615
9954
|
permalink?: string | null;
|
|
8616
|
-
thumbnail?: string;
|
|
9955
|
+
thumbnail?: string | null;
|
|
8617
9956
|
} | null;
|
|
8618
9957
|
INSTAGRAM?: {
|
|
8619
9958
|
id?: string | null;
|
|
8620
9959
|
permalink?: string | null;
|
|
8621
|
-
thumbnail?: string;
|
|
9960
|
+
thumbnail?: string | null;
|
|
8622
9961
|
} | null;
|
|
8623
9962
|
TIKTOK?: {
|
|
8624
9963
|
id?: string | null;
|
|
@@ -8628,7 +9967,7 @@ type $OpenApiTs = {
|
|
|
8628
9967
|
id?: string | null;
|
|
8629
9968
|
activity?: string | null;
|
|
8630
9969
|
permalink?: string | null;
|
|
8631
|
-
thumbnail?: string;
|
|
9970
|
+
thumbnail?: string | null;
|
|
8632
9971
|
} | null;
|
|
8633
9972
|
REDDIT?: {
|
|
8634
9973
|
id?: string | null;
|
|
@@ -8659,6 +9998,29 @@ type $OpenApiTs = {
|
|
|
8659
9998
|
id?: string | null;
|
|
8660
9999
|
permalink?: string | null;
|
|
8661
10000
|
} | null;
|
|
10001
|
+
BLUESKY?: {
|
|
10002
|
+
id?: string | null;
|
|
10003
|
+
uri?: string | null;
|
|
10004
|
+
/**
|
|
10005
|
+
* Content ID of the created record
|
|
10006
|
+
*/
|
|
10007
|
+
cid?: string | null;
|
|
10008
|
+
permalink?: string | null;
|
|
10009
|
+
/**
|
|
10010
|
+
* Author DID (owner of the record)
|
|
10011
|
+
*/
|
|
10012
|
+
did?: string | null;
|
|
10013
|
+
} | null;
|
|
10014
|
+
GOOGLE_BUSINESS?: {
|
|
10015
|
+
/**
|
|
10016
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
10017
|
+
*/
|
|
10018
|
+
id?: string | null;
|
|
10019
|
+
/**
|
|
10020
|
+
* Public link to the post (searchUrl) when available.
|
|
10021
|
+
*/
|
|
10022
|
+
permalink?: string | null;
|
|
10023
|
+
} | null;
|
|
8662
10024
|
} | null;
|
|
8663
10025
|
createdAt: string | null;
|
|
8664
10026
|
updatedAt: string | null;
|
|
@@ -8735,10 +10097,11 @@ type $OpenApiTs = {
|
|
|
8735
10097
|
200: {
|
|
8736
10098
|
socialAccount: {
|
|
8737
10099
|
id: string;
|
|
8738
|
-
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK';
|
|
10100
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
8739
10101
|
teamId: string;
|
|
8740
10102
|
username?: string | null;
|
|
8741
10103
|
displayName?: string | null;
|
|
10104
|
+
avatarUrl?: string | null;
|
|
8742
10105
|
externalId?: string | null;
|
|
8743
10106
|
userUsername?: string | null;
|
|
8744
10107
|
userDisplayName?: string | null;
|
|
@@ -8747,6 +10110,7 @@ type $OpenApiTs = {
|
|
|
8747
10110
|
id: string;
|
|
8748
10111
|
name?: string | null;
|
|
8749
10112
|
username?: string | null;
|
|
10113
|
+
avatarUrl?: string | null;
|
|
8750
10114
|
webhook?: {
|
|
8751
10115
|
id?: string | null;
|
|
8752
10116
|
name?: string | null;
|
|
@@ -9035,6 +10399,62 @@ type $OpenApiTs = {
|
|
|
9035
10399
|
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
9036
10400
|
spoiler?: string | null;
|
|
9037
10401
|
} | null;
|
|
10402
|
+
BLUESKY?: {
|
|
10403
|
+
text?: string | null;
|
|
10404
|
+
uploadIds?: Array<(string)> | null;
|
|
10405
|
+
/**
|
|
10406
|
+
* Extra hashtags (without #), up to 8.
|
|
10407
|
+
*/
|
|
10408
|
+
tags?: Array<(string)> | null;
|
|
10409
|
+
/**
|
|
10410
|
+
* Self-labels (content warnings) applied to the post.
|
|
10411
|
+
*/
|
|
10412
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
10413
|
+
/**
|
|
10414
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
10415
|
+
*/
|
|
10416
|
+
quoteUri?: string;
|
|
10417
|
+
/**
|
|
10418
|
+
* Target URL for the external link card
|
|
10419
|
+
*/
|
|
10420
|
+
externalUrl?: string | null;
|
|
10421
|
+
/**
|
|
10422
|
+
* Card title for the external link card
|
|
10423
|
+
*/
|
|
10424
|
+
externalTitle?: string | null;
|
|
10425
|
+
/**
|
|
10426
|
+
* Card description for the external link card
|
|
10427
|
+
*/
|
|
10428
|
+
externalDescription?: string | null;
|
|
10429
|
+
/**
|
|
10430
|
+
* Alt text for the video embed.
|
|
10431
|
+
*/
|
|
10432
|
+
videoAlt?: string | null;
|
|
10433
|
+
} | null;
|
|
10434
|
+
GOOGLE_BUSINESS?: {
|
|
10435
|
+
text?: string | null;
|
|
10436
|
+
/**
|
|
10437
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
10438
|
+
*/
|
|
10439
|
+
uploadIds?: Array<(string)> | null;
|
|
10440
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
10441
|
+
/**
|
|
10442
|
+
* Language tag like 'en' or 'en-US'.
|
|
10443
|
+
*/
|
|
10444
|
+
languageCode?: string | null;
|
|
10445
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
10446
|
+
callToActionUrl?: string | null;
|
|
10447
|
+
eventTitle?: string | null;
|
|
10448
|
+
eventStartDate?: string | null;
|
|
10449
|
+
eventEndDate?: string | null;
|
|
10450
|
+
offerCouponCode?: string | null;
|
|
10451
|
+
offerRedeemOnlineUrl?: string | null;
|
|
10452
|
+
offerTermsConditions?: string | null;
|
|
10453
|
+
/**
|
|
10454
|
+
* Alert type for ALERT posts.
|
|
10455
|
+
*/
|
|
10456
|
+
alertType?: 'COVID_19' | null;
|
|
10457
|
+
} | null;
|
|
9038
10458
|
};
|
|
9039
10459
|
error?: string | null;
|
|
9040
10460
|
errors?: {
|
|
@@ -9050,6 +10470,8 @@ type $OpenApiTs = {
|
|
|
9050
10470
|
YOUTUBE?: string | null;
|
|
9051
10471
|
MASTODON?: string | null;
|
|
9052
10472
|
THREADS?: string | null;
|
|
10473
|
+
BLUESKY?: string | null;
|
|
10474
|
+
GOOGLE_BUSINESS?: string | null;
|
|
9053
10475
|
} | null;
|
|
9054
10476
|
externalData?: {
|
|
9055
10477
|
TWITTER?: {
|
|
@@ -9066,12 +10488,12 @@ type $OpenApiTs = {
|
|
|
9066
10488
|
postId?: string | null;
|
|
9067
10489
|
videoId?: string | null;
|
|
9068
10490
|
permalink?: string | null;
|
|
9069
|
-
thumbnail?: string;
|
|
10491
|
+
thumbnail?: string | null;
|
|
9070
10492
|
} | null;
|
|
9071
10493
|
INSTAGRAM?: {
|
|
9072
10494
|
id?: string | null;
|
|
9073
10495
|
permalink?: string | null;
|
|
9074
|
-
thumbnail?: string;
|
|
10496
|
+
thumbnail?: string | null;
|
|
9075
10497
|
} | null;
|
|
9076
10498
|
TIKTOK?: {
|
|
9077
10499
|
id?: string | null;
|
|
@@ -9081,7 +10503,7 @@ type $OpenApiTs = {
|
|
|
9081
10503
|
id?: string | null;
|
|
9082
10504
|
activity?: string | null;
|
|
9083
10505
|
permalink?: string | null;
|
|
9084
|
-
thumbnail?: string;
|
|
10506
|
+
thumbnail?: string | null;
|
|
9085
10507
|
} | null;
|
|
9086
10508
|
REDDIT?: {
|
|
9087
10509
|
id?: string | null;
|
|
@@ -9112,6 +10534,29 @@ type $OpenApiTs = {
|
|
|
9112
10534
|
id?: string | null;
|
|
9113
10535
|
permalink?: string | null;
|
|
9114
10536
|
} | null;
|
|
10537
|
+
BLUESKY?: {
|
|
10538
|
+
id?: string | null;
|
|
10539
|
+
uri?: string | null;
|
|
10540
|
+
/**
|
|
10541
|
+
* Content ID of the created record
|
|
10542
|
+
*/
|
|
10543
|
+
cid?: string | null;
|
|
10544
|
+
permalink?: string | null;
|
|
10545
|
+
/**
|
|
10546
|
+
* Author DID (owner of the record)
|
|
10547
|
+
*/
|
|
10548
|
+
did?: string | null;
|
|
10549
|
+
} | null;
|
|
10550
|
+
GOOGLE_BUSINESS?: {
|
|
10551
|
+
/**
|
|
10552
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
10553
|
+
*/
|
|
10554
|
+
id?: string | null;
|
|
10555
|
+
/**
|
|
10556
|
+
* Public link to the post (searchUrl) when available.
|
|
10557
|
+
*/
|
|
10558
|
+
permalink?: string | null;
|
|
10559
|
+
} | null;
|
|
9115
10560
|
} | null;
|
|
9116
10561
|
createdAt: string | null;
|
|
9117
10562
|
updatedAt: string | null;
|
|
@@ -9520,6 +10965,9 @@ type $OpenApiTs = {
|
|
|
9520
10965
|
SLACK?: {
|
|
9521
10966
|
text?: string | null;
|
|
9522
10967
|
} | null;
|
|
10968
|
+
BLUESKY?: {
|
|
10969
|
+
text?: string | null;
|
|
10970
|
+
} | null;
|
|
9523
10971
|
};
|
|
9524
10972
|
error?: string | null;
|
|
9525
10973
|
errors?: {
|
|
@@ -9533,6 +10981,7 @@ type $OpenApiTs = {
|
|
|
9533
10981
|
THREADS?: string | null;
|
|
9534
10982
|
DISCORD?: string | null;
|
|
9535
10983
|
SLACK?: string | null;
|
|
10984
|
+
BLUESKY?: string | null;
|
|
9536
10985
|
} | null;
|
|
9537
10986
|
externalData?: {
|
|
9538
10987
|
FACEBOOK?: {
|
|
@@ -9576,6 +11025,19 @@ type $OpenApiTs = {
|
|
|
9576
11025
|
id?: string | null;
|
|
9577
11026
|
permalink?: string | null;
|
|
9578
11027
|
} | null;
|
|
11028
|
+
BLUESKY?: {
|
|
11029
|
+
id?: string | null;
|
|
11030
|
+
uri?: string | null;
|
|
11031
|
+
/**
|
|
11032
|
+
* Content ID of the created record
|
|
11033
|
+
*/
|
|
11034
|
+
cid?: string | null;
|
|
11035
|
+
permalink?: string | null;
|
|
11036
|
+
/**
|
|
11037
|
+
* Author DID (owner of the record)
|
|
11038
|
+
*/
|
|
11039
|
+
did?: string | null;
|
|
11040
|
+
} | null;
|
|
9579
11041
|
} | null;
|
|
9580
11042
|
createdAt: string | null;
|
|
9581
11043
|
updatedAt: string | null;
|
|
@@ -9670,6 +11132,9 @@ type $OpenApiTs = {
|
|
|
9670
11132
|
SLACK?: {
|
|
9671
11133
|
text?: string | null;
|
|
9672
11134
|
} | null;
|
|
11135
|
+
BLUESKY?: {
|
|
11136
|
+
text?: string | null;
|
|
11137
|
+
} | null;
|
|
9673
11138
|
};
|
|
9674
11139
|
error?: string | null;
|
|
9675
11140
|
errors?: {
|
|
@@ -9683,6 +11148,7 @@ type $OpenApiTs = {
|
|
|
9683
11148
|
THREADS?: string | null;
|
|
9684
11149
|
DISCORD?: string | null;
|
|
9685
11150
|
SLACK?: string | null;
|
|
11151
|
+
BLUESKY?: string | null;
|
|
9686
11152
|
} | null;
|
|
9687
11153
|
externalData?: {
|
|
9688
11154
|
FACEBOOK?: {
|
|
@@ -9726,6 +11192,19 @@ type $OpenApiTs = {
|
|
|
9726
11192
|
id?: string | null;
|
|
9727
11193
|
permalink?: string | null;
|
|
9728
11194
|
} | null;
|
|
11195
|
+
BLUESKY?: {
|
|
11196
|
+
id?: string | null;
|
|
11197
|
+
uri?: string | null;
|
|
11198
|
+
/**
|
|
11199
|
+
* Content ID of the created record
|
|
11200
|
+
*/
|
|
11201
|
+
cid?: string | null;
|
|
11202
|
+
permalink?: string | null;
|
|
11203
|
+
/**
|
|
11204
|
+
* Author DID (owner of the record)
|
|
11205
|
+
*/
|
|
11206
|
+
did?: string | null;
|
|
11207
|
+
} | null;
|
|
9729
11208
|
} | null;
|
|
9730
11209
|
createdAt: string | null;
|
|
9731
11210
|
updatedAt: string | null;
|
|
@@ -9820,6 +11299,9 @@ type $OpenApiTs = {
|
|
|
9820
11299
|
SLACK?: {
|
|
9821
11300
|
text?: string | null;
|
|
9822
11301
|
} | null;
|
|
11302
|
+
BLUESKY?: {
|
|
11303
|
+
text?: string | null;
|
|
11304
|
+
} | null;
|
|
9823
11305
|
};
|
|
9824
11306
|
error?: string | null;
|
|
9825
11307
|
errors?: {
|
|
@@ -9833,6 +11315,7 @@ type $OpenApiTs = {
|
|
|
9833
11315
|
THREADS?: string | null;
|
|
9834
11316
|
DISCORD?: string | null;
|
|
9835
11317
|
SLACK?: string | null;
|
|
11318
|
+
BLUESKY?: string | null;
|
|
9836
11319
|
} | null;
|
|
9837
11320
|
externalData?: {
|
|
9838
11321
|
FACEBOOK?: {
|
|
@@ -9876,6 +11359,19 @@ type $OpenApiTs = {
|
|
|
9876
11359
|
id?: string | null;
|
|
9877
11360
|
permalink?: string | null;
|
|
9878
11361
|
} | null;
|
|
11362
|
+
BLUESKY?: {
|
|
11363
|
+
id?: string | null;
|
|
11364
|
+
uri?: string | null;
|
|
11365
|
+
/**
|
|
11366
|
+
* Content ID of the created record
|
|
11367
|
+
*/
|
|
11368
|
+
cid?: string | null;
|
|
11369
|
+
permalink?: string | null;
|
|
11370
|
+
/**
|
|
11371
|
+
* Author DID (owner of the record)
|
|
11372
|
+
*/
|
|
11373
|
+
did?: string | null;
|
|
11374
|
+
} | null;
|
|
9879
11375
|
} | null;
|
|
9880
11376
|
createdAt: string | null;
|
|
9881
11377
|
updatedAt: string | null;
|
|
@@ -9973,6 +11469,9 @@ type $OpenApiTs = {
|
|
|
9973
11469
|
SLACK?: {
|
|
9974
11470
|
text?: string | null;
|
|
9975
11471
|
} | null;
|
|
11472
|
+
BLUESKY?: {
|
|
11473
|
+
text?: string | null;
|
|
11474
|
+
} | null;
|
|
9976
11475
|
};
|
|
9977
11476
|
error?: string | null;
|
|
9978
11477
|
errors?: {
|
|
@@ -9986,6 +11485,7 @@ type $OpenApiTs = {
|
|
|
9986
11485
|
THREADS?: string | null;
|
|
9987
11486
|
DISCORD?: string | null;
|
|
9988
11487
|
SLACK?: string | null;
|
|
11488
|
+
BLUESKY?: string | null;
|
|
9989
11489
|
} | null;
|
|
9990
11490
|
externalData?: {
|
|
9991
11491
|
FACEBOOK?: {
|
|
@@ -10029,6 +11529,19 @@ type $OpenApiTs = {
|
|
|
10029
11529
|
id?: string | null;
|
|
10030
11530
|
permalink?: string | null;
|
|
10031
11531
|
} | null;
|
|
11532
|
+
BLUESKY?: {
|
|
11533
|
+
id?: string | null;
|
|
11534
|
+
uri?: string | null;
|
|
11535
|
+
/**
|
|
11536
|
+
* Content ID of the created record
|
|
11537
|
+
*/
|
|
11538
|
+
cid?: string | null;
|
|
11539
|
+
permalink?: string | null;
|
|
11540
|
+
/**
|
|
11541
|
+
* Author DID (owner of the record)
|
|
11542
|
+
*/
|
|
11543
|
+
did?: string | null;
|
|
11544
|
+
} | null;
|
|
10032
11545
|
} | null;
|
|
10033
11546
|
createdAt: string | null;
|
|
10034
11547
|
updatedAt: string | null;
|
|
@@ -10125,6 +11638,9 @@ type $OpenApiTs = {
|
|
|
10125
11638
|
SLACK?: {
|
|
10126
11639
|
text?: string | null;
|
|
10127
11640
|
} | null;
|
|
11641
|
+
BLUESKY?: {
|
|
11642
|
+
text?: string | null;
|
|
11643
|
+
} | null;
|
|
10128
11644
|
};
|
|
10129
11645
|
error?: string | null;
|
|
10130
11646
|
errors?: {
|
|
@@ -10138,6 +11654,7 @@ type $OpenApiTs = {
|
|
|
10138
11654
|
THREADS?: string | null;
|
|
10139
11655
|
DISCORD?: string | null;
|
|
10140
11656
|
SLACK?: string | null;
|
|
11657
|
+
BLUESKY?: string | null;
|
|
10141
11658
|
} | null;
|
|
10142
11659
|
externalData?: {
|
|
10143
11660
|
FACEBOOK?: {
|
|
@@ -10181,6 +11698,19 @@ type $OpenApiTs = {
|
|
|
10181
11698
|
id?: string | null;
|
|
10182
11699
|
permalink?: string | null;
|
|
10183
11700
|
} | null;
|
|
11701
|
+
BLUESKY?: {
|
|
11702
|
+
id?: string | null;
|
|
11703
|
+
uri?: string | null;
|
|
11704
|
+
/**
|
|
11705
|
+
* Content ID of the created record
|
|
11706
|
+
*/
|
|
11707
|
+
cid?: string | null;
|
|
11708
|
+
permalink?: string | null;
|
|
11709
|
+
/**
|
|
11710
|
+
* Author DID (owner of the record)
|
|
11711
|
+
*/
|
|
11712
|
+
did?: string | null;
|
|
11713
|
+
} | null;
|
|
10184
11714
|
} | null;
|
|
10185
11715
|
createdAt: string | null;
|
|
10186
11716
|
updatedAt: string | null;
|
|
@@ -10231,7 +11761,7 @@ type $OpenApiTs = {
|
|
|
10231
11761
|
};
|
|
10232
11762
|
'/api/v1/misc/youtube/thumbnail': {
|
|
10233
11763
|
post: {
|
|
10234
|
-
req:
|
|
11764
|
+
req: MiscYoutubeSetThumbnailData;
|
|
10235
11765
|
res: {
|
|
10236
11766
|
/**
|
|
10237
11767
|
* 200
|
|
@@ -10310,7 +11840,7 @@ type $OpenApiTs = {
|
|
|
10310
11840
|
};
|
|
10311
11841
|
'/api/v1/misc/youtube/playlist': {
|
|
10312
11842
|
get: {
|
|
10313
|
-
req:
|
|
11843
|
+
req: MiscYoutubeGetChannelPlaylistData;
|
|
10314
11844
|
res: {
|
|
10315
11845
|
/**
|
|
10316
11846
|
* 200
|
|
@@ -10417,7 +11947,7 @@ type $OpenApiTs = {
|
|
|
10417
11947
|
};
|
|
10418
11948
|
};
|
|
10419
11949
|
post: {
|
|
10420
|
-
req:
|
|
11950
|
+
req: MiscYoutubeCreateNewChannelPlaylistData;
|
|
10421
11951
|
res: {
|
|
10422
11952
|
/**
|
|
10423
11953
|
* 200
|
|
@@ -10514,7 +12044,7 @@ type $OpenApiTs = {
|
|
|
10514
12044
|
};
|
|
10515
12045
|
};
|
|
10516
12046
|
put: {
|
|
10517
|
-
req:
|
|
12047
|
+
req: MiscYoutubeUpdateChannelPlaylistData;
|
|
10518
12048
|
res: {
|
|
10519
12049
|
/**
|
|
10520
12050
|
* 200
|
|
@@ -10613,7 +12143,7 @@ type $OpenApiTs = {
|
|
|
10613
12143
|
};
|
|
10614
12144
|
'/api/v1/misc/youtube/playlist/{playlistId}': {
|
|
10615
12145
|
delete: {
|
|
10616
|
-
req:
|
|
12146
|
+
req: MiscYoutubeDeleteChannelPlaylistData;
|
|
10617
12147
|
res: {
|
|
10618
12148
|
/**
|
|
10619
12149
|
* 200
|
|
@@ -10664,7 +12194,7 @@ type $OpenApiTs = {
|
|
|
10664
12194
|
};
|
|
10665
12195
|
'/api/v1/misc/youtube/playlist-items': {
|
|
10666
12196
|
post: {
|
|
10667
|
-
req:
|
|
12197
|
+
req: MiscYoutubeAddVideoToPlaylistData;
|
|
10668
12198
|
res: {
|
|
10669
12199
|
/**
|
|
10670
12200
|
* 200
|
|
@@ -10763,7 +12293,7 @@ type $OpenApiTs = {
|
|
|
10763
12293
|
};
|
|
10764
12294
|
};
|
|
10765
12295
|
get: {
|
|
10766
|
-
req:
|
|
12296
|
+
req: MiscYoutubeGetVideosFromPlaylistData;
|
|
10767
12297
|
res: {
|
|
10768
12298
|
/**
|
|
10769
12299
|
* 200
|
|
@@ -10874,7 +12404,7 @@ type $OpenApiTs = {
|
|
|
10874
12404
|
};
|
|
10875
12405
|
'/api/v1/misc/youtube/playlist-items/{playlistItemId}': {
|
|
10876
12406
|
delete: {
|
|
10877
|
-
req:
|
|
12407
|
+
req: MiscYoutubeDeleteVideoFromPlaylistData;
|
|
10878
12408
|
res: {
|
|
10879
12409
|
/**
|
|
10880
12410
|
* 200
|
|
@@ -10923,6 +12453,184 @@ type $OpenApiTs = {
|
|
|
10923
12453
|
};
|
|
10924
12454
|
};
|
|
10925
12455
|
};
|
|
12456
|
+
'/api/v1/misc/linkedin/mentions/tags': {
|
|
12457
|
+
get: {
|
|
12458
|
+
req: MiscLinkedinGetTagsData;
|
|
12459
|
+
res: {
|
|
12460
|
+
/**
|
|
12461
|
+
* 200
|
|
12462
|
+
*/
|
|
12463
|
+
200: {
|
|
12464
|
+
people?: Array<{
|
|
12465
|
+
kind: 'person';
|
|
12466
|
+
urn: string;
|
|
12467
|
+
display: string;
|
|
12468
|
+
headline?: string;
|
|
12469
|
+
photoUrl?: string;
|
|
12470
|
+
}>;
|
|
12471
|
+
organizations?: Array<{
|
|
12472
|
+
kind: 'organization';
|
|
12473
|
+
urn: string;
|
|
12474
|
+
display: string;
|
|
12475
|
+
vanityName?: string;
|
|
12476
|
+
logoUrl?: string;
|
|
12477
|
+
}>;
|
|
12478
|
+
};
|
|
12479
|
+
/**
|
|
12480
|
+
* 400
|
|
12481
|
+
*/
|
|
12482
|
+
400: {
|
|
12483
|
+
message: string;
|
|
12484
|
+
issues?: Array<{
|
|
12485
|
+
message: string;
|
|
12486
|
+
path?: Array<(string | number)> | null;
|
|
12487
|
+
}> | null;
|
|
12488
|
+
};
|
|
12489
|
+
/**
|
|
12490
|
+
* 401
|
|
12491
|
+
*/
|
|
12492
|
+
401: {
|
|
12493
|
+
message: string;
|
|
12494
|
+
};
|
|
12495
|
+
/**
|
|
12496
|
+
* 403
|
|
12497
|
+
*/
|
|
12498
|
+
403: {
|
|
12499
|
+
message: string;
|
|
12500
|
+
};
|
|
12501
|
+
/**
|
|
12502
|
+
* 404
|
|
12503
|
+
*/
|
|
12504
|
+
404: {
|
|
12505
|
+
message: string;
|
|
12506
|
+
};
|
|
12507
|
+
/**
|
|
12508
|
+
* 429
|
|
12509
|
+
*/
|
|
12510
|
+
429: {
|
|
12511
|
+
message: string;
|
|
12512
|
+
};
|
|
12513
|
+
/**
|
|
12514
|
+
* 500
|
|
12515
|
+
*/
|
|
12516
|
+
500: {
|
|
12517
|
+
message: string;
|
|
12518
|
+
};
|
|
12519
|
+
};
|
|
12520
|
+
};
|
|
12521
|
+
};
|
|
12522
|
+
'/api/v1/misc/linkedin/mentions/builder': {
|
|
12523
|
+
post: {
|
|
12524
|
+
req: MiscLinkedinBuildCommentaryData;
|
|
12525
|
+
res: {
|
|
12526
|
+
/**
|
|
12527
|
+
* 200
|
|
12528
|
+
*/
|
|
12529
|
+
200: {
|
|
12530
|
+
commentary: string;
|
|
12531
|
+
};
|
|
12532
|
+
/**
|
|
12533
|
+
* 400
|
|
12534
|
+
*/
|
|
12535
|
+
400: {
|
|
12536
|
+
message: string;
|
|
12537
|
+
issues?: Array<{
|
|
12538
|
+
message: string;
|
|
12539
|
+
path?: Array<(string | number)> | null;
|
|
12540
|
+
}> | null;
|
|
12541
|
+
};
|
|
12542
|
+
/**
|
|
12543
|
+
* 401
|
|
12544
|
+
*/
|
|
12545
|
+
401: {
|
|
12546
|
+
message: string;
|
|
12547
|
+
};
|
|
12548
|
+
/**
|
|
12549
|
+
* 403
|
|
12550
|
+
*/
|
|
12551
|
+
403: {
|
|
12552
|
+
message: string;
|
|
12553
|
+
};
|
|
12554
|
+
/**
|
|
12555
|
+
* 404
|
|
12556
|
+
*/
|
|
12557
|
+
404: {
|
|
12558
|
+
message: string;
|
|
12559
|
+
};
|
|
12560
|
+
/**
|
|
12561
|
+
* 429
|
|
12562
|
+
*/
|
|
12563
|
+
429: {
|
|
12564
|
+
message: string;
|
|
12565
|
+
};
|
|
12566
|
+
/**
|
|
12567
|
+
* 500
|
|
12568
|
+
*/
|
|
12569
|
+
500: {
|
|
12570
|
+
message: string;
|
|
12571
|
+
};
|
|
12572
|
+
};
|
|
12573
|
+
};
|
|
12574
|
+
};
|
|
12575
|
+
'/api/v1/misc/google-business/media': {
|
|
12576
|
+
post: {
|
|
12577
|
+
req: MiscGoogleBusinessAddMediaData;
|
|
12578
|
+
res: {
|
|
12579
|
+
/**
|
|
12580
|
+
* 200
|
|
12581
|
+
*/
|
|
12582
|
+
200: {
|
|
12583
|
+
name?: string;
|
|
12584
|
+
googleUrl?: string;
|
|
12585
|
+
locationAssociation?: {
|
|
12586
|
+
category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
|
|
12587
|
+
priceListItemId?: string;
|
|
12588
|
+
};
|
|
12589
|
+
description?: string;
|
|
12590
|
+
};
|
|
12591
|
+
/**
|
|
12592
|
+
* 400
|
|
12593
|
+
*/
|
|
12594
|
+
400: {
|
|
12595
|
+
message: string;
|
|
12596
|
+
issues?: Array<{
|
|
12597
|
+
message: string;
|
|
12598
|
+
path?: Array<(string | number)> | null;
|
|
12599
|
+
}> | null;
|
|
12600
|
+
};
|
|
12601
|
+
/**
|
|
12602
|
+
* 401
|
|
12603
|
+
*/
|
|
12604
|
+
401: {
|
|
12605
|
+
message: string;
|
|
12606
|
+
};
|
|
12607
|
+
/**
|
|
12608
|
+
* 403
|
|
12609
|
+
*/
|
|
12610
|
+
403: {
|
|
12611
|
+
message: string;
|
|
12612
|
+
};
|
|
12613
|
+
/**
|
|
12614
|
+
* 404
|
|
12615
|
+
*/
|
|
12616
|
+
404: {
|
|
12617
|
+
message: string;
|
|
12618
|
+
};
|
|
12619
|
+
/**
|
|
12620
|
+
* 429
|
|
12621
|
+
*/
|
|
12622
|
+
429: {
|
|
12623
|
+
message: string;
|
|
12624
|
+
};
|
|
12625
|
+
/**
|
|
12626
|
+
* 500
|
|
12627
|
+
*/
|
|
12628
|
+
500: {
|
|
12629
|
+
message: string;
|
|
12630
|
+
};
|
|
12631
|
+
};
|
|
12632
|
+
};
|
|
12633
|
+
};
|
|
10926
12634
|
};
|
|
10927
12635
|
|
|
10928
12636
|
declare class AppService {
|
|
@@ -11314,7 +13022,107 @@ declare class MiscService {
|
|
|
11314
13022
|
* @returns unknown 200
|
|
11315
13023
|
* @throws ApiError
|
|
11316
13024
|
*/
|
|
11317
|
-
|
|
13025
|
+
miscYoutubeSetThumbnail(data?: MiscYoutubeSetThumbnailData): CancelablePromise<MiscYoutubeSetThumbnailResponse>;
|
|
13026
|
+
/**
|
|
13027
|
+
* Get channel playlists
|
|
13028
|
+
* @param data The data for the request.
|
|
13029
|
+
* @param data.teamId
|
|
13030
|
+
* @param data.maxResults
|
|
13031
|
+
* @returns unknown 200
|
|
13032
|
+
* @throws ApiError
|
|
13033
|
+
*/
|
|
13034
|
+
miscYoutubeGetChannelPlaylist(data: MiscYoutubeGetChannelPlaylistData): CancelablePromise<MiscYoutubeGetChannelPlaylistResponse>;
|
|
13035
|
+
/**
|
|
13036
|
+
* Create a new playlist
|
|
13037
|
+
* @param data The data for the request.
|
|
13038
|
+
* @param data.requestBody Body
|
|
13039
|
+
* @returns unknown 200
|
|
13040
|
+
* @throws ApiError
|
|
13041
|
+
*/
|
|
13042
|
+
miscYoutubeCreateNewChannelPlaylist(data?: MiscYoutubeCreateNewChannelPlaylistData): CancelablePromise<MiscYoutubeCreateNewChannelPlaylistResponse>;
|
|
13043
|
+
/**
|
|
13044
|
+
* Update an existing playlist
|
|
13045
|
+
* @param data The data for the request.
|
|
13046
|
+
* @param data.requestBody Body
|
|
13047
|
+
* @returns unknown 200
|
|
13048
|
+
* @throws ApiError
|
|
13049
|
+
*/
|
|
13050
|
+
miscYoutubeUpdateChannelPlaylist(data?: MiscYoutubeUpdateChannelPlaylistData): CancelablePromise<MiscYoutubeUpdateChannelPlaylistResponse>;
|
|
13051
|
+
/**
|
|
13052
|
+
* Remove a video from a playlist
|
|
13053
|
+
* @param data The data for the request.
|
|
13054
|
+
* @param data.playlistId
|
|
13055
|
+
* @param data.teamId
|
|
13056
|
+
* @returns boolean 200
|
|
13057
|
+
* @throws ApiError
|
|
13058
|
+
*/
|
|
13059
|
+
miscYoutubeDeleteChannelPlaylist(data: MiscYoutubeDeleteChannelPlaylistData): CancelablePromise<MiscYoutubeDeleteChannelPlaylistResponse>;
|
|
13060
|
+
/**
|
|
13061
|
+
* Add a video to a playlist
|
|
13062
|
+
* @param data The data for the request.
|
|
13063
|
+
* @param data.requestBody Body
|
|
13064
|
+
* @returns unknown 200
|
|
13065
|
+
* @throws ApiError
|
|
13066
|
+
*/
|
|
13067
|
+
miscYoutubeAddVideoToPlaylist(data?: MiscYoutubeAddVideoToPlaylistData): CancelablePromise<MiscYoutubeAddVideoToPlaylistResponse>;
|
|
13068
|
+
/**
|
|
13069
|
+
* Get videos from a playlist
|
|
13070
|
+
* @param data The data for the request.
|
|
13071
|
+
* @param data.teamId
|
|
13072
|
+
* @param data.playlistId
|
|
13073
|
+
* @param data.maxResults
|
|
13074
|
+
* @returns unknown 200
|
|
13075
|
+
* @throws ApiError
|
|
13076
|
+
*/
|
|
13077
|
+
miscYoutubeGetVideosFromPlaylist(data: MiscYoutubeGetVideosFromPlaylistData): CancelablePromise<MiscYoutubeGetVideosFromPlaylistResponse>;
|
|
13078
|
+
/**
|
|
13079
|
+
* Remove a video from a playlist
|
|
13080
|
+
* @param data The data for the request.
|
|
13081
|
+
* @param data.playlistItemId Playlist item ID (not video ID)
|
|
13082
|
+
* @param data.teamId
|
|
13083
|
+
* @returns boolean 200
|
|
13084
|
+
* @throws ApiError
|
|
13085
|
+
*/
|
|
13086
|
+
miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
|
|
13087
|
+
/**
|
|
13088
|
+
* Get LinkedIn mentionable tags (people & organizations)
|
|
13089
|
+
* @param data The data for the request.
|
|
13090
|
+
* @param data.teamId
|
|
13091
|
+
* @param data.q
|
|
13092
|
+
* @param data.scope
|
|
13093
|
+
* @returns unknown 200
|
|
13094
|
+
* @throws ApiError
|
|
13095
|
+
*/
|
|
13096
|
+
miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
|
|
13097
|
+
/**
|
|
13098
|
+
* Build LinkedIn text and insert mentions at /#tag\b/gi.
|
|
13099
|
+
* If `#tag` (case-insensitive) is present, mentions replace it; otherwise they’re appended to the end.
|
|
13100
|
+
* @param data The data for the request.
|
|
13101
|
+
* @param data.requestBody Body
|
|
13102
|
+
* @returns unknown 200
|
|
13103
|
+
* @throws ApiError
|
|
13104
|
+
*/
|
|
13105
|
+
miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
|
|
13106
|
+
/**
|
|
13107
|
+
* Add a media item (photo/video) using uploadId and category
|
|
13108
|
+
* @param data The data for the request.
|
|
13109
|
+
* @param data.requestBody Body
|
|
13110
|
+
* @returns unknown 200
|
|
13111
|
+
* @throws ApiError
|
|
13112
|
+
*/
|
|
13113
|
+
miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
|
|
13114
|
+
}
|
|
13115
|
+
declare class YoutubeService {
|
|
13116
|
+
readonly httpRequest: BaseHttpRequest;
|
|
13117
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
13118
|
+
/**
|
|
13119
|
+
* Set or change thumbnail for a YouTube video
|
|
13120
|
+
* @param data The data for the request.
|
|
13121
|
+
* @param data.requestBody Body
|
|
13122
|
+
* @returns unknown 200
|
|
13123
|
+
* @throws ApiError
|
|
13124
|
+
*/
|
|
13125
|
+
miscYoutubeSetThumbnail(data?: MiscYoutubeSetThumbnailData): CancelablePromise<MiscYoutubeSetThumbnailResponse>;
|
|
11318
13126
|
/**
|
|
11319
13127
|
* Get channel playlists
|
|
11320
13128
|
* @param data The data for the request.
|
|
@@ -11323,7 +13131,7 @@ declare class MiscService {
|
|
|
11323
13131
|
* @returns unknown 200
|
|
11324
13132
|
* @throws ApiError
|
|
11325
13133
|
*/
|
|
11326
|
-
|
|
13134
|
+
miscYoutubeGetChannelPlaylist(data: MiscYoutubeGetChannelPlaylistData): CancelablePromise<MiscYoutubeGetChannelPlaylistResponse>;
|
|
11327
13135
|
/**
|
|
11328
13136
|
* Create a new playlist
|
|
11329
13137
|
* @param data The data for the request.
|
|
@@ -11331,7 +13139,7 @@ declare class MiscService {
|
|
|
11331
13139
|
* @returns unknown 200
|
|
11332
13140
|
* @throws ApiError
|
|
11333
13141
|
*/
|
|
11334
|
-
|
|
13142
|
+
miscYoutubeCreateNewChannelPlaylist(data?: MiscYoutubeCreateNewChannelPlaylistData): CancelablePromise<MiscYoutubeCreateNewChannelPlaylistResponse>;
|
|
11335
13143
|
/**
|
|
11336
13144
|
* Update an existing playlist
|
|
11337
13145
|
* @param data The data for the request.
|
|
@@ -11339,7 +13147,7 @@ declare class MiscService {
|
|
|
11339
13147
|
* @returns unknown 200
|
|
11340
13148
|
* @throws ApiError
|
|
11341
13149
|
*/
|
|
11342
|
-
|
|
13150
|
+
miscYoutubeUpdateChannelPlaylist(data?: MiscYoutubeUpdateChannelPlaylistData): CancelablePromise<MiscYoutubeUpdateChannelPlaylistResponse>;
|
|
11343
13151
|
/**
|
|
11344
13152
|
* Remove a video from a playlist
|
|
11345
13153
|
* @param data The data for the request.
|
|
@@ -11348,7 +13156,7 @@ declare class MiscService {
|
|
|
11348
13156
|
* @returns boolean 200
|
|
11349
13157
|
* @throws ApiError
|
|
11350
13158
|
*/
|
|
11351
|
-
|
|
13159
|
+
miscYoutubeDeleteChannelPlaylist(data: MiscYoutubeDeleteChannelPlaylistData): CancelablePromise<MiscYoutubeDeleteChannelPlaylistResponse>;
|
|
11352
13160
|
/**
|
|
11353
13161
|
* Add a video to a playlist
|
|
11354
13162
|
* @param data The data for the request.
|
|
@@ -11356,7 +13164,7 @@ declare class MiscService {
|
|
|
11356
13164
|
* @returns unknown 200
|
|
11357
13165
|
* @throws ApiError
|
|
11358
13166
|
*/
|
|
11359
|
-
|
|
13167
|
+
miscYoutubeAddVideoToPlaylist(data?: MiscYoutubeAddVideoToPlaylistData): CancelablePromise<MiscYoutubeAddVideoToPlaylistResponse>;
|
|
11360
13168
|
/**
|
|
11361
13169
|
* Get videos from a playlist
|
|
11362
13170
|
* @param data The data for the request.
|
|
@@ -11366,7 +13174,7 @@ declare class MiscService {
|
|
|
11366
13174
|
* @returns unknown 200
|
|
11367
13175
|
* @throws ApiError
|
|
11368
13176
|
*/
|
|
11369
|
-
|
|
13177
|
+
miscYoutubeGetVideosFromPlaylist(data: MiscYoutubeGetVideosFromPlaylistData): CancelablePromise<MiscYoutubeGetVideosFromPlaylistResponse>;
|
|
11370
13178
|
/**
|
|
11371
13179
|
* Remove a video from a playlist
|
|
11372
13180
|
* @param data The data for the request.
|
|
@@ -11375,7 +13183,42 @@ declare class MiscService {
|
|
|
11375
13183
|
* @returns boolean 200
|
|
11376
13184
|
* @throws ApiError
|
|
11377
13185
|
*/
|
|
11378
|
-
|
|
13186
|
+
miscYoutubeDeleteVideoFromPlaylist(data: MiscYoutubeDeleteVideoFromPlaylistData): CancelablePromise<MiscYoutubeDeleteVideoFromPlaylistResponse>;
|
|
13187
|
+
}
|
|
13188
|
+
declare class LinkedinService {
|
|
13189
|
+
readonly httpRequest: BaseHttpRequest;
|
|
13190
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
13191
|
+
/**
|
|
13192
|
+
* Get LinkedIn mentionable tags (people & organizations)
|
|
13193
|
+
* @param data The data for the request.
|
|
13194
|
+
* @param data.teamId
|
|
13195
|
+
* @param data.q
|
|
13196
|
+
* @param data.scope
|
|
13197
|
+
* @returns unknown 200
|
|
13198
|
+
* @throws ApiError
|
|
13199
|
+
*/
|
|
13200
|
+
miscLinkedinGetTags(data: MiscLinkedinGetTagsData): CancelablePromise<MiscLinkedinGetTagsResponse>;
|
|
13201
|
+
/**
|
|
13202
|
+
* Build LinkedIn text and insert mentions at /#tag\b/gi.
|
|
13203
|
+
* If `#tag` (case-insensitive) is present, mentions replace it; otherwise they’re appended to the end.
|
|
13204
|
+
* @param data The data for the request.
|
|
13205
|
+
* @param data.requestBody Body
|
|
13206
|
+
* @returns unknown 200
|
|
13207
|
+
* @throws ApiError
|
|
13208
|
+
*/
|
|
13209
|
+
miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
|
|
13210
|
+
}
|
|
13211
|
+
declare class GoogleBusinessService {
|
|
13212
|
+
readonly httpRequest: BaseHttpRequest;
|
|
13213
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
13214
|
+
/**
|
|
13215
|
+
* Add a media item (photo/video) using uploadId and category
|
|
13216
|
+
* @param data The data for the request.
|
|
13217
|
+
* @param data.requestBody Body
|
|
13218
|
+
* @returns unknown 200
|
|
13219
|
+
* @throws ApiError
|
|
13220
|
+
*/
|
|
13221
|
+
miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
|
|
11379
13222
|
}
|
|
11380
13223
|
|
|
11381
13224
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
@@ -11383,12 +13226,15 @@ declare class Client {
|
|
|
11383
13226
|
readonly analytics: AnalyticsService;
|
|
11384
13227
|
readonly app: AppService;
|
|
11385
13228
|
readonly comment: CommentService;
|
|
13229
|
+
readonly googleBusiness: GoogleBusinessService;
|
|
13230
|
+
readonly linkedin: LinkedinService;
|
|
11386
13231
|
readonly misc: MiscService;
|
|
11387
13232
|
readonly organization: OrganizationService;
|
|
11388
13233
|
readonly post: PostService;
|
|
11389
13234
|
readonly socialAccount: SocialAccountService;
|
|
11390
13235
|
readonly team: TeamService;
|
|
11391
13236
|
readonly upload: UploadService;
|
|
13237
|
+
readonly youtube: YoutubeService;
|
|
11392
13238
|
readonly request: BaseHttpRequest;
|
|
11393
13239
|
constructor(config?: Partial<OpenAPIConfig>, HttpRequest?: HttpRequestConstructor);
|
|
11394
13240
|
}
|
|
@@ -11452,4 +13298,4 @@ declare class Bundlesocial extends Client {
|
|
|
11452
13298
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
11453
13299
|
}
|
|
11454
13300
|
|
|
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,
|
|
13301
|
+
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, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, 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 };
|