bundlesocial 2.37.0 → 2.38.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 +537 -9
- package/dist/index.d.ts +537 -9
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -106,6 +106,7 @@ type OrganizationGetOrganizationResponse = {
|
|
|
106
106
|
analyticsInterval?: number | null;
|
|
107
107
|
analyticsPostsInterval?: number | null;
|
|
108
108
|
showVerboseErrors: boolean;
|
|
109
|
+
deleteAccountAfter: number;
|
|
109
110
|
createdAt: string | null;
|
|
110
111
|
updatedAt: string | null;
|
|
111
112
|
deletedAt?: string | null;
|
|
@@ -318,6 +319,7 @@ type TeamGetTeamResponse = {
|
|
|
318
319
|
analyticsInterval?: number | null;
|
|
319
320
|
analyticsPostsInterval?: number | null;
|
|
320
321
|
showVerboseErrors: boolean;
|
|
322
|
+
deleteAccountAfter: number;
|
|
321
323
|
createdAt: string | null;
|
|
322
324
|
updatedAt: string | null;
|
|
323
325
|
deletedAt?: string | null;
|
|
@@ -376,6 +378,7 @@ type TeamGetTeamResponse = {
|
|
|
376
378
|
mastodonServerId?: string | null;
|
|
377
379
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
378
380
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
381
|
+
deleteOn?: string | null;
|
|
379
382
|
createdAt: string | null;
|
|
380
383
|
updatedAt: string | null;
|
|
381
384
|
deletedAt?: string | null;
|
|
@@ -497,6 +500,7 @@ type TeamGetListResponse = {
|
|
|
497
500
|
analyticsInterval?: number | null;
|
|
498
501
|
analyticsPostsInterval?: number | null;
|
|
499
502
|
showVerboseErrors: boolean;
|
|
503
|
+
deleteAccountAfter: number;
|
|
500
504
|
createdAt: string | null;
|
|
501
505
|
updatedAt: string | null;
|
|
502
506
|
deletedAt?: string | null;
|
|
@@ -555,6 +559,7 @@ type TeamGetListResponse = {
|
|
|
555
559
|
mastodonServerId?: string | null;
|
|
556
560
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
557
561
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
562
|
+
deleteOn?: string | null;
|
|
558
563
|
createdAt: string | null;
|
|
559
564
|
updatedAt: string | null;
|
|
560
565
|
deletedAt?: string | null;
|
|
@@ -688,6 +693,7 @@ type SocialAccountDisconnectResponse = {
|
|
|
688
693
|
mastodonServerId?: string | null;
|
|
689
694
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
690
695
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
696
|
+
deleteOn?: string | null;
|
|
691
697
|
createdAt: string | null;
|
|
692
698
|
updatedAt: string | null;
|
|
693
699
|
deletedAt?: string | null;
|
|
@@ -734,6 +740,53 @@ type SocialAccountSetChannelResponse = {
|
|
|
734
740
|
mastodonServerId?: string | null;
|
|
735
741
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
736
742
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
743
|
+
deleteOn?: string | null;
|
|
744
|
+
createdAt: string | null;
|
|
745
|
+
updatedAt: string | null;
|
|
746
|
+
deletedAt?: string | null;
|
|
747
|
+
};
|
|
748
|
+
type SocialAccountUnsetChannelData = {
|
|
749
|
+
/**
|
|
750
|
+
* Body
|
|
751
|
+
*/
|
|
752
|
+
requestBody?: {
|
|
753
|
+
type: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'GOOGLE_BUSINESS';
|
|
754
|
+
teamId: string;
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
type SocialAccountUnsetChannelResponse = {
|
|
758
|
+
id: string;
|
|
759
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
760
|
+
teamId: string;
|
|
761
|
+
username?: string | null;
|
|
762
|
+
displayName?: string | null;
|
|
763
|
+
avatarUrl?: string | null;
|
|
764
|
+
externalId?: string | null;
|
|
765
|
+
userUsername?: string | null;
|
|
766
|
+
userDisplayName?: string | null;
|
|
767
|
+
userId?: string | null;
|
|
768
|
+
channels?: Array<{
|
|
769
|
+
id: string;
|
|
770
|
+
name?: string | null;
|
|
771
|
+
username?: string | null;
|
|
772
|
+
avatarUrl?: string | null;
|
|
773
|
+
webhook?: {
|
|
774
|
+
id?: string | null;
|
|
775
|
+
name?: string | null;
|
|
776
|
+
avatar?: string | null;
|
|
777
|
+
url?: string | null;
|
|
778
|
+
} | null;
|
|
779
|
+
metadata?: {
|
|
780
|
+
allowImages?: boolean | null;
|
|
781
|
+
allowVideos?: boolean | null;
|
|
782
|
+
allowGalleries?: boolean | null;
|
|
783
|
+
linkFlairEnabled?: boolean | null;
|
|
784
|
+
} | null;
|
|
785
|
+
}> | null;
|
|
786
|
+
mastodonServerId?: string | null;
|
|
787
|
+
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
788
|
+
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
789
|
+
deleteOn?: string | null;
|
|
737
790
|
createdAt: string | null;
|
|
738
791
|
updatedAt: string | null;
|
|
739
792
|
deletedAt?: string | null;
|
|
@@ -779,6 +832,7 @@ type SocialAccountRefreshChannelsResponse = {
|
|
|
779
832
|
mastodonServerId?: string | null;
|
|
780
833
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
781
834
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
835
|
+
deleteOn?: string | null;
|
|
782
836
|
createdAt: string | null;
|
|
783
837
|
updatedAt: string | null;
|
|
784
838
|
deletedAt?: string | null;
|
|
@@ -858,10 +912,60 @@ type SocialAccountCopyResponse = Array<{
|
|
|
858
912
|
mastodonServerId?: string | null;
|
|
859
913
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
860
914
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
915
|
+
deleteOn?: string | null;
|
|
861
916
|
createdAt: string | null;
|
|
862
917
|
updatedAt: string | null;
|
|
863
918
|
deletedAt?: string | null;
|
|
864
919
|
}>;
|
|
920
|
+
type SocialAccountGetAccountsToDeleteData = {
|
|
921
|
+
page?: number;
|
|
922
|
+
pageSize?: number;
|
|
923
|
+
};
|
|
924
|
+
type SocialAccountGetAccountsToDeleteResponse = {
|
|
925
|
+
items: Array<{
|
|
926
|
+
id: string;
|
|
927
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
928
|
+
teamId: string;
|
|
929
|
+
username?: string | null;
|
|
930
|
+
displayName?: string | null;
|
|
931
|
+
avatarUrl?: string | null;
|
|
932
|
+
externalId?: string | null;
|
|
933
|
+
userUsername?: string | null;
|
|
934
|
+
userDisplayName?: string | null;
|
|
935
|
+
userId?: string | null;
|
|
936
|
+
channels?: Array<{
|
|
937
|
+
id: string;
|
|
938
|
+
name?: string | null;
|
|
939
|
+
username?: string | null;
|
|
940
|
+
avatarUrl?: string | null;
|
|
941
|
+
webhook?: {
|
|
942
|
+
id?: string | null;
|
|
943
|
+
name?: string | null;
|
|
944
|
+
avatar?: string | null;
|
|
945
|
+
url?: string | null;
|
|
946
|
+
} | null;
|
|
947
|
+
metadata?: {
|
|
948
|
+
allowImages?: boolean | null;
|
|
949
|
+
allowVideos?: boolean | null;
|
|
950
|
+
allowGalleries?: boolean | null;
|
|
951
|
+
linkFlairEnabled?: boolean | null;
|
|
952
|
+
} | null;
|
|
953
|
+
}> | null;
|
|
954
|
+
mastodonServerId?: string | null;
|
|
955
|
+
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
956
|
+
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
957
|
+
deleteOn?: string | null;
|
|
958
|
+
createdAt: string | null;
|
|
959
|
+
updatedAt: string | null;
|
|
960
|
+
deletedAt?: string | null;
|
|
961
|
+
}>;
|
|
962
|
+
pagination: {
|
|
963
|
+
page: number;
|
|
964
|
+
pageSize: number;
|
|
965
|
+
total: number;
|
|
966
|
+
totalPages: number;
|
|
967
|
+
};
|
|
968
|
+
};
|
|
865
969
|
type UploadGetListData = {
|
|
866
970
|
status?: 'USED' | 'UNUSED' | null;
|
|
867
971
|
teamId?: string | null;
|
|
@@ -1062,6 +1166,7 @@ type PostGetResponse = {
|
|
|
1062
1166
|
TWITTER?: {
|
|
1063
1167
|
text?: string | null;
|
|
1064
1168
|
uploadIds?: Array<(string)> | null;
|
|
1169
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
1065
1170
|
} | null;
|
|
1066
1171
|
PINTEREST?: {
|
|
1067
1172
|
text?: string | null;
|
|
@@ -1664,6 +1769,7 @@ type PostGetResponse = {
|
|
|
1664
1769
|
mastodonServerId?: string | null;
|
|
1665
1770
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
1666
1771
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
1772
|
+
deleteOn?: string | null;
|
|
1667
1773
|
createdAt: string | null;
|
|
1668
1774
|
updatedAt: string | null;
|
|
1669
1775
|
deletedAt?: string | null;
|
|
@@ -1684,6 +1790,7 @@ type PostUpdateData = {
|
|
|
1684
1790
|
TWITTER?: {
|
|
1685
1791
|
text?: string | null;
|
|
1686
1792
|
uploadIds?: Array<(string)> | null;
|
|
1793
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
1687
1794
|
} | null;
|
|
1688
1795
|
PINTEREST?: {
|
|
1689
1796
|
text?: string | null;
|
|
@@ -2009,6 +2116,7 @@ type PostUpdateResponse = {
|
|
|
2009
2116
|
TWITTER?: {
|
|
2010
2117
|
text?: string | null;
|
|
2011
2118
|
uploadIds?: Array<(string)> | null;
|
|
2119
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
2012
2120
|
} | null;
|
|
2013
2121
|
PINTEREST?: {
|
|
2014
2122
|
text?: string | null;
|
|
@@ -2562,6 +2670,7 @@ type PostDeleteResponse = {
|
|
|
2562
2670
|
TWITTER?: {
|
|
2563
2671
|
text?: string | null;
|
|
2564
2672
|
uploadIds?: Array<(string)> | null;
|
|
2673
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
2565
2674
|
} | null;
|
|
2566
2675
|
PINTEREST?: {
|
|
2567
2676
|
text?: string | null;
|
|
@@ -3123,6 +3232,7 @@ type PostGetListResponse = {
|
|
|
3123
3232
|
TWITTER?: {
|
|
3124
3233
|
text?: string | null;
|
|
3125
3234
|
uploadIds?: Array<(string)> | null;
|
|
3235
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
3126
3236
|
} | null;
|
|
3127
3237
|
PINTEREST?: {
|
|
3128
3238
|
text?: string | null;
|
|
@@ -3725,6 +3835,7 @@ type PostGetListResponse = {
|
|
|
3725
3835
|
mastodonServerId?: string | null;
|
|
3726
3836
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
3727
3837
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
3838
|
+
deleteOn?: string | null;
|
|
3728
3839
|
createdAt: string | null;
|
|
3729
3840
|
updatedAt: string | null;
|
|
3730
3841
|
deletedAt?: string | null;
|
|
@@ -3747,6 +3858,7 @@ type PostCreateData = {
|
|
|
3747
3858
|
TWITTER?: {
|
|
3748
3859
|
text?: string | null;
|
|
3749
3860
|
uploadIds?: Array<(string)> | null;
|
|
3861
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
3750
3862
|
} | null;
|
|
3751
3863
|
PINTEREST?: {
|
|
3752
3864
|
text?: string | null;
|
|
@@ -4072,6 +4184,7 @@ type PostCreateResponse = {
|
|
|
4072
4184
|
TWITTER?: {
|
|
4073
4185
|
text?: string | null;
|
|
4074
4186
|
uploadIds?: Array<(string)> | null;
|
|
4187
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
4075
4188
|
} | null;
|
|
4076
4189
|
PINTEREST?: {
|
|
4077
4190
|
text?: string | null;
|
|
@@ -4625,6 +4738,7 @@ type PostRetryResponse = {
|
|
|
4625
4738
|
TWITTER?: {
|
|
4626
4739
|
text?: string | null;
|
|
4627
4740
|
uploadIds?: Array<(string)> | null;
|
|
4741
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
4628
4742
|
} | null;
|
|
4629
4743
|
PINTEREST?: {
|
|
4630
4744
|
text?: string | null;
|
|
@@ -5200,6 +5314,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
5200
5314
|
mastodonServerId?: string | null;
|
|
5201
5315
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
5202
5316
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
5317
|
+
deleteOn?: string | null;
|
|
5203
5318
|
createdAt: string | null;
|
|
5204
5319
|
updatedAt: string | null;
|
|
5205
5320
|
deletedAt?: string | null;
|
|
@@ -5223,8 +5338,9 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
5223
5338
|
}>;
|
|
5224
5339
|
};
|
|
5225
5340
|
type AnalyticsGetPostAnalyticsData = {
|
|
5226
|
-
|
|
5227
|
-
|
|
5341
|
+
importedPostId?: string | null;
|
|
5342
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
5343
|
+
postId?: string | null;
|
|
5228
5344
|
};
|
|
5229
5345
|
type AnalyticsGetPostAnalyticsResponse = {
|
|
5230
5346
|
post: {
|
|
@@ -5239,6 +5355,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5239
5355
|
TWITTER?: {
|
|
5240
5356
|
text?: string | null;
|
|
5241
5357
|
uploadIds?: Array<(string)> | null;
|
|
5358
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
5242
5359
|
} | null;
|
|
5243
5360
|
PINTEREST?: {
|
|
5244
5361
|
text?: string | null;
|
|
@@ -5776,6 +5893,27 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5776
5893
|
createdAt: string | null;
|
|
5777
5894
|
updatedAt: string | null;
|
|
5778
5895
|
deletedAt?: string | null;
|
|
5896
|
+
} | null;
|
|
5897
|
+
profilePost?: {
|
|
5898
|
+
id: string;
|
|
5899
|
+
socialAccountId: string;
|
|
5900
|
+
postId?: string | null;
|
|
5901
|
+
externalId?: string | null;
|
|
5902
|
+
title?: string | null;
|
|
5903
|
+
description?: string | null;
|
|
5904
|
+
smallThumbnail?: string | null;
|
|
5905
|
+
thumbnail?: string | null;
|
|
5906
|
+
permalink?: string | null;
|
|
5907
|
+
extraData?: unknown;
|
|
5908
|
+
subreddit?: string | null;
|
|
5909
|
+
publishedAt?: string | null;
|
|
5910
|
+
type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
|
|
5911
|
+
internal: boolean;
|
|
5912
|
+
importedAt?: string | null;
|
|
5913
|
+
externallyDeletedAt?: string | null;
|
|
5914
|
+
createdAt: string | null;
|
|
5915
|
+
updatedAt: string | null;
|
|
5916
|
+
deletedAt?: string | null;
|
|
5779
5917
|
};
|
|
5780
5918
|
items: Array<{
|
|
5781
5919
|
id: string;
|
|
@@ -5833,6 +5971,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
5833
5971
|
mastodonServerId?: string | null;
|
|
5834
5972
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
5835
5973
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
5974
|
+
deleteOn?: string | null;
|
|
5836
5975
|
createdAt: string | null;
|
|
5837
5976
|
updatedAt: string | null;
|
|
5838
5977
|
deletedAt?: string | null;
|
|
@@ -5849,8 +5988,9 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
5849
5988
|
}>;
|
|
5850
5989
|
};
|
|
5851
5990
|
type AnalyticsGetPostAnalyticsRawData = {
|
|
5852
|
-
|
|
5853
|
-
|
|
5991
|
+
importedPostId?: string | null;
|
|
5992
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
5993
|
+
postId?: string | null;
|
|
5854
5994
|
};
|
|
5855
5995
|
type AnalyticsGetPostAnalyticsRawResponse = {
|
|
5856
5996
|
post: {
|
|
@@ -5865,6 +6005,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
5865
6005
|
TWITTER?: {
|
|
5866
6006
|
text?: string | null;
|
|
5867
6007
|
uploadIds?: Array<(string)> | null;
|
|
6008
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
5868
6009
|
} | null;
|
|
5869
6010
|
PINTEREST?: {
|
|
5870
6011
|
text?: string | null;
|
|
@@ -6402,6 +6543,27 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6402
6543
|
createdAt: string | null;
|
|
6403
6544
|
updatedAt: string | null;
|
|
6404
6545
|
deletedAt?: string | null;
|
|
6546
|
+
} | null;
|
|
6547
|
+
profilePost?: {
|
|
6548
|
+
id: string;
|
|
6549
|
+
socialAccountId: string;
|
|
6550
|
+
postId?: string | null;
|
|
6551
|
+
externalId?: string | null;
|
|
6552
|
+
title?: string | null;
|
|
6553
|
+
description?: string | null;
|
|
6554
|
+
smallThumbnail?: string | null;
|
|
6555
|
+
thumbnail?: string | null;
|
|
6556
|
+
permalink?: string | null;
|
|
6557
|
+
extraData?: unknown;
|
|
6558
|
+
subreddit?: string | null;
|
|
6559
|
+
publishedAt?: string | null;
|
|
6560
|
+
type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
|
|
6561
|
+
internal: boolean;
|
|
6562
|
+
importedAt?: string | null;
|
|
6563
|
+
externallyDeletedAt?: string | null;
|
|
6564
|
+
createdAt: string | null;
|
|
6565
|
+
updatedAt: string | null;
|
|
6566
|
+
deletedAt?: string | null;
|
|
6405
6567
|
};
|
|
6406
6568
|
items: Array<{
|
|
6407
6569
|
id: string;
|
|
@@ -6481,8 +6643,9 @@ type AnalyticsForcePostAnalyticsData = {
|
|
|
6481
6643
|
* Body
|
|
6482
6644
|
*/
|
|
6483
6645
|
requestBody?: {
|
|
6484
|
-
postId
|
|
6485
|
-
platformType
|
|
6646
|
+
postId?: string | null;
|
|
6647
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
6648
|
+
importedPostId?: string | null;
|
|
6486
6649
|
};
|
|
6487
6650
|
};
|
|
6488
6651
|
type AnalyticsForcePostAnalyticsResponse = {
|
|
@@ -8802,6 +8965,9 @@ type PostImportCreateData = {
|
|
|
8802
8965
|
socialAccountType: 'FACEBOOK' | 'INSTAGRAM' | 'THREADS' | 'TIKTOK' | 'YOUTUBE' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'BLUESKY';
|
|
8803
8966
|
count: number;
|
|
8804
8967
|
withAnalytics?: boolean;
|
|
8968
|
+
importCarousels?: boolean;
|
|
8969
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL';
|
|
8970
|
+
mediaType?: 'VIDEO' | 'IMAGE';
|
|
8805
8971
|
};
|
|
8806
8972
|
};
|
|
8807
8973
|
type PostImportCreateResponse = {
|
|
@@ -8810,6 +8976,9 @@ type PostImportCreateResponse = {
|
|
|
8810
8976
|
socialAccountId: string;
|
|
8811
8977
|
requestedCount: number;
|
|
8812
8978
|
withAnalytics: boolean;
|
|
8979
|
+
importCarousels: boolean;
|
|
8980
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
8981
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
8813
8982
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8814
8983
|
postsImported: number;
|
|
8815
8984
|
analyticsImported: number;
|
|
@@ -8832,6 +9001,9 @@ type PostImportGetStatusResponse = {
|
|
|
8832
9001
|
socialAccountId: string;
|
|
8833
9002
|
requestedCount: number;
|
|
8834
9003
|
withAnalytics: boolean;
|
|
9004
|
+
importCarousels: boolean;
|
|
9005
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
9006
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
8835
9007
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8836
9008
|
postsImported: number;
|
|
8837
9009
|
analyticsImported: number;
|
|
@@ -8853,6 +9025,9 @@ type PostImportGetByIdResponse = {
|
|
|
8853
9025
|
socialAccountId: string;
|
|
8854
9026
|
requestedCount: number;
|
|
8855
9027
|
withAnalytics: boolean;
|
|
9028
|
+
importCarousels: boolean;
|
|
9029
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
9030
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
8856
9031
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8857
9032
|
postsImported: number;
|
|
8858
9033
|
analyticsImported: number;
|
|
@@ -8881,6 +9056,7 @@ type PostImportGetImportedPostsResponse = {
|
|
|
8881
9056
|
smallThumbnail?: string | null;
|
|
8882
9057
|
thumbnail?: string | null;
|
|
8883
9058
|
permalink?: string | null;
|
|
9059
|
+
extraData?: unknown;
|
|
8884
9060
|
subreddit?: string | null;
|
|
8885
9061
|
publishedAt?: string | null;
|
|
8886
9062
|
type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
|
|
@@ -8913,6 +9089,18 @@ type PostImportGetImportedPostsResponse = {
|
|
|
8913
9089
|
limit: number;
|
|
8914
9090
|
remainingCapacity: number;
|
|
8915
9091
|
};
|
|
9092
|
+
type PostImportDeleteImportedPostsData = {
|
|
9093
|
+
/**
|
|
9094
|
+
* Body
|
|
9095
|
+
*/
|
|
9096
|
+
requestBody?: {
|
|
9097
|
+
teamId: string;
|
|
9098
|
+
postIds: Array<(string)>;
|
|
9099
|
+
};
|
|
9100
|
+
};
|
|
9101
|
+
type PostImportDeleteImportedPostsResponse = {
|
|
9102
|
+
deletedCount: number;
|
|
9103
|
+
};
|
|
8916
9104
|
type PostImportRetryImportData = {
|
|
8917
9105
|
importId: string;
|
|
8918
9106
|
/**
|
|
@@ -8928,6 +9116,9 @@ type PostImportRetryImportResponse = {
|
|
|
8928
9116
|
socialAccountId: string;
|
|
8929
9117
|
requestedCount: number;
|
|
8930
9118
|
withAnalytics: boolean;
|
|
9119
|
+
importCarousels: boolean;
|
|
9120
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
9121
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
8931
9122
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8932
9123
|
postsImported: number;
|
|
8933
9124
|
analyticsImported: number;
|
|
@@ -9030,6 +9221,7 @@ type $OpenApiTs = {
|
|
|
9030
9221
|
analyticsInterval?: number | null;
|
|
9031
9222
|
analyticsPostsInterval?: number | null;
|
|
9032
9223
|
showVerboseErrors: boolean;
|
|
9224
|
+
deleteAccountAfter: number;
|
|
9033
9225
|
createdAt: string | null;
|
|
9034
9226
|
updatedAt: string | null;
|
|
9035
9227
|
deletedAt?: string | null;
|
|
@@ -9430,6 +9622,7 @@ type $OpenApiTs = {
|
|
|
9430
9622
|
analyticsInterval?: number | null;
|
|
9431
9623
|
analyticsPostsInterval?: number | null;
|
|
9432
9624
|
showVerboseErrors: boolean;
|
|
9625
|
+
deleteAccountAfter: number;
|
|
9433
9626
|
createdAt: string | null;
|
|
9434
9627
|
updatedAt: string | null;
|
|
9435
9628
|
deletedAt?: string | null;
|
|
@@ -9488,6 +9681,7 @@ type $OpenApiTs = {
|
|
|
9488
9681
|
mastodonServerId?: string | null;
|
|
9489
9682
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
9490
9683
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
9684
|
+
deleteOn?: string | null;
|
|
9491
9685
|
createdAt: string | null;
|
|
9492
9686
|
updatedAt: string | null;
|
|
9493
9687
|
deletedAt?: string | null;
|
|
@@ -9737,6 +9931,7 @@ type $OpenApiTs = {
|
|
|
9737
9931
|
analyticsInterval?: number | null;
|
|
9738
9932
|
analyticsPostsInterval?: number | null;
|
|
9739
9933
|
showVerboseErrors: boolean;
|
|
9934
|
+
deleteAccountAfter: number;
|
|
9740
9935
|
createdAt: string | null;
|
|
9741
9936
|
updatedAt: string | null;
|
|
9742
9937
|
deletedAt?: string | null;
|
|
@@ -9795,6 +9990,7 @@ type $OpenApiTs = {
|
|
|
9795
9990
|
mastodonServerId?: string | null;
|
|
9796
9991
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
9797
9992
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
9993
|
+
deleteOn?: string | null;
|
|
9798
9994
|
createdAt: string | null;
|
|
9799
9995
|
updatedAt: string | null;
|
|
9800
9996
|
deletedAt?: string | null;
|
|
@@ -10035,6 +10231,7 @@ type $OpenApiTs = {
|
|
|
10035
10231
|
mastodonServerId?: string | null;
|
|
10036
10232
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
10037
10233
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10234
|
+
deleteOn?: string | null;
|
|
10038
10235
|
createdAt: string | null;
|
|
10039
10236
|
updatedAt: string | null;
|
|
10040
10237
|
deletedAt?: string | null;
|
|
@@ -10121,6 +10318,94 @@ type $OpenApiTs = {
|
|
|
10121
10318
|
mastodonServerId?: string | null;
|
|
10122
10319
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
10123
10320
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10321
|
+
deleteOn?: string | null;
|
|
10322
|
+
createdAt: string | null;
|
|
10323
|
+
updatedAt: string | null;
|
|
10324
|
+
deletedAt?: string | null;
|
|
10325
|
+
};
|
|
10326
|
+
/**
|
|
10327
|
+
* 400
|
|
10328
|
+
*/
|
|
10329
|
+
400: {
|
|
10330
|
+
message: string;
|
|
10331
|
+
issues?: Array<{
|
|
10332
|
+
message: string;
|
|
10333
|
+
path?: Array<(string | number)> | null;
|
|
10334
|
+
}> | null;
|
|
10335
|
+
};
|
|
10336
|
+
/**
|
|
10337
|
+
* 401
|
|
10338
|
+
*/
|
|
10339
|
+
401: {
|
|
10340
|
+
message: string;
|
|
10341
|
+
};
|
|
10342
|
+
/**
|
|
10343
|
+
* 403
|
|
10344
|
+
*/
|
|
10345
|
+
403: {
|
|
10346
|
+
message: string;
|
|
10347
|
+
};
|
|
10348
|
+
/**
|
|
10349
|
+
* 404
|
|
10350
|
+
*/
|
|
10351
|
+
404: {
|
|
10352
|
+
message: string;
|
|
10353
|
+
};
|
|
10354
|
+
/**
|
|
10355
|
+
* 429
|
|
10356
|
+
*/
|
|
10357
|
+
429: {
|
|
10358
|
+
message: string;
|
|
10359
|
+
};
|
|
10360
|
+
/**
|
|
10361
|
+
* 500
|
|
10362
|
+
*/
|
|
10363
|
+
500: {
|
|
10364
|
+
message: string;
|
|
10365
|
+
};
|
|
10366
|
+
};
|
|
10367
|
+
};
|
|
10368
|
+
};
|
|
10369
|
+
'/api/v1/social-account/unset-channel': {
|
|
10370
|
+
post: {
|
|
10371
|
+
req: SocialAccountUnsetChannelData;
|
|
10372
|
+
res: {
|
|
10373
|
+
/**
|
|
10374
|
+
* 200
|
|
10375
|
+
*/
|
|
10376
|
+
200: {
|
|
10377
|
+
id: string;
|
|
10378
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
10379
|
+
teamId: string;
|
|
10380
|
+
username?: string | null;
|
|
10381
|
+
displayName?: string | null;
|
|
10382
|
+
avatarUrl?: string | null;
|
|
10383
|
+
externalId?: string | null;
|
|
10384
|
+
userUsername?: string | null;
|
|
10385
|
+
userDisplayName?: string | null;
|
|
10386
|
+
userId?: string | null;
|
|
10387
|
+
channels?: Array<{
|
|
10388
|
+
id: string;
|
|
10389
|
+
name?: string | null;
|
|
10390
|
+
username?: string | null;
|
|
10391
|
+
avatarUrl?: string | null;
|
|
10392
|
+
webhook?: {
|
|
10393
|
+
id?: string | null;
|
|
10394
|
+
name?: string | null;
|
|
10395
|
+
avatar?: string | null;
|
|
10396
|
+
url?: string | null;
|
|
10397
|
+
} | null;
|
|
10398
|
+
metadata?: {
|
|
10399
|
+
allowImages?: boolean | null;
|
|
10400
|
+
allowVideos?: boolean | null;
|
|
10401
|
+
allowGalleries?: boolean | null;
|
|
10402
|
+
linkFlairEnabled?: boolean | null;
|
|
10403
|
+
} | null;
|
|
10404
|
+
}> | null;
|
|
10405
|
+
mastodonServerId?: string | null;
|
|
10406
|
+
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
10407
|
+
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10408
|
+
deleteOn?: string | null;
|
|
10124
10409
|
createdAt: string | null;
|
|
10125
10410
|
updatedAt: string | null;
|
|
10126
10411
|
deletedAt?: string | null;
|
|
@@ -10207,6 +10492,7 @@ type $OpenApiTs = {
|
|
|
10207
10492
|
mastodonServerId?: string | null;
|
|
10208
10493
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
10209
10494
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10495
|
+
deleteOn?: string | null;
|
|
10210
10496
|
createdAt: string | null;
|
|
10211
10497
|
updatedAt: string | null;
|
|
10212
10498
|
deletedAt?: string | null;
|
|
@@ -10346,6 +10632,7 @@ type $OpenApiTs = {
|
|
|
10346
10632
|
mastodonServerId?: string | null;
|
|
10347
10633
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
10348
10634
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10635
|
+
deleteOn?: string | null;
|
|
10349
10636
|
createdAt: string | null;
|
|
10350
10637
|
updatedAt: string | null;
|
|
10351
10638
|
deletedAt?: string | null;
|
|
@@ -10393,6 +10680,101 @@ type $OpenApiTs = {
|
|
|
10393
10680
|
};
|
|
10394
10681
|
};
|
|
10395
10682
|
};
|
|
10683
|
+
'/api/v1/social-account/to-delete': {
|
|
10684
|
+
get: {
|
|
10685
|
+
req: SocialAccountGetAccountsToDeleteData;
|
|
10686
|
+
res: {
|
|
10687
|
+
/**
|
|
10688
|
+
* 200
|
|
10689
|
+
*/
|
|
10690
|
+
200: {
|
|
10691
|
+
items: Array<{
|
|
10692
|
+
id: string;
|
|
10693
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
10694
|
+
teamId: string;
|
|
10695
|
+
username?: string | null;
|
|
10696
|
+
displayName?: string | null;
|
|
10697
|
+
avatarUrl?: string | null;
|
|
10698
|
+
externalId?: string | null;
|
|
10699
|
+
userUsername?: string | null;
|
|
10700
|
+
userDisplayName?: string | null;
|
|
10701
|
+
userId?: string | null;
|
|
10702
|
+
channels?: Array<{
|
|
10703
|
+
id: string;
|
|
10704
|
+
name?: string | null;
|
|
10705
|
+
username?: string | null;
|
|
10706
|
+
avatarUrl?: string | null;
|
|
10707
|
+
webhook?: {
|
|
10708
|
+
id?: string | null;
|
|
10709
|
+
name?: string | null;
|
|
10710
|
+
avatar?: string | null;
|
|
10711
|
+
url?: string | null;
|
|
10712
|
+
} | null;
|
|
10713
|
+
metadata?: {
|
|
10714
|
+
allowImages?: boolean | null;
|
|
10715
|
+
allowVideos?: boolean | null;
|
|
10716
|
+
allowGalleries?: boolean | null;
|
|
10717
|
+
linkFlairEnabled?: boolean | null;
|
|
10718
|
+
} | null;
|
|
10719
|
+
}> | null;
|
|
10720
|
+
mastodonServerId?: string | null;
|
|
10721
|
+
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
10722
|
+
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10723
|
+
deleteOn?: string | null;
|
|
10724
|
+
createdAt: string | null;
|
|
10725
|
+
updatedAt: string | null;
|
|
10726
|
+
deletedAt?: string | null;
|
|
10727
|
+
}>;
|
|
10728
|
+
pagination: {
|
|
10729
|
+
page: number;
|
|
10730
|
+
pageSize: number;
|
|
10731
|
+
total: number;
|
|
10732
|
+
totalPages: number;
|
|
10733
|
+
};
|
|
10734
|
+
};
|
|
10735
|
+
/**
|
|
10736
|
+
* 400
|
|
10737
|
+
*/
|
|
10738
|
+
400: {
|
|
10739
|
+
message: string;
|
|
10740
|
+
issues?: Array<{
|
|
10741
|
+
message: string;
|
|
10742
|
+
path?: Array<(string | number)> | null;
|
|
10743
|
+
}> | null;
|
|
10744
|
+
};
|
|
10745
|
+
/**
|
|
10746
|
+
* 401
|
|
10747
|
+
*/
|
|
10748
|
+
401: {
|
|
10749
|
+
message: string;
|
|
10750
|
+
};
|
|
10751
|
+
/**
|
|
10752
|
+
* 403
|
|
10753
|
+
*/
|
|
10754
|
+
403: {
|
|
10755
|
+
message: string;
|
|
10756
|
+
};
|
|
10757
|
+
/**
|
|
10758
|
+
* 404
|
|
10759
|
+
*/
|
|
10760
|
+
404: {
|
|
10761
|
+
message: string;
|
|
10762
|
+
};
|
|
10763
|
+
/**
|
|
10764
|
+
* 429
|
|
10765
|
+
*/
|
|
10766
|
+
429: {
|
|
10767
|
+
message: string;
|
|
10768
|
+
};
|
|
10769
|
+
/**
|
|
10770
|
+
* 500
|
|
10771
|
+
*/
|
|
10772
|
+
500: {
|
|
10773
|
+
message: string;
|
|
10774
|
+
};
|
|
10775
|
+
};
|
|
10776
|
+
};
|
|
10777
|
+
};
|
|
10396
10778
|
'/api/v1/upload/': {
|
|
10397
10779
|
get: {
|
|
10398
10780
|
req: UploadGetListData;
|
|
@@ -10894,6 +11276,7 @@ type $OpenApiTs = {
|
|
|
10894
11276
|
TWITTER?: {
|
|
10895
11277
|
text?: string | null;
|
|
10896
11278
|
uploadIds?: Array<(string)> | null;
|
|
11279
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
10897
11280
|
} | null;
|
|
10898
11281
|
PINTEREST?: {
|
|
10899
11282
|
text?: string | null;
|
|
@@ -11496,6 +11879,7 @@ type $OpenApiTs = {
|
|
|
11496
11879
|
mastodonServerId?: string | null;
|
|
11497
11880
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
11498
11881
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
11882
|
+
deleteOn?: string | null;
|
|
11499
11883
|
createdAt: string | null;
|
|
11500
11884
|
updatedAt: string | null;
|
|
11501
11885
|
deletedAt?: string | null;
|
|
@@ -11562,6 +11946,7 @@ type $OpenApiTs = {
|
|
|
11562
11946
|
TWITTER?: {
|
|
11563
11947
|
text?: string | null;
|
|
11564
11948
|
uploadIds?: Array<(string)> | null;
|
|
11949
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
11565
11950
|
} | null;
|
|
11566
11951
|
PINTEREST?: {
|
|
11567
11952
|
text?: string | null;
|
|
@@ -12160,6 +12545,7 @@ type $OpenApiTs = {
|
|
|
12160
12545
|
TWITTER?: {
|
|
12161
12546
|
text?: string | null;
|
|
12162
12547
|
uploadIds?: Array<(string)> | null;
|
|
12548
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
12163
12549
|
} | null;
|
|
12164
12550
|
PINTEREST?: {
|
|
12165
12551
|
text?: string | null;
|
|
@@ -12761,6 +13147,7 @@ type $OpenApiTs = {
|
|
|
12761
13147
|
TWITTER?: {
|
|
12762
13148
|
text?: string | null;
|
|
12763
13149
|
uploadIds?: Array<(string)> | null;
|
|
13150
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
12764
13151
|
} | null;
|
|
12765
13152
|
PINTEREST?: {
|
|
12766
13153
|
text?: string | null;
|
|
@@ -13363,6 +13750,7 @@ type $OpenApiTs = {
|
|
|
13363
13750
|
mastodonServerId?: string | null;
|
|
13364
13751
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
13365
13752
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
13753
|
+
deleteOn?: string | null;
|
|
13366
13754
|
createdAt: string | null;
|
|
13367
13755
|
updatedAt: string | null;
|
|
13368
13756
|
deletedAt?: string | null;
|
|
@@ -13431,6 +13819,7 @@ type $OpenApiTs = {
|
|
|
13431
13819
|
TWITTER?: {
|
|
13432
13820
|
text?: string | null;
|
|
13433
13821
|
uploadIds?: Array<(string)> | null;
|
|
13822
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
13434
13823
|
} | null;
|
|
13435
13824
|
PINTEREST?: {
|
|
13436
13825
|
text?: string | null;
|
|
@@ -14031,6 +14420,7 @@ type $OpenApiTs = {
|
|
|
14031
14420
|
TWITTER?: {
|
|
14032
14421
|
text?: string | null;
|
|
14033
14422
|
uploadIds?: Array<(string)> | null;
|
|
14423
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
14034
14424
|
} | null;
|
|
14035
14425
|
PINTEREST?: {
|
|
14036
14426
|
text?: string | null;
|
|
@@ -14652,6 +15042,7 @@ type $OpenApiTs = {
|
|
|
14652
15042
|
mastodonServerId?: string | null;
|
|
14653
15043
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
14654
15044
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
15045
|
+
deleteOn?: string | null;
|
|
14655
15046
|
createdAt: string | null;
|
|
14656
15047
|
updatedAt: string | null;
|
|
14657
15048
|
deletedAt?: string | null;
|
|
@@ -14737,6 +15128,7 @@ type $OpenApiTs = {
|
|
|
14737
15128
|
TWITTER?: {
|
|
14738
15129
|
text?: string | null;
|
|
14739
15130
|
uploadIds?: Array<(string)> | null;
|
|
15131
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
14740
15132
|
} | null;
|
|
14741
15133
|
PINTEREST?: {
|
|
14742
15134
|
text?: string | null;
|
|
@@ -15274,6 +15666,27 @@ type $OpenApiTs = {
|
|
|
15274
15666
|
createdAt: string | null;
|
|
15275
15667
|
updatedAt: string | null;
|
|
15276
15668
|
deletedAt?: string | null;
|
|
15669
|
+
} | null;
|
|
15670
|
+
profilePost?: {
|
|
15671
|
+
id: string;
|
|
15672
|
+
socialAccountId: string;
|
|
15673
|
+
postId?: string | null;
|
|
15674
|
+
externalId?: string | null;
|
|
15675
|
+
title?: string | null;
|
|
15676
|
+
description?: string | null;
|
|
15677
|
+
smallThumbnail?: string | null;
|
|
15678
|
+
thumbnail?: string | null;
|
|
15679
|
+
permalink?: string | null;
|
|
15680
|
+
extraData?: unknown;
|
|
15681
|
+
subreddit?: string | null;
|
|
15682
|
+
publishedAt?: string | null;
|
|
15683
|
+
type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
|
|
15684
|
+
internal: boolean;
|
|
15685
|
+
importedAt?: string | null;
|
|
15686
|
+
externallyDeletedAt?: string | null;
|
|
15687
|
+
createdAt: string | null;
|
|
15688
|
+
updatedAt: string | null;
|
|
15689
|
+
deletedAt?: string | null;
|
|
15277
15690
|
};
|
|
15278
15691
|
items: Array<{
|
|
15279
15692
|
id: string;
|
|
@@ -15377,6 +15790,7 @@ type $OpenApiTs = {
|
|
|
15377
15790
|
mastodonServerId?: string | null;
|
|
15378
15791
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
15379
15792
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
15793
|
+
deleteOn?: string | null;
|
|
15380
15794
|
createdAt: string | null;
|
|
15381
15795
|
updatedAt: string | null;
|
|
15382
15796
|
deletedAt?: string | null;
|
|
@@ -15455,6 +15869,7 @@ type $OpenApiTs = {
|
|
|
15455
15869
|
TWITTER?: {
|
|
15456
15870
|
text?: string | null;
|
|
15457
15871
|
uploadIds?: Array<(string)> | null;
|
|
15872
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
15458
15873
|
} | null;
|
|
15459
15874
|
PINTEREST?: {
|
|
15460
15875
|
text?: string | null;
|
|
@@ -15992,6 +16407,27 @@ type $OpenApiTs = {
|
|
|
15992
16407
|
createdAt: string | null;
|
|
15993
16408
|
updatedAt: string | null;
|
|
15994
16409
|
deletedAt?: string | null;
|
|
16410
|
+
} | null;
|
|
16411
|
+
profilePost?: {
|
|
16412
|
+
id: string;
|
|
16413
|
+
socialAccountId: string;
|
|
16414
|
+
postId?: string | null;
|
|
16415
|
+
externalId?: string | null;
|
|
16416
|
+
title?: string | null;
|
|
16417
|
+
description?: string | null;
|
|
16418
|
+
smallThumbnail?: string | null;
|
|
16419
|
+
thumbnail?: string | null;
|
|
16420
|
+
permalink?: string | null;
|
|
16421
|
+
extraData?: unknown;
|
|
16422
|
+
subreddit?: string | null;
|
|
16423
|
+
publishedAt?: string | null;
|
|
16424
|
+
type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
|
|
16425
|
+
internal: boolean;
|
|
16426
|
+
importedAt?: string | null;
|
|
16427
|
+
externallyDeletedAt?: string | null;
|
|
16428
|
+
createdAt: string | null;
|
|
16429
|
+
updatedAt: string | null;
|
|
16430
|
+
deletedAt?: string | null;
|
|
15995
16431
|
};
|
|
15996
16432
|
items: Array<{
|
|
15997
16433
|
id: string;
|
|
@@ -20313,6 +20749,9 @@ type $OpenApiTs = {
|
|
|
20313
20749
|
socialAccountId: string;
|
|
20314
20750
|
requestedCount: number;
|
|
20315
20751
|
withAnalytics: boolean;
|
|
20752
|
+
importCarousels: boolean;
|
|
20753
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
20754
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
20316
20755
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
20317
20756
|
postsImported: number;
|
|
20318
20757
|
analyticsImported: number;
|
|
@@ -20385,6 +20824,9 @@ type $OpenApiTs = {
|
|
|
20385
20824
|
socialAccountId: string;
|
|
20386
20825
|
requestedCount: number;
|
|
20387
20826
|
withAnalytics: boolean;
|
|
20827
|
+
importCarousels: boolean;
|
|
20828
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
20829
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
20388
20830
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
20389
20831
|
postsImported: number;
|
|
20390
20832
|
analyticsImported: number;
|
|
@@ -20453,6 +20895,9 @@ type $OpenApiTs = {
|
|
|
20453
20895
|
socialAccountId: string;
|
|
20454
20896
|
requestedCount: number;
|
|
20455
20897
|
withAnalytics: boolean;
|
|
20898
|
+
importCarousels: boolean;
|
|
20899
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
20900
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
20456
20901
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
20457
20902
|
postsImported: number;
|
|
20458
20903
|
analyticsImported: number;
|
|
@@ -20525,6 +20970,7 @@ type $OpenApiTs = {
|
|
|
20525
20970
|
smallThumbnail?: string | null;
|
|
20526
20971
|
thumbnail?: string | null;
|
|
20527
20972
|
permalink?: string | null;
|
|
20973
|
+
extraData?: unknown;
|
|
20528
20974
|
subreddit?: string | null;
|
|
20529
20975
|
publishedAt?: string | null;
|
|
20530
20976
|
type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
|
|
@@ -20599,6 +21045,57 @@ type $OpenApiTs = {
|
|
|
20599
21045
|
};
|
|
20600
21046
|
};
|
|
20601
21047
|
};
|
|
21048
|
+
delete: {
|
|
21049
|
+
req: PostImportDeleteImportedPostsData;
|
|
21050
|
+
res: {
|
|
21051
|
+
/**
|
|
21052
|
+
* 200
|
|
21053
|
+
*/
|
|
21054
|
+
200: {
|
|
21055
|
+
deletedCount: number;
|
|
21056
|
+
};
|
|
21057
|
+
/**
|
|
21058
|
+
* 400
|
|
21059
|
+
*/
|
|
21060
|
+
400: {
|
|
21061
|
+
message: string;
|
|
21062
|
+
issues?: Array<{
|
|
21063
|
+
message: string;
|
|
21064
|
+
path?: Array<(string | number)> | null;
|
|
21065
|
+
}> | null;
|
|
21066
|
+
};
|
|
21067
|
+
/**
|
|
21068
|
+
* 401
|
|
21069
|
+
*/
|
|
21070
|
+
401: {
|
|
21071
|
+
message: string;
|
|
21072
|
+
};
|
|
21073
|
+
/**
|
|
21074
|
+
* 403
|
|
21075
|
+
*/
|
|
21076
|
+
403: {
|
|
21077
|
+
message: string;
|
|
21078
|
+
};
|
|
21079
|
+
/**
|
|
21080
|
+
* 404
|
|
21081
|
+
*/
|
|
21082
|
+
404: {
|
|
21083
|
+
message: string;
|
|
21084
|
+
};
|
|
21085
|
+
/**
|
|
21086
|
+
* 429
|
|
21087
|
+
*/
|
|
21088
|
+
429: {
|
|
21089
|
+
message: string;
|
|
21090
|
+
};
|
|
21091
|
+
/**
|
|
21092
|
+
* 500
|
|
21093
|
+
*/
|
|
21094
|
+
500: {
|
|
21095
|
+
message: string;
|
|
21096
|
+
};
|
|
21097
|
+
};
|
|
21098
|
+
};
|
|
20602
21099
|
};
|
|
20603
21100
|
'/api/v1/post-history-import/{importId}/retry': {
|
|
20604
21101
|
post: {
|
|
@@ -20613,6 +21110,9 @@ type $OpenApiTs = {
|
|
|
20613
21110
|
socialAccountId: string;
|
|
20614
21111
|
requestedCount: number;
|
|
20615
21112
|
withAnalytics: boolean;
|
|
21113
|
+
importCarousels: boolean;
|
|
21114
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
21115
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
20616
21116
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
20617
21117
|
postsImported: number;
|
|
20618
21118
|
analyticsImported: number;
|
|
@@ -20790,6 +21290,15 @@ declare class SocialAccountService {
|
|
|
20790
21290
|
* @throws ApiError
|
|
20791
21291
|
*/
|
|
20792
21292
|
socialAccountSetChannel(data?: SocialAccountSetChannelData): CancelablePromise<SocialAccountSetChannelResponse>;
|
|
21293
|
+
/**
|
|
21294
|
+
* Unset channel for social account
|
|
21295
|
+
* Clear selected channel while keeping social account authorization.
|
|
21296
|
+
* @param data The data for the request.
|
|
21297
|
+
* @param data.requestBody Body
|
|
21298
|
+
* @returns unknown 200
|
|
21299
|
+
* @throws ApiError
|
|
21300
|
+
*/
|
|
21301
|
+
socialAccountUnsetChannel(data?: SocialAccountUnsetChannelData): CancelablePromise<SocialAccountUnsetChannelResponse>;
|
|
20793
21302
|
/**
|
|
20794
21303
|
* Refresh channels for social account
|
|
20795
21304
|
* Refresh channels saved on socialAccount.channels. This is only needed for some social account types - Reddit, Discord, Slack, Pinterest.
|
|
@@ -20816,6 +21325,15 @@ declare class SocialAccountService {
|
|
|
20816
21325
|
* @throws ApiError
|
|
20817
21326
|
*/
|
|
20818
21327
|
socialAccountCopy(data?: SocialAccountCopyData): CancelablePromise<SocialAccountCopyResponse>;
|
|
21328
|
+
/**
|
|
21329
|
+
* Get paginated social accounts to delete
|
|
21330
|
+
* @param data The data for the request.
|
|
21331
|
+
* @param data.page
|
|
21332
|
+
* @param data.pageSize
|
|
21333
|
+
* @returns unknown 200
|
|
21334
|
+
* @throws ApiError
|
|
21335
|
+
*/
|
|
21336
|
+
socialAccountGetAccountsToDelete(data?: SocialAccountGetAccountsToDeleteData): CancelablePromise<SocialAccountGetAccountsToDeleteResponse>;
|
|
20819
21337
|
}
|
|
20820
21338
|
declare class UploadService {
|
|
20821
21339
|
readonly httpRequest: BaseHttpRequest;
|
|
@@ -20959,10 +21477,11 @@ declare class AnalyticsService {
|
|
|
20959
21477
|
* @param data The data for the request.
|
|
20960
21478
|
* @param data.postId
|
|
20961
21479
|
* @param data.platformType
|
|
21480
|
+
* @param data.importedPostId
|
|
20962
21481
|
* @returns unknown 200
|
|
20963
21482
|
* @throws ApiError
|
|
20964
21483
|
*/
|
|
20965
|
-
analyticsGetPostAnalytics(data
|
|
21484
|
+
analyticsGetPostAnalytics(data?: AnalyticsGetPostAnalyticsData): CancelablePromise<AnalyticsGetPostAnalyticsResponse>;
|
|
20966
21485
|
/**
|
|
20967
21486
|
* Get Social Account Analytics Raw
|
|
20968
21487
|
* @param data The data for the request.
|
|
@@ -20977,10 +21496,11 @@ declare class AnalyticsService {
|
|
|
20977
21496
|
* @param data The data for the request.
|
|
20978
21497
|
* @param data.postId
|
|
20979
21498
|
* @param data.platformType
|
|
21499
|
+
* @param data.importedPostId
|
|
20980
21500
|
* @returns unknown 200
|
|
20981
21501
|
* @throws ApiError
|
|
20982
21502
|
*/
|
|
20983
|
-
analyticsGetPostAnalyticsRaw(data
|
|
21503
|
+
analyticsGetPostAnalyticsRaw(data?: AnalyticsGetPostAnalyticsRawData): CancelablePromise<AnalyticsGetPostAnalyticsRawResponse>;
|
|
20984
21504
|
/**
|
|
20985
21505
|
* Get Bulk Post Analytics
|
|
20986
21506
|
* Retrieve analytics for multiple posts in a single request. Maximum 60 posts per request, paginated with 20 per page.
|
|
@@ -21914,6 +22434,14 @@ declare class PostImportService {
|
|
|
21914
22434
|
* @throws ApiError
|
|
21915
22435
|
*/
|
|
21916
22436
|
postImportGetImportedPosts(data: PostImportGetImportedPostsData): CancelablePromise<PostImportGetImportedPostsResponse>;
|
|
22437
|
+
/**
|
|
22438
|
+
* Bulk delete imported posts and their analytics
|
|
22439
|
+
* @param data The data for the request.
|
|
22440
|
+
* @param data.requestBody Body
|
|
22441
|
+
* @returns unknown 200
|
|
22442
|
+
* @throws ApiError
|
|
22443
|
+
*/
|
|
22444
|
+
postImportDeleteImportedPosts(data?: PostImportDeleteImportedPostsData): CancelablePromise<PostImportDeleteImportedPostsResponse>;
|
|
21917
22445
|
/**
|
|
21918
22446
|
* Retry a failed import
|
|
21919
22447
|
* @param data The data for the request.
|
|
@@ -22013,4 +22541,4 @@ declare class Bundlesocial extends Client {
|
|
|
22013
22541
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
22014
22542
|
}
|
|
22015
22543
|
|
|
22016
|
-
export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, 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 };
|
|
22544
|
+
export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, 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 };
|