bundlesocial 2.36.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 +2311 -124
- package/dist/index.d.ts +2311 -124
- 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;
|
|
@@ -1132,6 +1237,12 @@ type PostGetResponse = {
|
|
|
1132
1237
|
x: number;
|
|
1133
1238
|
y: number;
|
|
1134
1239
|
}> | null;
|
|
1240
|
+
/**
|
|
1241
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
1242
|
+
*/
|
|
1243
|
+
trialParams?: {
|
|
1244
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
1245
|
+
} | null;
|
|
1135
1246
|
} | null;
|
|
1136
1247
|
THREADS?: {
|
|
1137
1248
|
text?: string | null;
|
|
@@ -1146,6 +1257,7 @@ type PostGetResponse = {
|
|
|
1146
1257
|
*/
|
|
1147
1258
|
thumbnail?: string | null;
|
|
1148
1259
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
1260
|
+
photoCoverIndex?: number | null;
|
|
1149
1261
|
/**
|
|
1150
1262
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
1151
1263
|
*/
|
|
@@ -1178,6 +1290,35 @@ type PostGetResponse = {
|
|
|
1178
1290
|
* If set to true, TikTok will automatically add music to the photos.
|
|
1179
1291
|
*/
|
|
1180
1292
|
autoAddMusic?: boolean | null;
|
|
1293
|
+
/**
|
|
1294
|
+
* If set to true, upload post as draft.
|
|
1295
|
+
*/
|
|
1296
|
+
uploadToDraft?: boolean | null;
|
|
1297
|
+
/**
|
|
1298
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
1299
|
+
*/
|
|
1300
|
+
musicSoundInfo?: {
|
|
1301
|
+
/**
|
|
1302
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
1303
|
+
*/
|
|
1304
|
+
musicSoundId: string;
|
|
1305
|
+
/**
|
|
1306
|
+
* Commercial sound volume (0-100).
|
|
1307
|
+
*/
|
|
1308
|
+
musicSoundVolume?: number | null;
|
|
1309
|
+
/**
|
|
1310
|
+
* Starting point of the commercial sound in milliseconds.
|
|
1311
|
+
*/
|
|
1312
|
+
musicSoundStart?: number | null;
|
|
1313
|
+
/**
|
|
1314
|
+
* Ending point of the commercial sound in milliseconds.
|
|
1315
|
+
*/
|
|
1316
|
+
musicSoundEnd?: number | null;
|
|
1317
|
+
/**
|
|
1318
|
+
* Background volume of the original video sound (0-100).
|
|
1319
|
+
*/
|
|
1320
|
+
videoOriginalSoundVolume?: number | null;
|
|
1321
|
+
} | null;
|
|
1181
1322
|
} | null;
|
|
1182
1323
|
LINKEDIN?: {
|
|
1183
1324
|
text: string;
|
|
@@ -1494,6 +1635,7 @@ type PostGetResponse = {
|
|
|
1494
1635
|
id?: string | null;
|
|
1495
1636
|
shareId?: string | null;
|
|
1496
1637
|
permalink?: string | null;
|
|
1638
|
+
status?: string | null;
|
|
1497
1639
|
} | null;
|
|
1498
1640
|
LINKEDIN?: {
|
|
1499
1641
|
id?: string | null;
|
|
@@ -1627,6 +1769,7 @@ type PostGetResponse = {
|
|
|
1627
1769
|
mastodonServerId?: string | null;
|
|
1628
1770
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
1629
1771
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
1772
|
+
deleteOn?: string | null;
|
|
1630
1773
|
createdAt: string | null;
|
|
1631
1774
|
updatedAt: string | null;
|
|
1632
1775
|
deletedAt?: string | null;
|
|
@@ -1647,6 +1790,7 @@ type PostUpdateData = {
|
|
|
1647
1790
|
TWITTER?: {
|
|
1648
1791
|
text?: string | null;
|
|
1649
1792
|
uploadIds?: Array<(string)> | null;
|
|
1793
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
1650
1794
|
} | null;
|
|
1651
1795
|
PINTEREST?: {
|
|
1652
1796
|
text?: string | null;
|
|
@@ -1717,6 +1861,12 @@ type PostUpdateData = {
|
|
|
1717
1861
|
x: number;
|
|
1718
1862
|
y: number;
|
|
1719
1863
|
}> | null;
|
|
1864
|
+
/**
|
|
1865
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
1866
|
+
*/
|
|
1867
|
+
trialParams?: {
|
|
1868
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
1869
|
+
} | null;
|
|
1720
1870
|
} | null;
|
|
1721
1871
|
THREADS?: {
|
|
1722
1872
|
text?: string | null;
|
|
@@ -1731,6 +1881,7 @@ type PostUpdateData = {
|
|
|
1731
1881
|
*/
|
|
1732
1882
|
thumbnail?: string | null;
|
|
1733
1883
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
1884
|
+
photoCoverIndex?: number | null;
|
|
1734
1885
|
/**
|
|
1735
1886
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
1736
1887
|
*/
|
|
@@ -1763,6 +1914,35 @@ type PostUpdateData = {
|
|
|
1763
1914
|
* If set to true, TikTok will automatically add music to the photos.
|
|
1764
1915
|
*/
|
|
1765
1916
|
autoAddMusic?: boolean | null;
|
|
1917
|
+
/**
|
|
1918
|
+
* If set to true, upload post as draft.
|
|
1919
|
+
*/
|
|
1920
|
+
uploadToDraft?: boolean | null;
|
|
1921
|
+
/**
|
|
1922
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
1923
|
+
*/
|
|
1924
|
+
musicSoundInfo?: {
|
|
1925
|
+
/**
|
|
1926
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
1927
|
+
*/
|
|
1928
|
+
musicSoundId: string;
|
|
1929
|
+
/**
|
|
1930
|
+
* Commercial sound volume (0-100).
|
|
1931
|
+
*/
|
|
1932
|
+
musicSoundVolume?: number | null;
|
|
1933
|
+
/**
|
|
1934
|
+
* Starting point of the commercial sound in milliseconds.
|
|
1935
|
+
*/
|
|
1936
|
+
musicSoundStart?: number | null;
|
|
1937
|
+
/**
|
|
1938
|
+
* Ending point of the commercial sound in milliseconds.
|
|
1939
|
+
*/
|
|
1940
|
+
musicSoundEnd?: number | null;
|
|
1941
|
+
/**
|
|
1942
|
+
* Background volume of the original video sound (0-100).
|
|
1943
|
+
*/
|
|
1944
|
+
videoOriginalSoundVolume?: number | null;
|
|
1945
|
+
} | null;
|
|
1766
1946
|
} | null;
|
|
1767
1947
|
LINKEDIN?: {
|
|
1768
1948
|
text: string;
|
|
@@ -1936,6 +2116,7 @@ type PostUpdateResponse = {
|
|
|
1936
2116
|
TWITTER?: {
|
|
1937
2117
|
text?: string | null;
|
|
1938
2118
|
uploadIds?: Array<(string)> | null;
|
|
2119
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
1939
2120
|
} | null;
|
|
1940
2121
|
PINTEREST?: {
|
|
1941
2122
|
text?: string | null;
|
|
@@ -2006,6 +2187,12 @@ type PostUpdateResponse = {
|
|
|
2006
2187
|
x: number;
|
|
2007
2188
|
y: number;
|
|
2008
2189
|
}> | null;
|
|
2190
|
+
/**
|
|
2191
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
2192
|
+
*/
|
|
2193
|
+
trialParams?: {
|
|
2194
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
2195
|
+
} | null;
|
|
2009
2196
|
} | null;
|
|
2010
2197
|
THREADS?: {
|
|
2011
2198
|
text?: string | null;
|
|
@@ -2020,6 +2207,7 @@ type PostUpdateResponse = {
|
|
|
2020
2207
|
*/
|
|
2021
2208
|
thumbnail?: string | null;
|
|
2022
2209
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
2210
|
+
photoCoverIndex?: number | null;
|
|
2023
2211
|
/**
|
|
2024
2212
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
2025
2213
|
*/
|
|
@@ -2052,6 +2240,35 @@ type PostUpdateResponse = {
|
|
|
2052
2240
|
* If set to true, TikTok will automatically add music to the photos.
|
|
2053
2241
|
*/
|
|
2054
2242
|
autoAddMusic?: boolean | null;
|
|
2243
|
+
/**
|
|
2244
|
+
* If set to true, upload post as draft.
|
|
2245
|
+
*/
|
|
2246
|
+
uploadToDraft?: boolean | null;
|
|
2247
|
+
/**
|
|
2248
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
2249
|
+
*/
|
|
2250
|
+
musicSoundInfo?: {
|
|
2251
|
+
/**
|
|
2252
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
2253
|
+
*/
|
|
2254
|
+
musicSoundId: string;
|
|
2255
|
+
/**
|
|
2256
|
+
* Commercial sound volume (0-100).
|
|
2257
|
+
*/
|
|
2258
|
+
musicSoundVolume?: number | null;
|
|
2259
|
+
/**
|
|
2260
|
+
* Starting point of the commercial sound in milliseconds.
|
|
2261
|
+
*/
|
|
2262
|
+
musicSoundStart?: number | null;
|
|
2263
|
+
/**
|
|
2264
|
+
* Ending point of the commercial sound in milliseconds.
|
|
2265
|
+
*/
|
|
2266
|
+
musicSoundEnd?: number | null;
|
|
2267
|
+
/**
|
|
2268
|
+
* Background volume of the original video sound (0-100).
|
|
2269
|
+
*/
|
|
2270
|
+
videoOriginalSoundVolume?: number | null;
|
|
2271
|
+
} | null;
|
|
2055
2272
|
} | null;
|
|
2056
2273
|
LINKEDIN?: {
|
|
2057
2274
|
text: string;
|
|
@@ -2368,6 +2585,7 @@ type PostUpdateResponse = {
|
|
|
2368
2585
|
id?: string | null;
|
|
2369
2586
|
shareId?: string | null;
|
|
2370
2587
|
permalink?: string | null;
|
|
2588
|
+
status?: string | null;
|
|
2371
2589
|
} | null;
|
|
2372
2590
|
LINKEDIN?: {
|
|
2373
2591
|
id?: string | null;
|
|
@@ -2452,6 +2670,7 @@ type PostDeleteResponse = {
|
|
|
2452
2670
|
TWITTER?: {
|
|
2453
2671
|
text?: string | null;
|
|
2454
2672
|
uploadIds?: Array<(string)> | null;
|
|
2673
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
2455
2674
|
} | null;
|
|
2456
2675
|
PINTEREST?: {
|
|
2457
2676
|
text?: string | null;
|
|
@@ -2522,6 +2741,12 @@ type PostDeleteResponse = {
|
|
|
2522
2741
|
x: number;
|
|
2523
2742
|
y: number;
|
|
2524
2743
|
}> | null;
|
|
2744
|
+
/**
|
|
2745
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
2746
|
+
*/
|
|
2747
|
+
trialParams?: {
|
|
2748
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
2749
|
+
} | null;
|
|
2525
2750
|
} | null;
|
|
2526
2751
|
THREADS?: {
|
|
2527
2752
|
text?: string | null;
|
|
@@ -2536,6 +2761,7 @@ type PostDeleteResponse = {
|
|
|
2536
2761
|
*/
|
|
2537
2762
|
thumbnail?: string | null;
|
|
2538
2763
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
2764
|
+
photoCoverIndex?: number | null;
|
|
2539
2765
|
/**
|
|
2540
2766
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
2541
2767
|
*/
|
|
@@ -2568,6 +2794,35 @@ type PostDeleteResponse = {
|
|
|
2568
2794
|
* If set to true, TikTok will automatically add music to the photos.
|
|
2569
2795
|
*/
|
|
2570
2796
|
autoAddMusic?: boolean | null;
|
|
2797
|
+
/**
|
|
2798
|
+
* If set to true, upload post as draft.
|
|
2799
|
+
*/
|
|
2800
|
+
uploadToDraft?: boolean | null;
|
|
2801
|
+
/**
|
|
2802
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
2803
|
+
*/
|
|
2804
|
+
musicSoundInfo?: {
|
|
2805
|
+
/**
|
|
2806
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
2807
|
+
*/
|
|
2808
|
+
musicSoundId: string;
|
|
2809
|
+
/**
|
|
2810
|
+
* Commercial sound volume (0-100).
|
|
2811
|
+
*/
|
|
2812
|
+
musicSoundVolume?: number | null;
|
|
2813
|
+
/**
|
|
2814
|
+
* Starting point of the commercial sound in milliseconds.
|
|
2815
|
+
*/
|
|
2816
|
+
musicSoundStart?: number | null;
|
|
2817
|
+
/**
|
|
2818
|
+
* Ending point of the commercial sound in milliseconds.
|
|
2819
|
+
*/
|
|
2820
|
+
musicSoundEnd?: number | null;
|
|
2821
|
+
/**
|
|
2822
|
+
* Background volume of the original video sound (0-100).
|
|
2823
|
+
*/
|
|
2824
|
+
videoOriginalSoundVolume?: number | null;
|
|
2825
|
+
} | null;
|
|
2571
2826
|
} | null;
|
|
2572
2827
|
LINKEDIN?: {
|
|
2573
2828
|
text: string;
|
|
@@ -2884,6 +3139,7 @@ type PostDeleteResponse = {
|
|
|
2884
3139
|
id?: string | null;
|
|
2885
3140
|
shareId?: string | null;
|
|
2886
3141
|
permalink?: string | null;
|
|
3142
|
+
status?: string | null;
|
|
2887
3143
|
} | null;
|
|
2888
3144
|
LINKEDIN?: {
|
|
2889
3145
|
id?: string | null;
|
|
@@ -2976,6 +3232,7 @@ type PostGetListResponse = {
|
|
|
2976
3232
|
TWITTER?: {
|
|
2977
3233
|
text?: string | null;
|
|
2978
3234
|
uploadIds?: Array<(string)> | null;
|
|
3235
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
2979
3236
|
} | null;
|
|
2980
3237
|
PINTEREST?: {
|
|
2981
3238
|
text?: string | null;
|
|
@@ -3046,6 +3303,12 @@ type PostGetListResponse = {
|
|
|
3046
3303
|
x: number;
|
|
3047
3304
|
y: number;
|
|
3048
3305
|
}> | null;
|
|
3306
|
+
/**
|
|
3307
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
3308
|
+
*/
|
|
3309
|
+
trialParams?: {
|
|
3310
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
3311
|
+
} | null;
|
|
3049
3312
|
} | null;
|
|
3050
3313
|
THREADS?: {
|
|
3051
3314
|
text?: string | null;
|
|
@@ -3060,6 +3323,7 @@ type PostGetListResponse = {
|
|
|
3060
3323
|
*/
|
|
3061
3324
|
thumbnail?: string | null;
|
|
3062
3325
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
3326
|
+
photoCoverIndex?: number | null;
|
|
3063
3327
|
/**
|
|
3064
3328
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
3065
3329
|
*/
|
|
@@ -3092,6 +3356,35 @@ type PostGetListResponse = {
|
|
|
3092
3356
|
* If set to true, TikTok will automatically add music to the photos.
|
|
3093
3357
|
*/
|
|
3094
3358
|
autoAddMusic?: boolean | null;
|
|
3359
|
+
/**
|
|
3360
|
+
* If set to true, upload post as draft.
|
|
3361
|
+
*/
|
|
3362
|
+
uploadToDraft?: boolean | null;
|
|
3363
|
+
/**
|
|
3364
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
3365
|
+
*/
|
|
3366
|
+
musicSoundInfo?: {
|
|
3367
|
+
/**
|
|
3368
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
3369
|
+
*/
|
|
3370
|
+
musicSoundId: string;
|
|
3371
|
+
/**
|
|
3372
|
+
* Commercial sound volume (0-100).
|
|
3373
|
+
*/
|
|
3374
|
+
musicSoundVolume?: number | null;
|
|
3375
|
+
/**
|
|
3376
|
+
* Starting point of the commercial sound in milliseconds.
|
|
3377
|
+
*/
|
|
3378
|
+
musicSoundStart?: number | null;
|
|
3379
|
+
/**
|
|
3380
|
+
* Ending point of the commercial sound in milliseconds.
|
|
3381
|
+
*/
|
|
3382
|
+
musicSoundEnd?: number | null;
|
|
3383
|
+
/**
|
|
3384
|
+
* Background volume of the original video sound (0-100).
|
|
3385
|
+
*/
|
|
3386
|
+
videoOriginalSoundVolume?: number | null;
|
|
3387
|
+
} | null;
|
|
3095
3388
|
} | null;
|
|
3096
3389
|
LINKEDIN?: {
|
|
3097
3390
|
text: string;
|
|
@@ -3408,6 +3701,7 @@ type PostGetListResponse = {
|
|
|
3408
3701
|
id?: string | null;
|
|
3409
3702
|
shareId?: string | null;
|
|
3410
3703
|
permalink?: string | null;
|
|
3704
|
+
status?: string | null;
|
|
3411
3705
|
} | null;
|
|
3412
3706
|
LINKEDIN?: {
|
|
3413
3707
|
id?: string | null;
|
|
@@ -3541,6 +3835,7 @@ type PostGetListResponse = {
|
|
|
3541
3835
|
mastodonServerId?: string | null;
|
|
3542
3836
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
3543
3837
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
3838
|
+
deleteOn?: string | null;
|
|
3544
3839
|
createdAt: string | null;
|
|
3545
3840
|
updatedAt: string | null;
|
|
3546
3841
|
deletedAt?: string | null;
|
|
@@ -3563,6 +3858,7 @@ type PostCreateData = {
|
|
|
3563
3858
|
TWITTER?: {
|
|
3564
3859
|
text?: string | null;
|
|
3565
3860
|
uploadIds?: Array<(string)> | null;
|
|
3861
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
3566
3862
|
} | null;
|
|
3567
3863
|
PINTEREST?: {
|
|
3568
3864
|
text?: string | null;
|
|
@@ -3633,6 +3929,12 @@ type PostCreateData = {
|
|
|
3633
3929
|
x: number;
|
|
3634
3930
|
y: number;
|
|
3635
3931
|
}> | null;
|
|
3932
|
+
/**
|
|
3933
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
3934
|
+
*/
|
|
3935
|
+
trialParams?: {
|
|
3936
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
3937
|
+
} | null;
|
|
3636
3938
|
} | null;
|
|
3637
3939
|
THREADS?: {
|
|
3638
3940
|
text?: string | null;
|
|
@@ -3647,6 +3949,7 @@ type PostCreateData = {
|
|
|
3647
3949
|
*/
|
|
3648
3950
|
thumbnail?: string | null;
|
|
3649
3951
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
3952
|
+
photoCoverIndex?: number | null;
|
|
3650
3953
|
/**
|
|
3651
3954
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
3652
3955
|
*/
|
|
@@ -3679,6 +3982,35 @@ type PostCreateData = {
|
|
|
3679
3982
|
* If set to true, TikTok will automatically add music to the photos.
|
|
3680
3983
|
*/
|
|
3681
3984
|
autoAddMusic?: boolean | null;
|
|
3985
|
+
/**
|
|
3986
|
+
* If set to true, upload post as draft.
|
|
3987
|
+
*/
|
|
3988
|
+
uploadToDraft?: boolean | null;
|
|
3989
|
+
/**
|
|
3990
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
3991
|
+
*/
|
|
3992
|
+
musicSoundInfo?: {
|
|
3993
|
+
/**
|
|
3994
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
3995
|
+
*/
|
|
3996
|
+
musicSoundId: string;
|
|
3997
|
+
/**
|
|
3998
|
+
* Commercial sound volume (0-100).
|
|
3999
|
+
*/
|
|
4000
|
+
musicSoundVolume?: number | null;
|
|
4001
|
+
/**
|
|
4002
|
+
* Starting point of the commercial sound in milliseconds.
|
|
4003
|
+
*/
|
|
4004
|
+
musicSoundStart?: number | null;
|
|
4005
|
+
/**
|
|
4006
|
+
* Ending point of the commercial sound in milliseconds.
|
|
4007
|
+
*/
|
|
4008
|
+
musicSoundEnd?: number | null;
|
|
4009
|
+
/**
|
|
4010
|
+
* Background volume of the original video sound (0-100).
|
|
4011
|
+
*/
|
|
4012
|
+
videoOriginalSoundVolume?: number | null;
|
|
4013
|
+
} | null;
|
|
3682
4014
|
} | null;
|
|
3683
4015
|
LINKEDIN?: {
|
|
3684
4016
|
text: string;
|
|
@@ -3852,6 +4184,7 @@ type PostCreateResponse = {
|
|
|
3852
4184
|
TWITTER?: {
|
|
3853
4185
|
text?: string | null;
|
|
3854
4186
|
uploadIds?: Array<(string)> | null;
|
|
4187
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
3855
4188
|
} | null;
|
|
3856
4189
|
PINTEREST?: {
|
|
3857
4190
|
text?: string | null;
|
|
@@ -3922,6 +4255,12 @@ type PostCreateResponse = {
|
|
|
3922
4255
|
x: number;
|
|
3923
4256
|
y: number;
|
|
3924
4257
|
}> | null;
|
|
4258
|
+
/**
|
|
4259
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
4260
|
+
*/
|
|
4261
|
+
trialParams?: {
|
|
4262
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
4263
|
+
} | null;
|
|
3925
4264
|
} | null;
|
|
3926
4265
|
THREADS?: {
|
|
3927
4266
|
text?: string | null;
|
|
@@ -3936,6 +4275,7 @@ type PostCreateResponse = {
|
|
|
3936
4275
|
*/
|
|
3937
4276
|
thumbnail?: string | null;
|
|
3938
4277
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
4278
|
+
photoCoverIndex?: number | null;
|
|
3939
4279
|
/**
|
|
3940
4280
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
3941
4281
|
*/
|
|
@@ -3968,6 +4308,35 @@ type PostCreateResponse = {
|
|
|
3968
4308
|
* If set to true, TikTok will automatically add music to the photos.
|
|
3969
4309
|
*/
|
|
3970
4310
|
autoAddMusic?: boolean | null;
|
|
4311
|
+
/**
|
|
4312
|
+
* If set to true, upload post as draft.
|
|
4313
|
+
*/
|
|
4314
|
+
uploadToDraft?: boolean | null;
|
|
4315
|
+
/**
|
|
4316
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
4317
|
+
*/
|
|
4318
|
+
musicSoundInfo?: {
|
|
4319
|
+
/**
|
|
4320
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
4321
|
+
*/
|
|
4322
|
+
musicSoundId: string;
|
|
4323
|
+
/**
|
|
4324
|
+
* Commercial sound volume (0-100).
|
|
4325
|
+
*/
|
|
4326
|
+
musicSoundVolume?: number | null;
|
|
4327
|
+
/**
|
|
4328
|
+
* Starting point of the commercial sound in milliseconds.
|
|
4329
|
+
*/
|
|
4330
|
+
musicSoundStart?: number | null;
|
|
4331
|
+
/**
|
|
4332
|
+
* Ending point of the commercial sound in milliseconds.
|
|
4333
|
+
*/
|
|
4334
|
+
musicSoundEnd?: number | null;
|
|
4335
|
+
/**
|
|
4336
|
+
* Background volume of the original video sound (0-100).
|
|
4337
|
+
*/
|
|
4338
|
+
videoOriginalSoundVolume?: number | null;
|
|
4339
|
+
} | null;
|
|
3971
4340
|
} | null;
|
|
3972
4341
|
LINKEDIN?: {
|
|
3973
4342
|
text: string;
|
|
@@ -4284,6 +4653,7 @@ type PostCreateResponse = {
|
|
|
4284
4653
|
id?: string | null;
|
|
4285
4654
|
shareId?: string | null;
|
|
4286
4655
|
permalink?: string | null;
|
|
4656
|
+
status?: string | null;
|
|
4287
4657
|
} | null;
|
|
4288
4658
|
LINKEDIN?: {
|
|
4289
4659
|
id?: string | null;
|
|
@@ -4368,6 +4738,7 @@ type PostRetryResponse = {
|
|
|
4368
4738
|
TWITTER?: {
|
|
4369
4739
|
text?: string | null;
|
|
4370
4740
|
uploadIds?: Array<(string)> | null;
|
|
4741
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
4371
4742
|
} | null;
|
|
4372
4743
|
PINTEREST?: {
|
|
4373
4744
|
text?: string | null;
|
|
@@ -4438,6 +4809,12 @@ type PostRetryResponse = {
|
|
|
4438
4809
|
x: number;
|
|
4439
4810
|
y: number;
|
|
4440
4811
|
}> | null;
|
|
4812
|
+
/**
|
|
4813
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
4814
|
+
*/
|
|
4815
|
+
trialParams?: {
|
|
4816
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
4817
|
+
} | null;
|
|
4441
4818
|
} | null;
|
|
4442
4819
|
THREADS?: {
|
|
4443
4820
|
text?: string | null;
|
|
@@ -4452,6 +4829,7 @@ type PostRetryResponse = {
|
|
|
4452
4829
|
*/
|
|
4453
4830
|
thumbnail?: string | null;
|
|
4454
4831
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
4832
|
+
photoCoverIndex?: number | null;
|
|
4455
4833
|
/**
|
|
4456
4834
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
4457
4835
|
*/
|
|
@@ -4484,6 +4862,35 @@ type PostRetryResponse = {
|
|
|
4484
4862
|
* If set to true, TikTok will automatically add music to the photos.
|
|
4485
4863
|
*/
|
|
4486
4864
|
autoAddMusic?: boolean | null;
|
|
4865
|
+
/**
|
|
4866
|
+
* If set to true, upload post as draft.
|
|
4867
|
+
*/
|
|
4868
|
+
uploadToDraft?: boolean | null;
|
|
4869
|
+
/**
|
|
4870
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
4871
|
+
*/
|
|
4872
|
+
musicSoundInfo?: {
|
|
4873
|
+
/**
|
|
4874
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
4875
|
+
*/
|
|
4876
|
+
musicSoundId: string;
|
|
4877
|
+
/**
|
|
4878
|
+
* Commercial sound volume (0-100).
|
|
4879
|
+
*/
|
|
4880
|
+
musicSoundVolume?: number | null;
|
|
4881
|
+
/**
|
|
4882
|
+
* Starting point of the commercial sound in milliseconds.
|
|
4883
|
+
*/
|
|
4884
|
+
musicSoundStart?: number | null;
|
|
4885
|
+
/**
|
|
4886
|
+
* Ending point of the commercial sound in milliseconds.
|
|
4887
|
+
*/
|
|
4888
|
+
musicSoundEnd?: number | null;
|
|
4889
|
+
/**
|
|
4890
|
+
* Background volume of the original video sound (0-100).
|
|
4891
|
+
*/
|
|
4892
|
+
videoOriginalSoundVolume?: number | null;
|
|
4893
|
+
} | null;
|
|
4487
4894
|
} | null;
|
|
4488
4895
|
LINKEDIN?: {
|
|
4489
4896
|
text: string;
|
|
@@ -4800,6 +5207,7 @@ type PostRetryResponse = {
|
|
|
4800
5207
|
id?: string | null;
|
|
4801
5208
|
shareId?: string | null;
|
|
4802
5209
|
permalink?: string | null;
|
|
5210
|
+
status?: string | null;
|
|
4803
5211
|
} | null;
|
|
4804
5212
|
LINKEDIN?: {
|
|
4805
5213
|
id?: string | null;
|
|
@@ -4906,6 +5314,7 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
4906
5314
|
mastodonServerId?: string | null;
|
|
4907
5315
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
4908
5316
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
5317
|
+
deleteOn?: string | null;
|
|
4909
5318
|
createdAt: string | null;
|
|
4910
5319
|
updatedAt: string | null;
|
|
4911
5320
|
deletedAt?: string | null;
|
|
@@ -4929,8 +5338,9 @@ type AnalyticsGetSocialAccountAnalyticsResponse = {
|
|
|
4929
5338
|
}>;
|
|
4930
5339
|
};
|
|
4931
5340
|
type AnalyticsGetPostAnalyticsData = {
|
|
4932
|
-
|
|
4933
|
-
|
|
5341
|
+
importedPostId?: string | null;
|
|
5342
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
5343
|
+
postId?: string | null;
|
|
4934
5344
|
};
|
|
4935
5345
|
type AnalyticsGetPostAnalyticsResponse = {
|
|
4936
5346
|
post: {
|
|
@@ -4945,6 +5355,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
4945
5355
|
TWITTER?: {
|
|
4946
5356
|
text?: string | null;
|
|
4947
5357
|
uploadIds?: Array<(string)> | null;
|
|
5358
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
4948
5359
|
} | null;
|
|
4949
5360
|
PINTEREST?: {
|
|
4950
5361
|
text?: string | null;
|
|
@@ -5015,6 +5426,12 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5015
5426
|
x: number;
|
|
5016
5427
|
y: number;
|
|
5017
5428
|
}> | null;
|
|
5429
|
+
/**
|
|
5430
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
5431
|
+
*/
|
|
5432
|
+
trialParams?: {
|
|
5433
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
5434
|
+
} | null;
|
|
5018
5435
|
} | null;
|
|
5019
5436
|
THREADS?: {
|
|
5020
5437
|
text?: string | null;
|
|
@@ -5029,6 +5446,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5029
5446
|
*/
|
|
5030
5447
|
thumbnail?: string | null;
|
|
5031
5448
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
5449
|
+
photoCoverIndex?: number | null;
|
|
5032
5450
|
/**
|
|
5033
5451
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
5034
5452
|
*/
|
|
@@ -5061,6 +5479,35 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5061
5479
|
* If set to true, TikTok will automatically add music to the photos.
|
|
5062
5480
|
*/
|
|
5063
5481
|
autoAddMusic?: boolean | null;
|
|
5482
|
+
/**
|
|
5483
|
+
* If set to true, upload post as draft.
|
|
5484
|
+
*/
|
|
5485
|
+
uploadToDraft?: boolean | null;
|
|
5486
|
+
/**
|
|
5487
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
5488
|
+
*/
|
|
5489
|
+
musicSoundInfo?: {
|
|
5490
|
+
/**
|
|
5491
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
5492
|
+
*/
|
|
5493
|
+
musicSoundId: string;
|
|
5494
|
+
/**
|
|
5495
|
+
* Commercial sound volume (0-100).
|
|
5496
|
+
*/
|
|
5497
|
+
musicSoundVolume?: number | null;
|
|
5498
|
+
/**
|
|
5499
|
+
* Starting point of the commercial sound in milliseconds.
|
|
5500
|
+
*/
|
|
5501
|
+
musicSoundStart?: number | null;
|
|
5502
|
+
/**
|
|
5503
|
+
* Ending point of the commercial sound in milliseconds.
|
|
5504
|
+
*/
|
|
5505
|
+
musicSoundEnd?: number | null;
|
|
5506
|
+
/**
|
|
5507
|
+
* Background volume of the original video sound (0-100).
|
|
5508
|
+
*/
|
|
5509
|
+
videoOriginalSoundVolume?: number | null;
|
|
5510
|
+
} | null;
|
|
5064
5511
|
} | null;
|
|
5065
5512
|
LINKEDIN?: {
|
|
5066
5513
|
text: string;
|
|
@@ -5377,6 +5824,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5377
5824
|
id?: string | null;
|
|
5378
5825
|
shareId?: string | null;
|
|
5379
5826
|
permalink?: string | null;
|
|
5827
|
+
status?: string | null;
|
|
5380
5828
|
} | null;
|
|
5381
5829
|
LINKEDIN?: {
|
|
5382
5830
|
id?: string | null;
|
|
@@ -5445,10 +5893,31 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
5445
5893
|
createdAt: string | null;
|
|
5446
5894
|
updatedAt: string | null;
|
|
5447
5895
|
deletedAt?: string | null;
|
|
5448
|
-
};
|
|
5449
|
-
|
|
5896
|
+
} | null;
|
|
5897
|
+
profilePost?: {
|
|
5450
5898
|
id: string;
|
|
5451
|
-
|
|
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;
|
|
5917
|
+
};
|
|
5918
|
+
items: Array<{
|
|
5919
|
+
id: string;
|
|
5920
|
+
profilePostId: string;
|
|
5452
5921
|
impressions: number;
|
|
5453
5922
|
impressionsUnique: number;
|
|
5454
5923
|
views: number;
|
|
@@ -5502,6 +5971,7 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
5502
5971
|
mastodonServerId?: string | null;
|
|
5503
5972
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
5504
5973
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
5974
|
+
deleteOn?: string | null;
|
|
5505
5975
|
createdAt: string | null;
|
|
5506
5976
|
updatedAt: string | null;
|
|
5507
5977
|
deletedAt?: string | null;
|
|
@@ -5518,8 +5988,9 @@ type AnalyticsGetSocialAccountAnalyticsRawResponse = {
|
|
|
5518
5988
|
}>;
|
|
5519
5989
|
};
|
|
5520
5990
|
type AnalyticsGetPostAnalyticsRawData = {
|
|
5521
|
-
|
|
5522
|
-
|
|
5991
|
+
importedPostId?: string | null;
|
|
5992
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
5993
|
+
postId?: string | null;
|
|
5523
5994
|
};
|
|
5524
5995
|
type AnalyticsGetPostAnalyticsRawResponse = {
|
|
5525
5996
|
post: {
|
|
@@ -5534,6 +6005,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
5534
6005
|
TWITTER?: {
|
|
5535
6006
|
text?: string | null;
|
|
5536
6007
|
uploadIds?: Array<(string)> | null;
|
|
6008
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
5537
6009
|
} | null;
|
|
5538
6010
|
PINTEREST?: {
|
|
5539
6011
|
text?: string | null;
|
|
@@ -5604,6 +6076,12 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
5604
6076
|
x: number;
|
|
5605
6077
|
y: number;
|
|
5606
6078
|
}> | null;
|
|
6079
|
+
/**
|
|
6080
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
6081
|
+
*/
|
|
6082
|
+
trialParams?: {
|
|
6083
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
6084
|
+
} | null;
|
|
5607
6085
|
} | null;
|
|
5608
6086
|
THREADS?: {
|
|
5609
6087
|
text?: string | null;
|
|
@@ -5618,6 +6096,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
5618
6096
|
*/
|
|
5619
6097
|
thumbnail?: string | null;
|
|
5620
6098
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
6099
|
+
photoCoverIndex?: number | null;
|
|
5621
6100
|
/**
|
|
5622
6101
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
5623
6102
|
*/
|
|
@@ -5650,6 +6129,35 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
5650
6129
|
* If set to true, TikTok will automatically add music to the photos.
|
|
5651
6130
|
*/
|
|
5652
6131
|
autoAddMusic?: boolean | null;
|
|
6132
|
+
/**
|
|
6133
|
+
* If set to true, upload post as draft.
|
|
6134
|
+
*/
|
|
6135
|
+
uploadToDraft?: boolean | null;
|
|
6136
|
+
/**
|
|
6137
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
6138
|
+
*/
|
|
6139
|
+
musicSoundInfo?: {
|
|
6140
|
+
/**
|
|
6141
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
6142
|
+
*/
|
|
6143
|
+
musicSoundId: string;
|
|
6144
|
+
/**
|
|
6145
|
+
* Commercial sound volume (0-100).
|
|
6146
|
+
*/
|
|
6147
|
+
musicSoundVolume?: number | null;
|
|
6148
|
+
/**
|
|
6149
|
+
* Starting point of the commercial sound in milliseconds.
|
|
6150
|
+
*/
|
|
6151
|
+
musicSoundStart?: number | null;
|
|
6152
|
+
/**
|
|
6153
|
+
* Ending point of the commercial sound in milliseconds.
|
|
6154
|
+
*/
|
|
6155
|
+
musicSoundEnd?: number | null;
|
|
6156
|
+
/**
|
|
6157
|
+
* Background volume of the original video sound (0-100).
|
|
6158
|
+
*/
|
|
6159
|
+
videoOriginalSoundVolume?: number | null;
|
|
6160
|
+
} | null;
|
|
5653
6161
|
} | null;
|
|
5654
6162
|
LINKEDIN?: {
|
|
5655
6163
|
text: string;
|
|
@@ -5966,6 +6474,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
5966
6474
|
id?: string | null;
|
|
5967
6475
|
shareId?: string | null;
|
|
5968
6476
|
permalink?: string | null;
|
|
6477
|
+
status?: string | null;
|
|
5969
6478
|
} | null;
|
|
5970
6479
|
LINKEDIN?: {
|
|
5971
6480
|
id?: string | null;
|
|
@@ -6034,6 +6543,27 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6034
6543
|
createdAt: string | null;
|
|
6035
6544
|
updatedAt: string | null;
|
|
6036
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;
|
|
6037
6567
|
};
|
|
6038
6568
|
items: Array<{
|
|
6039
6569
|
id: string;
|
|
@@ -6113,8 +6643,9 @@ type AnalyticsForcePostAnalyticsData = {
|
|
|
6113
6643
|
* Body
|
|
6114
6644
|
*/
|
|
6115
6645
|
requestBody?: {
|
|
6116
|
-
postId
|
|
6117
|
-
platformType
|
|
6646
|
+
postId?: string | null;
|
|
6647
|
+
platformType?: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS' | null;
|
|
6648
|
+
importedPostId?: string | null;
|
|
6118
6649
|
};
|
|
6119
6650
|
};
|
|
6120
6651
|
type AnalyticsForcePostAnalyticsResponse = {
|
|
@@ -7868,6 +8399,173 @@ type MiscGoogleBusinessDeletePostData = {
|
|
|
7868
8399
|
type MiscGoogleBusinessDeletePostResponse = {
|
|
7869
8400
|
success: boolean;
|
|
7870
8401
|
};
|
|
8402
|
+
type MiscGoogleBusinessImportReviewsData = {
|
|
8403
|
+
/**
|
|
8404
|
+
* Body
|
|
8405
|
+
*/
|
|
8406
|
+
requestBody?: {
|
|
8407
|
+
teamId: string;
|
|
8408
|
+
count: number;
|
|
8409
|
+
};
|
|
8410
|
+
};
|
|
8411
|
+
type MiscGoogleBusinessImportReviewsResponse = {
|
|
8412
|
+
id: string;
|
|
8413
|
+
teamId: string;
|
|
8414
|
+
socialAccountId: string;
|
|
8415
|
+
requestedCount: number;
|
|
8416
|
+
status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8417
|
+
reviewsImported: number;
|
|
8418
|
+
error?: string | null;
|
|
8419
|
+
rateLimitResetAt?: string | null;
|
|
8420
|
+
startedAt?: string | null;
|
|
8421
|
+
completedAt?: string | null;
|
|
8422
|
+
createdAt: string | null;
|
|
8423
|
+
updatedAt: string | null;
|
|
8424
|
+
deletedAt?: string | null;
|
|
8425
|
+
};
|
|
8426
|
+
type MiscGoogleBusinessGetReviewImportStatusData = {
|
|
8427
|
+
teamId: string;
|
|
8428
|
+
};
|
|
8429
|
+
type MiscGoogleBusinessGetReviewImportStatusResponse = {
|
|
8430
|
+
imports: Array<{
|
|
8431
|
+
id: string;
|
|
8432
|
+
teamId: string;
|
|
8433
|
+
socialAccountId: string;
|
|
8434
|
+
requestedCount: number;
|
|
8435
|
+
status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8436
|
+
reviewsImported: number;
|
|
8437
|
+
error?: string | null;
|
|
8438
|
+
rateLimitResetAt?: string | null;
|
|
8439
|
+
startedAt?: string | null;
|
|
8440
|
+
completedAt?: string | null;
|
|
8441
|
+
createdAt: string | null;
|
|
8442
|
+
updatedAt: string | null;
|
|
8443
|
+
deletedAt?: string | null;
|
|
8444
|
+
}>;
|
|
8445
|
+
};
|
|
8446
|
+
type MiscGoogleBusinessGetReviewImportByIdData = {
|
|
8447
|
+
importId: string;
|
|
8448
|
+
};
|
|
8449
|
+
type MiscGoogleBusinessGetReviewImportByIdResponse = {
|
|
8450
|
+
id: string;
|
|
8451
|
+
teamId: string;
|
|
8452
|
+
socialAccountId: string;
|
|
8453
|
+
requestedCount: number;
|
|
8454
|
+
status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8455
|
+
reviewsImported: number;
|
|
8456
|
+
error?: string | null;
|
|
8457
|
+
rateLimitResetAt?: string | null;
|
|
8458
|
+
startedAt?: string | null;
|
|
8459
|
+
completedAt?: string | null;
|
|
8460
|
+
createdAt: string | null;
|
|
8461
|
+
updatedAt: string | null;
|
|
8462
|
+
deletedAt?: string | null;
|
|
8463
|
+
};
|
|
8464
|
+
type MiscGoogleBusinessGetReviewsData = {
|
|
8465
|
+
limit?: number;
|
|
8466
|
+
offset?: number | null;
|
|
8467
|
+
teamId: string;
|
|
8468
|
+
};
|
|
8469
|
+
type MiscGoogleBusinessGetReviewsResponse = {
|
|
8470
|
+
reviews: Array<{
|
|
8471
|
+
id: string;
|
|
8472
|
+
socialAccountId: string;
|
|
8473
|
+
teamId: string;
|
|
8474
|
+
externalReviewId: string;
|
|
8475
|
+
reviewerDisplayName?: string | null;
|
|
8476
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
8477
|
+
starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
|
|
8478
|
+
comment?: string | null;
|
|
8479
|
+
reviewReplyComment?: string | null;
|
|
8480
|
+
reviewReplyUpdatedAt?: string | null;
|
|
8481
|
+
createTime?: string | null;
|
|
8482
|
+
updateTime?: string | null;
|
|
8483
|
+
importedAt?: string | null;
|
|
8484
|
+
createdAt: string | null;
|
|
8485
|
+
updatedAt: string | null;
|
|
8486
|
+
deletedAt?: string | null;
|
|
8487
|
+
}>;
|
|
8488
|
+
total: number;
|
|
8489
|
+
limit: number;
|
|
8490
|
+
remainingCapacity: number;
|
|
8491
|
+
};
|
|
8492
|
+
type MiscGoogleBusinessGetReviewByIdData = {
|
|
8493
|
+
reviewId: string;
|
|
8494
|
+
teamId: string;
|
|
8495
|
+
};
|
|
8496
|
+
type MiscGoogleBusinessGetReviewByIdResponse = {
|
|
8497
|
+
id: string;
|
|
8498
|
+
socialAccountId: string;
|
|
8499
|
+
teamId: string;
|
|
8500
|
+
externalReviewId: string;
|
|
8501
|
+
reviewerDisplayName?: string | null;
|
|
8502
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
8503
|
+
starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
|
|
8504
|
+
comment?: string | null;
|
|
8505
|
+
reviewReplyComment?: string | null;
|
|
8506
|
+
reviewReplyUpdatedAt?: string | null;
|
|
8507
|
+
createTime?: string | null;
|
|
8508
|
+
updateTime?: string | null;
|
|
8509
|
+
importedAt?: string | null;
|
|
8510
|
+
createdAt: string | null;
|
|
8511
|
+
updatedAt: string | null;
|
|
8512
|
+
deletedAt?: string | null;
|
|
8513
|
+
};
|
|
8514
|
+
type MiscGoogleBusinessReplyToReviewData = {
|
|
8515
|
+
/**
|
|
8516
|
+
* Body
|
|
8517
|
+
*/
|
|
8518
|
+
requestBody?: {
|
|
8519
|
+
teamId: string;
|
|
8520
|
+
comment: string;
|
|
8521
|
+
};
|
|
8522
|
+
reviewId: string;
|
|
8523
|
+
};
|
|
8524
|
+
type MiscGoogleBusinessReplyToReviewResponse = {
|
|
8525
|
+
id: string;
|
|
8526
|
+
socialAccountId: string;
|
|
8527
|
+
teamId: string;
|
|
8528
|
+
externalReviewId: string;
|
|
8529
|
+
reviewerDisplayName?: string | null;
|
|
8530
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
8531
|
+
starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
|
|
8532
|
+
comment?: string | null;
|
|
8533
|
+
reviewReplyComment?: string | null;
|
|
8534
|
+
reviewReplyUpdatedAt?: string | null;
|
|
8535
|
+
createTime?: string | null;
|
|
8536
|
+
updateTime?: string | null;
|
|
8537
|
+
importedAt?: string | null;
|
|
8538
|
+
createdAt: string | null;
|
|
8539
|
+
updatedAt: string | null;
|
|
8540
|
+
deletedAt?: string | null;
|
|
8541
|
+
};
|
|
8542
|
+
type MiscGoogleBusinessDeleteReviewReplyData = {
|
|
8543
|
+
/**
|
|
8544
|
+
* Body
|
|
8545
|
+
*/
|
|
8546
|
+
requestBody?: {
|
|
8547
|
+
teamId: string;
|
|
8548
|
+
};
|
|
8549
|
+
reviewId: string;
|
|
8550
|
+
};
|
|
8551
|
+
type MiscGoogleBusinessDeleteReviewReplyResponse = {
|
|
8552
|
+
id: string;
|
|
8553
|
+
socialAccountId: string;
|
|
8554
|
+
teamId: string;
|
|
8555
|
+
externalReviewId: string;
|
|
8556
|
+
reviewerDisplayName?: string | null;
|
|
8557
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
8558
|
+
starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
|
|
8559
|
+
comment?: string | null;
|
|
8560
|
+
reviewReplyComment?: string | null;
|
|
8561
|
+
reviewReplyUpdatedAt?: string | null;
|
|
8562
|
+
createTime?: string | null;
|
|
8563
|
+
updateTime?: string | null;
|
|
8564
|
+
importedAt?: string | null;
|
|
8565
|
+
createdAt: string | null;
|
|
8566
|
+
updatedAt: string | null;
|
|
8567
|
+
deletedAt?: string | null;
|
|
8568
|
+
};
|
|
7871
8569
|
type MiscRedditGetPostRequirementsData = {
|
|
7872
8570
|
subreddit: string;
|
|
7873
8571
|
teamId: string;
|
|
@@ -8176,6 +8874,88 @@ type MiscDiscordDeleteMessageData = {
|
|
|
8176
8874
|
type MiscDiscordDeleteMessageResponse = {
|
|
8177
8875
|
success: boolean;
|
|
8178
8876
|
};
|
|
8877
|
+
type MiscTiktokGetCommercialMusicTrendingListData = {
|
|
8878
|
+
/**
|
|
8879
|
+
* Timeframe for popular tracks ranking.
|
|
8880
|
+
*/
|
|
8881
|
+
dateRange?: '1DAY' | '7DAY' | '30DAY';
|
|
8882
|
+
/**
|
|
8883
|
+
* Genre filter for commercial music results.
|
|
8884
|
+
*/
|
|
8885
|
+
genre?: 'ROCK' | 'POP' | 'LATIN' | 'METAL' | 'ELECTRONIC' | 'HIP_HOP/RAP' | 'ALTERNATIVE/INDIE' | 'R&B/SOUL' | 'COUNTRY' | 'CLASSICAL' | 'JAZZ' | 'CHILDHOOD' | 'ALTERNATIVE_HIP_HOP' | 'AMBIENT' | 'BOSSA_NOVA' | 'BRAZILIAN_FUNK_STYLE' | 'CHILL_BEATS' | 'CHILLOUT' | 'CHINESE_POP' | 'CHRISTIAN_MUSIC' | 'COUNTRY_POP' | 'DANCE_POP' | 'DISCO' | 'DJ' | 'DRUM&BASS' | 'DUBSTEP' | 'EDM' | 'FUNK' | 'HOUSE' | 'INDIE_POP' | 'J-POP' | 'K-POP' | 'LATIN_POP' | 'LO-FI' | 'OLD_SCHOOL' | 'PUNK' | 'RUSSIAN_POP' | 'SOUL' | 'SOUNDTRACK' | 'SYNTH_POP' | 'TECHNO' | 'TEEN_POP';
|
|
8886
|
+
teamId: string;
|
|
8887
|
+
};
|
|
8888
|
+
type MiscTiktokGetCommercialMusicTrendingListResponse = Array<{
|
|
8889
|
+
/**
|
|
8890
|
+
* The name of the commercial music track.
|
|
8891
|
+
*/
|
|
8892
|
+
commercial_music_name: string;
|
|
8893
|
+
/**
|
|
8894
|
+
* Track duration in seconds.
|
|
8895
|
+
*/
|
|
8896
|
+
duration: number;
|
|
8897
|
+
/**
|
|
8898
|
+
* Thumbnail image URL for the track.
|
|
8899
|
+
*/
|
|
8900
|
+
thumbnail_url: string;
|
|
8901
|
+
/**
|
|
8902
|
+
* Artist name.
|
|
8903
|
+
*/
|
|
8904
|
+
artist: string;
|
|
8905
|
+
/**
|
|
8906
|
+
* Track preview URL (valid for six hours).
|
|
8907
|
+
*/
|
|
8908
|
+
preview_url?: string | null;
|
|
8909
|
+
/**
|
|
8910
|
+
* List of genres associated with the track.
|
|
8911
|
+
*/
|
|
8912
|
+
genres?: Array<(string)>;
|
|
8913
|
+
/**
|
|
8914
|
+
* Current rank position in the selected region.
|
|
8915
|
+
*/
|
|
8916
|
+
rank_position: string;
|
|
8917
|
+
/**
|
|
8918
|
+
* Historical ranking data (up to 30 days).
|
|
8919
|
+
*/
|
|
8920
|
+
trending_history?: Array<{
|
|
8921
|
+
/**
|
|
8922
|
+
* Date in YYYY-MM-DD format.
|
|
8923
|
+
*/
|
|
8924
|
+
date: string;
|
|
8925
|
+
/**
|
|
8926
|
+
* Rank position on a specific date. Can be null if not ranked.
|
|
8927
|
+
*/
|
|
8928
|
+
rank_position_daily?: string | null;
|
|
8929
|
+
}>;
|
|
8930
|
+
full_duration_song_clip?: {
|
|
8931
|
+
/**
|
|
8932
|
+
* Track preview URL (valid for six hours).
|
|
8933
|
+
*/
|
|
8934
|
+
preview_url?: string | null;
|
|
8935
|
+
/**
|
|
8936
|
+
* Track duration in seconds.
|
|
8937
|
+
*/
|
|
8938
|
+
duration: number;
|
|
8939
|
+
/**
|
|
8940
|
+
* Track clip ID that can be used as music_sound_id in publish endpoint.
|
|
8941
|
+
*/
|
|
8942
|
+
song_clip_id: string;
|
|
8943
|
+
} | null;
|
|
8944
|
+
trending_song_clip?: {
|
|
8945
|
+
/**
|
|
8946
|
+
* Track preview URL (valid for six hours).
|
|
8947
|
+
*/
|
|
8948
|
+
preview_url?: string | null;
|
|
8949
|
+
/**
|
|
8950
|
+
* Track duration in seconds.
|
|
8951
|
+
*/
|
|
8952
|
+
duration: number;
|
|
8953
|
+
/**
|
|
8954
|
+
* Track clip ID that can be used as music_sound_id in publish endpoint.
|
|
8955
|
+
*/
|
|
8956
|
+
song_clip_id: string;
|
|
8957
|
+
} | null;
|
|
8958
|
+
}>;
|
|
8179
8959
|
type PostImportCreateData = {
|
|
8180
8960
|
/**
|
|
8181
8961
|
* Body
|
|
@@ -8185,6 +8965,9 @@ type PostImportCreateData = {
|
|
|
8185
8965
|
socialAccountType: 'FACEBOOK' | 'INSTAGRAM' | 'THREADS' | 'TIKTOK' | 'YOUTUBE' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'BLUESKY';
|
|
8186
8966
|
count: number;
|
|
8187
8967
|
withAnalytics?: boolean;
|
|
8968
|
+
importCarousels?: boolean;
|
|
8969
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL';
|
|
8970
|
+
mediaType?: 'VIDEO' | 'IMAGE';
|
|
8188
8971
|
};
|
|
8189
8972
|
};
|
|
8190
8973
|
type PostImportCreateResponse = {
|
|
@@ -8193,6 +8976,9 @@ type PostImportCreateResponse = {
|
|
|
8193
8976
|
socialAccountId: string;
|
|
8194
8977
|
requestedCount: number;
|
|
8195
8978
|
withAnalytics: boolean;
|
|
8979
|
+
importCarousels: boolean;
|
|
8980
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
8981
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
8196
8982
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8197
8983
|
postsImported: number;
|
|
8198
8984
|
analyticsImported: number;
|
|
@@ -8215,6 +9001,9 @@ type PostImportGetStatusResponse = {
|
|
|
8215
9001
|
socialAccountId: string;
|
|
8216
9002
|
requestedCount: number;
|
|
8217
9003
|
withAnalytics: boolean;
|
|
9004
|
+
importCarousels: boolean;
|
|
9005
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
9006
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
8218
9007
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8219
9008
|
postsImported: number;
|
|
8220
9009
|
analyticsImported: number;
|
|
@@ -8236,6 +9025,9 @@ type PostImportGetByIdResponse = {
|
|
|
8236
9025
|
socialAccountId: string;
|
|
8237
9026
|
requestedCount: number;
|
|
8238
9027
|
withAnalytics: boolean;
|
|
9028
|
+
importCarousels: boolean;
|
|
9029
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
9030
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
8239
9031
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8240
9032
|
postsImported: number;
|
|
8241
9033
|
analyticsImported: number;
|
|
@@ -8264,6 +9056,7 @@ type PostImportGetImportedPostsResponse = {
|
|
|
8264
9056
|
smallThumbnail?: string | null;
|
|
8265
9057
|
thumbnail?: string | null;
|
|
8266
9058
|
permalink?: string | null;
|
|
9059
|
+
extraData?: unknown;
|
|
8267
9060
|
subreddit?: string | null;
|
|
8268
9061
|
publishedAt?: string | null;
|
|
8269
9062
|
type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
|
|
@@ -8296,6 +9089,18 @@ type PostImportGetImportedPostsResponse = {
|
|
|
8296
9089
|
limit: number;
|
|
8297
9090
|
remainingCapacity: number;
|
|
8298
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
|
+
};
|
|
8299
9104
|
type PostImportRetryImportData = {
|
|
8300
9105
|
importId: string;
|
|
8301
9106
|
/**
|
|
@@ -8311,6 +9116,9 @@ type PostImportRetryImportResponse = {
|
|
|
8311
9116
|
socialAccountId: string;
|
|
8312
9117
|
requestedCount: number;
|
|
8313
9118
|
withAnalytics: boolean;
|
|
9119
|
+
importCarousels: boolean;
|
|
9120
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
9121
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
8314
9122
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
8315
9123
|
postsImported: number;
|
|
8316
9124
|
analyticsImported: number;
|
|
@@ -8413,6 +9221,7 @@ type $OpenApiTs = {
|
|
|
8413
9221
|
analyticsInterval?: number | null;
|
|
8414
9222
|
analyticsPostsInterval?: number | null;
|
|
8415
9223
|
showVerboseErrors: boolean;
|
|
9224
|
+
deleteAccountAfter: number;
|
|
8416
9225
|
createdAt: string | null;
|
|
8417
9226
|
updatedAt: string | null;
|
|
8418
9227
|
deletedAt?: string | null;
|
|
@@ -8813,6 +9622,7 @@ type $OpenApiTs = {
|
|
|
8813
9622
|
analyticsInterval?: number | null;
|
|
8814
9623
|
analyticsPostsInterval?: number | null;
|
|
8815
9624
|
showVerboseErrors: boolean;
|
|
9625
|
+
deleteAccountAfter: number;
|
|
8816
9626
|
createdAt: string | null;
|
|
8817
9627
|
updatedAt: string | null;
|
|
8818
9628
|
deletedAt?: string | null;
|
|
@@ -8871,6 +9681,7 @@ type $OpenApiTs = {
|
|
|
8871
9681
|
mastodonServerId?: string | null;
|
|
8872
9682
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
8873
9683
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
9684
|
+
deleteOn?: string | null;
|
|
8874
9685
|
createdAt: string | null;
|
|
8875
9686
|
updatedAt: string | null;
|
|
8876
9687
|
deletedAt?: string | null;
|
|
@@ -9120,6 +9931,7 @@ type $OpenApiTs = {
|
|
|
9120
9931
|
analyticsInterval?: number | null;
|
|
9121
9932
|
analyticsPostsInterval?: number | null;
|
|
9122
9933
|
showVerboseErrors: boolean;
|
|
9934
|
+
deleteAccountAfter: number;
|
|
9123
9935
|
createdAt: string | null;
|
|
9124
9936
|
updatedAt: string | null;
|
|
9125
9937
|
deletedAt?: string | null;
|
|
@@ -9178,6 +9990,7 @@ type $OpenApiTs = {
|
|
|
9178
9990
|
mastodonServerId?: string | null;
|
|
9179
9991
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
9180
9992
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
9993
|
+
deleteOn?: string | null;
|
|
9181
9994
|
createdAt: string | null;
|
|
9182
9995
|
updatedAt: string | null;
|
|
9183
9996
|
deletedAt?: string | null;
|
|
@@ -9418,6 +10231,7 @@ type $OpenApiTs = {
|
|
|
9418
10231
|
mastodonServerId?: string | null;
|
|
9419
10232
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
9420
10233
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10234
|
+
deleteOn?: string | null;
|
|
9421
10235
|
createdAt: string | null;
|
|
9422
10236
|
updatedAt: string | null;
|
|
9423
10237
|
deletedAt?: string | null;
|
|
@@ -9504,6 +10318,7 @@ type $OpenApiTs = {
|
|
|
9504
10318
|
mastodonServerId?: string | null;
|
|
9505
10319
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
9506
10320
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10321
|
+
deleteOn?: string | null;
|
|
9507
10322
|
createdAt: string | null;
|
|
9508
10323
|
updatedAt: string | null;
|
|
9509
10324
|
deletedAt?: string | null;
|
|
@@ -9551,9 +10366,9 @@ type $OpenApiTs = {
|
|
|
9551
10366
|
};
|
|
9552
10367
|
};
|
|
9553
10368
|
};
|
|
9554
|
-
'/api/v1/social-account/
|
|
10369
|
+
'/api/v1/social-account/unset-channel': {
|
|
9555
10370
|
post: {
|
|
9556
|
-
req:
|
|
10371
|
+
req: SocialAccountUnsetChannelData;
|
|
9557
10372
|
res: {
|
|
9558
10373
|
/**
|
|
9559
10374
|
* 200
|
|
@@ -9590,6 +10405,7 @@ type $OpenApiTs = {
|
|
|
9590
10405
|
mastodonServerId?: string | null;
|
|
9591
10406
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
9592
10407
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10408
|
+
deleteOn?: string | null;
|
|
9593
10409
|
createdAt: string | null;
|
|
9594
10410
|
updatedAt: string | null;
|
|
9595
10411
|
deletedAt?: string | null;
|
|
@@ -9637,15 +10453,102 @@ type $OpenApiTs = {
|
|
|
9637
10453
|
};
|
|
9638
10454
|
};
|
|
9639
10455
|
};
|
|
9640
|
-
'/api/v1/social-account/
|
|
10456
|
+
'/api/v1/social-account/refresh-channels': {
|
|
9641
10457
|
post: {
|
|
9642
|
-
req:
|
|
10458
|
+
req: SocialAccountRefreshChannelsData;
|
|
9643
10459
|
res: {
|
|
9644
10460
|
/**
|
|
9645
10461
|
* 200
|
|
9646
10462
|
*/
|
|
9647
10463
|
200: {
|
|
9648
|
-
|
|
10464
|
+
id: string;
|
|
10465
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
10466
|
+
teamId: string;
|
|
10467
|
+
username?: string | null;
|
|
10468
|
+
displayName?: string | null;
|
|
10469
|
+
avatarUrl?: string | null;
|
|
10470
|
+
externalId?: string | null;
|
|
10471
|
+
userUsername?: string | null;
|
|
10472
|
+
userDisplayName?: string | null;
|
|
10473
|
+
userId?: string | null;
|
|
10474
|
+
channels?: Array<{
|
|
10475
|
+
id: string;
|
|
10476
|
+
name?: string | null;
|
|
10477
|
+
username?: string | null;
|
|
10478
|
+
avatarUrl?: string | null;
|
|
10479
|
+
webhook?: {
|
|
10480
|
+
id?: string | null;
|
|
10481
|
+
name?: string | null;
|
|
10482
|
+
avatar?: string | null;
|
|
10483
|
+
url?: string | null;
|
|
10484
|
+
} | null;
|
|
10485
|
+
metadata?: {
|
|
10486
|
+
allowImages?: boolean | null;
|
|
10487
|
+
allowVideos?: boolean | null;
|
|
10488
|
+
allowGalleries?: boolean | null;
|
|
10489
|
+
linkFlairEnabled?: boolean | null;
|
|
10490
|
+
} | null;
|
|
10491
|
+
}> | null;
|
|
10492
|
+
mastodonServerId?: string | null;
|
|
10493
|
+
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
10494
|
+
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10495
|
+
deleteOn?: string | null;
|
|
10496
|
+
createdAt: string | null;
|
|
10497
|
+
updatedAt: string | null;
|
|
10498
|
+
deletedAt?: string | null;
|
|
10499
|
+
};
|
|
10500
|
+
/**
|
|
10501
|
+
* 400
|
|
10502
|
+
*/
|
|
10503
|
+
400: {
|
|
10504
|
+
message: string;
|
|
10505
|
+
issues?: Array<{
|
|
10506
|
+
message: string;
|
|
10507
|
+
path?: Array<(string | number)> | null;
|
|
10508
|
+
}> | null;
|
|
10509
|
+
};
|
|
10510
|
+
/**
|
|
10511
|
+
* 401
|
|
10512
|
+
*/
|
|
10513
|
+
401: {
|
|
10514
|
+
message: string;
|
|
10515
|
+
};
|
|
10516
|
+
/**
|
|
10517
|
+
* 403
|
|
10518
|
+
*/
|
|
10519
|
+
403: {
|
|
10520
|
+
message: string;
|
|
10521
|
+
};
|
|
10522
|
+
/**
|
|
10523
|
+
* 404
|
|
10524
|
+
*/
|
|
10525
|
+
404: {
|
|
10526
|
+
message: string;
|
|
10527
|
+
};
|
|
10528
|
+
/**
|
|
10529
|
+
* 429
|
|
10530
|
+
*/
|
|
10531
|
+
429: {
|
|
10532
|
+
message: string;
|
|
10533
|
+
};
|
|
10534
|
+
/**
|
|
10535
|
+
* 500
|
|
10536
|
+
*/
|
|
10537
|
+
500: {
|
|
10538
|
+
message: string;
|
|
10539
|
+
};
|
|
10540
|
+
};
|
|
10541
|
+
};
|
|
10542
|
+
};
|
|
10543
|
+
'/api/v1/social-account/create-portal-link': {
|
|
10544
|
+
post: {
|
|
10545
|
+
req: SocialAccountCreatePortalLinkData;
|
|
10546
|
+
res: {
|
|
10547
|
+
/**
|
|
10548
|
+
* 200
|
|
10549
|
+
*/
|
|
10550
|
+
200: {
|
|
10551
|
+
url: string;
|
|
9649
10552
|
};
|
|
9650
10553
|
/**
|
|
9651
10554
|
* 400
|
|
@@ -9729,6 +10632,7 @@ type $OpenApiTs = {
|
|
|
9729
10632
|
mastodonServerId?: string | null;
|
|
9730
10633
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
9731
10634
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
10635
|
+
deleteOn?: string | null;
|
|
9732
10636
|
createdAt: string | null;
|
|
9733
10637
|
updatedAt: string | null;
|
|
9734
10638
|
deletedAt?: string | null;
|
|
@@ -9776,6 +10680,101 @@ type $OpenApiTs = {
|
|
|
9776
10680
|
};
|
|
9777
10681
|
};
|
|
9778
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
|
+
};
|
|
9779
10778
|
'/api/v1/upload/': {
|
|
9780
10779
|
get: {
|
|
9781
10780
|
req: UploadGetListData;
|
|
@@ -10277,6 +11276,7 @@ type $OpenApiTs = {
|
|
|
10277
11276
|
TWITTER?: {
|
|
10278
11277
|
text?: string | null;
|
|
10279
11278
|
uploadIds?: Array<(string)> | null;
|
|
11279
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
10280
11280
|
} | null;
|
|
10281
11281
|
PINTEREST?: {
|
|
10282
11282
|
text?: string | null;
|
|
@@ -10347,6 +11347,12 @@ type $OpenApiTs = {
|
|
|
10347
11347
|
x: number;
|
|
10348
11348
|
y: number;
|
|
10349
11349
|
}> | null;
|
|
11350
|
+
/**
|
|
11351
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
11352
|
+
*/
|
|
11353
|
+
trialParams?: {
|
|
11354
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
11355
|
+
} | null;
|
|
10350
11356
|
} | null;
|
|
10351
11357
|
THREADS?: {
|
|
10352
11358
|
text?: string | null;
|
|
@@ -10361,6 +11367,7 @@ type $OpenApiTs = {
|
|
|
10361
11367
|
*/
|
|
10362
11368
|
thumbnail?: string | null;
|
|
10363
11369
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
11370
|
+
photoCoverIndex?: number | null;
|
|
10364
11371
|
/**
|
|
10365
11372
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
10366
11373
|
*/
|
|
@@ -10393,6 +11400,35 @@ type $OpenApiTs = {
|
|
|
10393
11400
|
* If set to true, TikTok will automatically add music to the photos.
|
|
10394
11401
|
*/
|
|
10395
11402
|
autoAddMusic?: boolean | null;
|
|
11403
|
+
/**
|
|
11404
|
+
* If set to true, upload post as draft.
|
|
11405
|
+
*/
|
|
11406
|
+
uploadToDraft?: boolean | null;
|
|
11407
|
+
/**
|
|
11408
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
11409
|
+
*/
|
|
11410
|
+
musicSoundInfo?: {
|
|
11411
|
+
/**
|
|
11412
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
11413
|
+
*/
|
|
11414
|
+
musicSoundId: string;
|
|
11415
|
+
/**
|
|
11416
|
+
* Commercial sound volume (0-100).
|
|
11417
|
+
*/
|
|
11418
|
+
musicSoundVolume?: number | null;
|
|
11419
|
+
/**
|
|
11420
|
+
* Starting point of the commercial sound in milliseconds.
|
|
11421
|
+
*/
|
|
11422
|
+
musicSoundStart?: number | null;
|
|
11423
|
+
/**
|
|
11424
|
+
* Ending point of the commercial sound in milliseconds.
|
|
11425
|
+
*/
|
|
11426
|
+
musicSoundEnd?: number | null;
|
|
11427
|
+
/**
|
|
11428
|
+
* Background volume of the original video sound (0-100).
|
|
11429
|
+
*/
|
|
11430
|
+
videoOriginalSoundVolume?: number | null;
|
|
11431
|
+
} | null;
|
|
10396
11432
|
} | null;
|
|
10397
11433
|
LINKEDIN?: {
|
|
10398
11434
|
text: string;
|
|
@@ -10709,6 +11745,7 @@ type $OpenApiTs = {
|
|
|
10709
11745
|
id?: string | null;
|
|
10710
11746
|
shareId?: string | null;
|
|
10711
11747
|
permalink?: string | null;
|
|
11748
|
+
status?: string | null;
|
|
10712
11749
|
} | null;
|
|
10713
11750
|
LINKEDIN?: {
|
|
10714
11751
|
id?: string | null;
|
|
@@ -10842,6 +11879,7 @@ type $OpenApiTs = {
|
|
|
10842
11879
|
mastodonServerId?: string | null;
|
|
10843
11880
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
10844
11881
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
11882
|
+
deleteOn?: string | null;
|
|
10845
11883
|
createdAt: string | null;
|
|
10846
11884
|
updatedAt: string | null;
|
|
10847
11885
|
deletedAt?: string | null;
|
|
@@ -10908,6 +11946,7 @@ type $OpenApiTs = {
|
|
|
10908
11946
|
TWITTER?: {
|
|
10909
11947
|
text?: string | null;
|
|
10910
11948
|
uploadIds?: Array<(string)> | null;
|
|
11949
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
10911
11950
|
} | null;
|
|
10912
11951
|
PINTEREST?: {
|
|
10913
11952
|
text?: string | null;
|
|
@@ -10978,6 +12017,12 @@ type $OpenApiTs = {
|
|
|
10978
12017
|
x: number;
|
|
10979
12018
|
y: number;
|
|
10980
12019
|
}> | null;
|
|
12020
|
+
/**
|
|
12021
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
12022
|
+
*/
|
|
12023
|
+
trialParams?: {
|
|
12024
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
12025
|
+
} | null;
|
|
10981
12026
|
} | null;
|
|
10982
12027
|
THREADS?: {
|
|
10983
12028
|
text?: string | null;
|
|
@@ -10992,6 +12037,7 @@ type $OpenApiTs = {
|
|
|
10992
12037
|
*/
|
|
10993
12038
|
thumbnail?: string | null;
|
|
10994
12039
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
12040
|
+
photoCoverIndex?: number | null;
|
|
10995
12041
|
/**
|
|
10996
12042
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
10997
12043
|
*/
|
|
@@ -11024,6 +12070,35 @@ type $OpenApiTs = {
|
|
|
11024
12070
|
* If set to true, TikTok will automatically add music to the photos.
|
|
11025
12071
|
*/
|
|
11026
12072
|
autoAddMusic?: boolean | null;
|
|
12073
|
+
/**
|
|
12074
|
+
* If set to true, upload post as draft.
|
|
12075
|
+
*/
|
|
12076
|
+
uploadToDraft?: boolean | null;
|
|
12077
|
+
/**
|
|
12078
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
12079
|
+
*/
|
|
12080
|
+
musicSoundInfo?: {
|
|
12081
|
+
/**
|
|
12082
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
12083
|
+
*/
|
|
12084
|
+
musicSoundId: string;
|
|
12085
|
+
/**
|
|
12086
|
+
* Commercial sound volume (0-100).
|
|
12087
|
+
*/
|
|
12088
|
+
musicSoundVolume?: number | null;
|
|
12089
|
+
/**
|
|
12090
|
+
* Starting point of the commercial sound in milliseconds.
|
|
12091
|
+
*/
|
|
12092
|
+
musicSoundStart?: number | null;
|
|
12093
|
+
/**
|
|
12094
|
+
* Ending point of the commercial sound in milliseconds.
|
|
12095
|
+
*/
|
|
12096
|
+
musicSoundEnd?: number | null;
|
|
12097
|
+
/**
|
|
12098
|
+
* Background volume of the original video sound (0-100).
|
|
12099
|
+
*/
|
|
12100
|
+
videoOriginalSoundVolume?: number | null;
|
|
12101
|
+
} | null;
|
|
11027
12102
|
} | null;
|
|
11028
12103
|
LINKEDIN?: {
|
|
11029
12104
|
text: string;
|
|
@@ -11340,6 +12415,7 @@ type $OpenApiTs = {
|
|
|
11340
12415
|
id?: string | null;
|
|
11341
12416
|
shareId?: string | null;
|
|
11342
12417
|
permalink?: string | null;
|
|
12418
|
+
status?: string | null;
|
|
11343
12419
|
} | null;
|
|
11344
12420
|
LINKEDIN?: {
|
|
11345
12421
|
id?: string | null;
|
|
@@ -11469,6 +12545,7 @@ type $OpenApiTs = {
|
|
|
11469
12545
|
TWITTER?: {
|
|
11470
12546
|
text?: string | null;
|
|
11471
12547
|
uploadIds?: Array<(string)> | null;
|
|
12548
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
11472
12549
|
} | null;
|
|
11473
12550
|
PINTEREST?: {
|
|
11474
12551
|
text?: string | null;
|
|
@@ -11539,6 +12616,12 @@ type $OpenApiTs = {
|
|
|
11539
12616
|
x: number;
|
|
11540
12617
|
y: number;
|
|
11541
12618
|
}> | null;
|
|
12619
|
+
/**
|
|
12620
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
12621
|
+
*/
|
|
12622
|
+
trialParams?: {
|
|
12623
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
12624
|
+
} | null;
|
|
11542
12625
|
} | null;
|
|
11543
12626
|
THREADS?: {
|
|
11544
12627
|
text?: string | null;
|
|
@@ -11553,6 +12636,7 @@ type $OpenApiTs = {
|
|
|
11553
12636
|
*/
|
|
11554
12637
|
thumbnail?: string | null;
|
|
11555
12638
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
12639
|
+
photoCoverIndex?: number | null;
|
|
11556
12640
|
/**
|
|
11557
12641
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
11558
12642
|
*/
|
|
@@ -11585,6 +12669,35 @@ type $OpenApiTs = {
|
|
|
11585
12669
|
* If set to true, TikTok will automatically add music to the photos.
|
|
11586
12670
|
*/
|
|
11587
12671
|
autoAddMusic?: boolean | null;
|
|
12672
|
+
/**
|
|
12673
|
+
* If set to true, upload post as draft.
|
|
12674
|
+
*/
|
|
12675
|
+
uploadToDraft?: boolean | null;
|
|
12676
|
+
/**
|
|
12677
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
12678
|
+
*/
|
|
12679
|
+
musicSoundInfo?: {
|
|
12680
|
+
/**
|
|
12681
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
12682
|
+
*/
|
|
12683
|
+
musicSoundId: string;
|
|
12684
|
+
/**
|
|
12685
|
+
* Commercial sound volume (0-100).
|
|
12686
|
+
*/
|
|
12687
|
+
musicSoundVolume?: number | null;
|
|
12688
|
+
/**
|
|
12689
|
+
* Starting point of the commercial sound in milliseconds.
|
|
12690
|
+
*/
|
|
12691
|
+
musicSoundStart?: number | null;
|
|
12692
|
+
/**
|
|
12693
|
+
* Ending point of the commercial sound in milliseconds.
|
|
12694
|
+
*/
|
|
12695
|
+
musicSoundEnd?: number | null;
|
|
12696
|
+
/**
|
|
12697
|
+
* Background volume of the original video sound (0-100).
|
|
12698
|
+
*/
|
|
12699
|
+
videoOriginalSoundVolume?: number | null;
|
|
12700
|
+
} | null;
|
|
11588
12701
|
} | null;
|
|
11589
12702
|
LINKEDIN?: {
|
|
11590
12703
|
text: string;
|
|
@@ -11901,6 +13014,7 @@ type $OpenApiTs = {
|
|
|
11901
13014
|
id?: string | null;
|
|
11902
13015
|
shareId?: string | null;
|
|
11903
13016
|
permalink?: string | null;
|
|
13017
|
+
status?: string | null;
|
|
11904
13018
|
} | null;
|
|
11905
13019
|
LINKEDIN?: {
|
|
11906
13020
|
id?: string | null;
|
|
@@ -12033,6 +13147,7 @@ type $OpenApiTs = {
|
|
|
12033
13147
|
TWITTER?: {
|
|
12034
13148
|
text?: string | null;
|
|
12035
13149
|
uploadIds?: Array<(string)> | null;
|
|
13150
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
12036
13151
|
} | null;
|
|
12037
13152
|
PINTEREST?: {
|
|
12038
13153
|
text?: string | null;
|
|
@@ -12103,6 +13218,12 @@ type $OpenApiTs = {
|
|
|
12103
13218
|
x: number;
|
|
12104
13219
|
y: number;
|
|
12105
13220
|
}> | null;
|
|
13221
|
+
/**
|
|
13222
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
13223
|
+
*/
|
|
13224
|
+
trialParams?: {
|
|
13225
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
13226
|
+
} | null;
|
|
12106
13227
|
} | null;
|
|
12107
13228
|
THREADS?: {
|
|
12108
13229
|
text?: string | null;
|
|
@@ -12117,6 +13238,7 @@ type $OpenApiTs = {
|
|
|
12117
13238
|
*/
|
|
12118
13239
|
thumbnail?: string | null;
|
|
12119
13240
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
13241
|
+
photoCoverIndex?: number | null;
|
|
12120
13242
|
/**
|
|
12121
13243
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
12122
13244
|
*/
|
|
@@ -12149,6 +13271,35 @@ type $OpenApiTs = {
|
|
|
12149
13271
|
* If set to true, TikTok will automatically add music to the photos.
|
|
12150
13272
|
*/
|
|
12151
13273
|
autoAddMusic?: boolean | null;
|
|
13274
|
+
/**
|
|
13275
|
+
* If set to true, upload post as draft.
|
|
13276
|
+
*/
|
|
13277
|
+
uploadToDraft?: boolean | null;
|
|
13278
|
+
/**
|
|
13279
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
13280
|
+
*/
|
|
13281
|
+
musicSoundInfo?: {
|
|
13282
|
+
/**
|
|
13283
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
13284
|
+
*/
|
|
13285
|
+
musicSoundId: string;
|
|
13286
|
+
/**
|
|
13287
|
+
* Commercial sound volume (0-100).
|
|
13288
|
+
*/
|
|
13289
|
+
musicSoundVolume?: number | null;
|
|
13290
|
+
/**
|
|
13291
|
+
* Starting point of the commercial sound in milliseconds.
|
|
13292
|
+
*/
|
|
13293
|
+
musicSoundStart?: number | null;
|
|
13294
|
+
/**
|
|
13295
|
+
* Ending point of the commercial sound in milliseconds.
|
|
13296
|
+
*/
|
|
13297
|
+
musicSoundEnd?: number | null;
|
|
13298
|
+
/**
|
|
13299
|
+
* Background volume of the original video sound (0-100).
|
|
13300
|
+
*/
|
|
13301
|
+
videoOriginalSoundVolume?: number | null;
|
|
13302
|
+
} | null;
|
|
12152
13303
|
} | null;
|
|
12153
13304
|
LINKEDIN?: {
|
|
12154
13305
|
text: string;
|
|
@@ -12465,6 +13616,7 @@ type $OpenApiTs = {
|
|
|
12465
13616
|
id?: string | null;
|
|
12466
13617
|
shareId?: string | null;
|
|
12467
13618
|
permalink?: string | null;
|
|
13619
|
+
status?: string | null;
|
|
12468
13620
|
} | null;
|
|
12469
13621
|
LINKEDIN?: {
|
|
12470
13622
|
id?: string | null;
|
|
@@ -12598,6 +13750,7 @@ type $OpenApiTs = {
|
|
|
12598
13750
|
mastodonServerId?: string | null;
|
|
12599
13751
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
12600
13752
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
13753
|
+
deleteOn?: string | null;
|
|
12601
13754
|
createdAt: string | null;
|
|
12602
13755
|
updatedAt: string | null;
|
|
12603
13756
|
deletedAt?: string | null;
|
|
@@ -12666,6 +13819,7 @@ type $OpenApiTs = {
|
|
|
12666
13819
|
TWITTER?: {
|
|
12667
13820
|
text?: string | null;
|
|
12668
13821
|
uploadIds?: Array<(string)> | null;
|
|
13822
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
12669
13823
|
} | null;
|
|
12670
13824
|
PINTEREST?: {
|
|
12671
13825
|
text?: string | null;
|
|
@@ -12736,6 +13890,12 @@ type $OpenApiTs = {
|
|
|
12736
13890
|
x: number;
|
|
12737
13891
|
y: number;
|
|
12738
13892
|
}> | null;
|
|
13893
|
+
/**
|
|
13894
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
13895
|
+
*/
|
|
13896
|
+
trialParams?: {
|
|
13897
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
13898
|
+
} | null;
|
|
12739
13899
|
} | null;
|
|
12740
13900
|
THREADS?: {
|
|
12741
13901
|
text?: string | null;
|
|
@@ -12750,6 +13910,7 @@ type $OpenApiTs = {
|
|
|
12750
13910
|
*/
|
|
12751
13911
|
thumbnail?: string | null;
|
|
12752
13912
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
13913
|
+
photoCoverIndex?: number | null;
|
|
12753
13914
|
/**
|
|
12754
13915
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
12755
13916
|
*/
|
|
@@ -12782,6 +13943,35 @@ type $OpenApiTs = {
|
|
|
12782
13943
|
* If set to true, TikTok will automatically add music to the photos.
|
|
12783
13944
|
*/
|
|
12784
13945
|
autoAddMusic?: boolean | null;
|
|
13946
|
+
/**
|
|
13947
|
+
* If set to true, upload post as draft.
|
|
13948
|
+
*/
|
|
13949
|
+
uploadToDraft?: boolean | null;
|
|
13950
|
+
/**
|
|
13951
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
13952
|
+
*/
|
|
13953
|
+
musicSoundInfo?: {
|
|
13954
|
+
/**
|
|
13955
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
13956
|
+
*/
|
|
13957
|
+
musicSoundId: string;
|
|
13958
|
+
/**
|
|
13959
|
+
* Commercial sound volume (0-100).
|
|
13960
|
+
*/
|
|
13961
|
+
musicSoundVolume?: number | null;
|
|
13962
|
+
/**
|
|
13963
|
+
* Starting point of the commercial sound in milliseconds.
|
|
13964
|
+
*/
|
|
13965
|
+
musicSoundStart?: number | null;
|
|
13966
|
+
/**
|
|
13967
|
+
* Ending point of the commercial sound in milliseconds.
|
|
13968
|
+
*/
|
|
13969
|
+
musicSoundEnd?: number | null;
|
|
13970
|
+
/**
|
|
13971
|
+
* Background volume of the original video sound (0-100).
|
|
13972
|
+
*/
|
|
13973
|
+
videoOriginalSoundVolume?: number | null;
|
|
13974
|
+
} | null;
|
|
12785
13975
|
} | null;
|
|
12786
13976
|
LINKEDIN?: {
|
|
12787
13977
|
text: string;
|
|
@@ -13098,6 +14288,7 @@ type $OpenApiTs = {
|
|
|
13098
14288
|
id?: string | null;
|
|
13099
14289
|
shareId?: string | null;
|
|
13100
14290
|
permalink?: string | null;
|
|
14291
|
+
status?: string | null;
|
|
13101
14292
|
} | null;
|
|
13102
14293
|
LINKEDIN?: {
|
|
13103
14294
|
id?: string | null;
|
|
@@ -13229,6 +14420,7 @@ type $OpenApiTs = {
|
|
|
13229
14420
|
TWITTER?: {
|
|
13230
14421
|
text?: string | null;
|
|
13231
14422
|
uploadIds?: Array<(string)> | null;
|
|
14423
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
13232
14424
|
} | null;
|
|
13233
14425
|
PINTEREST?: {
|
|
13234
14426
|
text?: string | null;
|
|
@@ -13299,6 +14491,12 @@ type $OpenApiTs = {
|
|
|
13299
14491
|
x: number;
|
|
13300
14492
|
y: number;
|
|
13301
14493
|
}> | null;
|
|
14494
|
+
/**
|
|
14495
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
14496
|
+
*/
|
|
14497
|
+
trialParams?: {
|
|
14498
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
14499
|
+
} | null;
|
|
13302
14500
|
} | null;
|
|
13303
14501
|
THREADS?: {
|
|
13304
14502
|
text?: string | null;
|
|
@@ -13313,6 +14511,7 @@ type $OpenApiTs = {
|
|
|
13313
14511
|
*/
|
|
13314
14512
|
thumbnail?: string | null;
|
|
13315
14513
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
14514
|
+
photoCoverIndex?: number | null;
|
|
13316
14515
|
/**
|
|
13317
14516
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
13318
14517
|
*/
|
|
@@ -13345,6 +14544,35 @@ type $OpenApiTs = {
|
|
|
13345
14544
|
* If set to true, TikTok will automatically add music to the photos.
|
|
13346
14545
|
*/
|
|
13347
14546
|
autoAddMusic?: boolean | null;
|
|
14547
|
+
/**
|
|
14548
|
+
* If set to true, upload post as draft.
|
|
14549
|
+
*/
|
|
14550
|
+
uploadToDraft?: boolean | null;
|
|
14551
|
+
/**
|
|
14552
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
14553
|
+
*/
|
|
14554
|
+
musicSoundInfo?: {
|
|
14555
|
+
/**
|
|
14556
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
14557
|
+
*/
|
|
14558
|
+
musicSoundId: string;
|
|
14559
|
+
/**
|
|
14560
|
+
* Commercial sound volume (0-100).
|
|
14561
|
+
*/
|
|
14562
|
+
musicSoundVolume?: number | null;
|
|
14563
|
+
/**
|
|
14564
|
+
* Starting point of the commercial sound in milliseconds.
|
|
14565
|
+
*/
|
|
14566
|
+
musicSoundStart?: number | null;
|
|
14567
|
+
/**
|
|
14568
|
+
* Ending point of the commercial sound in milliseconds.
|
|
14569
|
+
*/
|
|
14570
|
+
musicSoundEnd?: number | null;
|
|
14571
|
+
/**
|
|
14572
|
+
* Background volume of the original video sound (0-100).
|
|
14573
|
+
*/
|
|
14574
|
+
videoOriginalSoundVolume?: number | null;
|
|
14575
|
+
} | null;
|
|
13348
14576
|
} | null;
|
|
13349
14577
|
LINKEDIN?: {
|
|
13350
14578
|
text: string;
|
|
@@ -13661,6 +14889,7 @@ type $OpenApiTs = {
|
|
|
13661
14889
|
id?: string | null;
|
|
13662
14890
|
shareId?: string | null;
|
|
13663
14891
|
permalink?: string | null;
|
|
14892
|
+
status?: string | null;
|
|
13664
14893
|
} | null;
|
|
13665
14894
|
LINKEDIN?: {
|
|
13666
14895
|
id?: string | null;
|
|
@@ -13813,6 +15042,7 @@ type $OpenApiTs = {
|
|
|
13813
15042
|
mastodonServerId?: string | null;
|
|
13814
15043
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
13815
15044
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
15045
|
+
deleteOn?: string | null;
|
|
13816
15046
|
createdAt: string | null;
|
|
13817
15047
|
updatedAt: string | null;
|
|
13818
15048
|
deletedAt?: string | null;
|
|
@@ -13898,6 +15128,7 @@ type $OpenApiTs = {
|
|
|
13898
15128
|
TWITTER?: {
|
|
13899
15129
|
text?: string | null;
|
|
13900
15130
|
uploadIds?: Array<(string)> | null;
|
|
15131
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
13901
15132
|
} | null;
|
|
13902
15133
|
PINTEREST?: {
|
|
13903
15134
|
text?: string | null;
|
|
@@ -13968,6 +15199,12 @@ type $OpenApiTs = {
|
|
|
13968
15199
|
x: number;
|
|
13969
15200
|
y: number;
|
|
13970
15201
|
}> | null;
|
|
15202
|
+
/**
|
|
15203
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
15204
|
+
*/
|
|
15205
|
+
trialParams?: {
|
|
15206
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
15207
|
+
} | null;
|
|
13971
15208
|
} | null;
|
|
13972
15209
|
THREADS?: {
|
|
13973
15210
|
text?: string | null;
|
|
@@ -13982,6 +15219,7 @@ type $OpenApiTs = {
|
|
|
13982
15219
|
*/
|
|
13983
15220
|
thumbnail?: string | null;
|
|
13984
15221
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
15222
|
+
photoCoverIndex?: number | null;
|
|
13985
15223
|
/**
|
|
13986
15224
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
13987
15225
|
*/
|
|
@@ -14014,6 +15252,35 @@ type $OpenApiTs = {
|
|
|
14014
15252
|
* If set to true, TikTok will automatically add music to the photos.
|
|
14015
15253
|
*/
|
|
14016
15254
|
autoAddMusic?: boolean | null;
|
|
15255
|
+
/**
|
|
15256
|
+
* If set to true, upload post as draft.
|
|
15257
|
+
*/
|
|
15258
|
+
uploadToDraft?: boolean | null;
|
|
15259
|
+
/**
|
|
15260
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
15261
|
+
*/
|
|
15262
|
+
musicSoundInfo?: {
|
|
15263
|
+
/**
|
|
15264
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
15265
|
+
*/
|
|
15266
|
+
musicSoundId: string;
|
|
15267
|
+
/**
|
|
15268
|
+
* Commercial sound volume (0-100).
|
|
15269
|
+
*/
|
|
15270
|
+
musicSoundVolume?: number | null;
|
|
15271
|
+
/**
|
|
15272
|
+
* Starting point of the commercial sound in milliseconds.
|
|
15273
|
+
*/
|
|
15274
|
+
musicSoundStart?: number | null;
|
|
15275
|
+
/**
|
|
15276
|
+
* Ending point of the commercial sound in milliseconds.
|
|
15277
|
+
*/
|
|
15278
|
+
musicSoundEnd?: number | null;
|
|
15279
|
+
/**
|
|
15280
|
+
* Background volume of the original video sound (0-100).
|
|
15281
|
+
*/
|
|
15282
|
+
videoOriginalSoundVolume?: number | null;
|
|
15283
|
+
} | null;
|
|
14017
15284
|
} | null;
|
|
14018
15285
|
LINKEDIN?: {
|
|
14019
15286
|
text: string;
|
|
@@ -14330,6 +15597,7 @@ type $OpenApiTs = {
|
|
|
14330
15597
|
id?: string | null;
|
|
14331
15598
|
shareId?: string | null;
|
|
14332
15599
|
permalink?: string | null;
|
|
15600
|
+
status?: string | null;
|
|
14333
15601
|
} | null;
|
|
14334
15602
|
LINKEDIN?: {
|
|
14335
15603
|
id?: string | null;
|
|
@@ -14398,11 +15666,32 @@ type $OpenApiTs = {
|
|
|
14398
15666
|
createdAt: string | null;
|
|
14399
15667
|
updatedAt: string | null;
|
|
14400
15668
|
deletedAt?: string | null;
|
|
14401
|
-
};
|
|
14402
|
-
|
|
15669
|
+
} | null;
|
|
15670
|
+
profilePost?: {
|
|
14403
15671
|
id: string;
|
|
14404
|
-
|
|
14405
|
-
|
|
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;
|
|
15690
|
+
};
|
|
15691
|
+
items: Array<{
|
|
15692
|
+
id: string;
|
|
15693
|
+
profilePostId: string;
|
|
15694
|
+
impressions: number;
|
|
14406
15695
|
impressionsUnique: number;
|
|
14407
15696
|
views: number;
|
|
14408
15697
|
viewsUnique: number;
|
|
@@ -14501,6 +15790,7 @@ type $OpenApiTs = {
|
|
|
14501
15790
|
mastodonServerId?: string | null;
|
|
14502
15791
|
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
14503
15792
|
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
15793
|
+
deleteOn?: string | null;
|
|
14504
15794
|
createdAt: string | null;
|
|
14505
15795
|
updatedAt: string | null;
|
|
14506
15796
|
deletedAt?: string | null;
|
|
@@ -14579,6 +15869,7 @@ type $OpenApiTs = {
|
|
|
14579
15869
|
TWITTER?: {
|
|
14580
15870
|
text?: string | null;
|
|
14581
15871
|
uploadIds?: Array<(string)> | null;
|
|
15872
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
14582
15873
|
} | null;
|
|
14583
15874
|
PINTEREST?: {
|
|
14584
15875
|
text?: string | null;
|
|
@@ -14649,6 +15940,12 @@ type $OpenApiTs = {
|
|
|
14649
15940
|
x: number;
|
|
14650
15941
|
y: number;
|
|
14651
15942
|
}> | null;
|
|
15943
|
+
/**
|
|
15944
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
15945
|
+
*/
|
|
15946
|
+
trialParams?: {
|
|
15947
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
15948
|
+
} | null;
|
|
14652
15949
|
} | null;
|
|
14653
15950
|
THREADS?: {
|
|
14654
15951
|
text?: string | null;
|
|
@@ -14663,6 +15960,7 @@ type $OpenApiTs = {
|
|
|
14663
15960
|
*/
|
|
14664
15961
|
thumbnail?: string | null;
|
|
14665
15962
|
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
15963
|
+
photoCoverIndex?: number | null;
|
|
14666
15964
|
/**
|
|
14667
15965
|
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
14668
15966
|
*/
|
|
@@ -14695,6 +15993,35 @@ type $OpenApiTs = {
|
|
|
14695
15993
|
* If set to true, TikTok will automatically add music to the photos.
|
|
14696
15994
|
*/
|
|
14697
15995
|
autoAddMusic?: boolean | null;
|
|
15996
|
+
/**
|
|
15997
|
+
* If set to true, upload post as draft.
|
|
15998
|
+
*/
|
|
15999
|
+
uploadToDraft?: boolean | null;
|
|
16000
|
+
/**
|
|
16001
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
16002
|
+
*/
|
|
16003
|
+
musicSoundInfo?: {
|
|
16004
|
+
/**
|
|
16005
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
16006
|
+
*/
|
|
16007
|
+
musicSoundId: string;
|
|
16008
|
+
/**
|
|
16009
|
+
* Commercial sound volume (0-100).
|
|
16010
|
+
*/
|
|
16011
|
+
musicSoundVolume?: number | null;
|
|
16012
|
+
/**
|
|
16013
|
+
* Starting point of the commercial sound in milliseconds.
|
|
16014
|
+
*/
|
|
16015
|
+
musicSoundStart?: number | null;
|
|
16016
|
+
/**
|
|
16017
|
+
* Ending point of the commercial sound in milliseconds.
|
|
16018
|
+
*/
|
|
16019
|
+
musicSoundEnd?: number | null;
|
|
16020
|
+
/**
|
|
16021
|
+
* Background volume of the original video sound (0-100).
|
|
16022
|
+
*/
|
|
16023
|
+
videoOriginalSoundVolume?: number | null;
|
|
16024
|
+
} | null;
|
|
14698
16025
|
} | null;
|
|
14699
16026
|
LINKEDIN?: {
|
|
14700
16027
|
text: string;
|
|
@@ -15011,6 +16338,7 @@ type $OpenApiTs = {
|
|
|
15011
16338
|
id?: string | null;
|
|
15012
16339
|
shareId?: string | null;
|
|
15013
16340
|
permalink?: string | null;
|
|
16341
|
+
status?: string | null;
|
|
15014
16342
|
} | null;
|
|
15015
16343
|
LINKEDIN?: {
|
|
15016
16344
|
id?: string | null;
|
|
@@ -15079,6 +16407,27 @@ type $OpenApiTs = {
|
|
|
15079
16407
|
createdAt: string | null;
|
|
15080
16408
|
updatedAt: string | null;
|
|
15081
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;
|
|
15082
16431
|
};
|
|
15083
16432
|
items: Array<{
|
|
15084
16433
|
id: string;
|
|
@@ -17903,16 +19252,27 @@ type $OpenApiTs = {
|
|
|
17903
19252
|
};
|
|
17904
19253
|
};
|
|
17905
19254
|
};
|
|
17906
|
-
'/api/v1/misc/
|
|
17907
|
-
|
|
17908
|
-
req:
|
|
19255
|
+
'/api/v1/misc/google-business/reviews/import': {
|
|
19256
|
+
post: {
|
|
19257
|
+
req: MiscGoogleBusinessImportReviewsData;
|
|
17909
19258
|
res: {
|
|
17910
19259
|
/**
|
|
17911
|
-
*
|
|
19260
|
+
* 201
|
|
17912
19261
|
*/
|
|
17913
|
-
|
|
17914
|
-
|
|
17915
|
-
|
|
19262
|
+
201: {
|
|
19263
|
+
id: string;
|
|
19264
|
+
teamId: string;
|
|
19265
|
+
socialAccountId: string;
|
|
19266
|
+
requestedCount: number;
|
|
19267
|
+
status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
19268
|
+
reviewsImported: number;
|
|
19269
|
+
error?: string | null;
|
|
19270
|
+
rateLimitResetAt?: string | null;
|
|
19271
|
+
startedAt?: string | null;
|
|
19272
|
+
completedAt?: string | null;
|
|
19273
|
+
createdAt: string | null;
|
|
19274
|
+
updatedAt: string | null;
|
|
19275
|
+
deletedAt?: string | null;
|
|
17916
19276
|
};
|
|
17917
19277
|
/**
|
|
17918
19278
|
* 400
|
|
@@ -17942,6 +19302,12 @@ type $OpenApiTs = {
|
|
|
17942
19302
|
404: {
|
|
17943
19303
|
message: string;
|
|
17944
19304
|
};
|
|
19305
|
+
/**
|
|
19306
|
+
* 409
|
|
19307
|
+
*/
|
|
19308
|
+
409: {
|
|
19309
|
+
message: string;
|
|
19310
|
+
};
|
|
17945
19311
|
/**
|
|
17946
19312
|
* 429
|
|
17947
19313
|
*/
|
|
@@ -17956,24 +19322,29 @@ type $OpenApiTs = {
|
|
|
17956
19322
|
};
|
|
17957
19323
|
};
|
|
17958
19324
|
};
|
|
17959
|
-
};
|
|
17960
|
-
'/api/v1/misc/reddit/subreddit-flairs': {
|
|
17961
19325
|
get: {
|
|
17962
|
-
req:
|
|
19326
|
+
req: MiscGoogleBusinessGetReviewImportStatusData;
|
|
17963
19327
|
res: {
|
|
17964
19328
|
/**
|
|
17965
19329
|
* 200
|
|
17966
19330
|
*/
|
|
17967
|
-
200:
|
|
17968
|
-
|
|
17969
|
-
|
|
17970
|
-
|
|
17971
|
-
|
|
17972
|
-
|
|
17973
|
-
|
|
17974
|
-
|
|
17975
|
-
|
|
17976
|
-
|
|
19331
|
+
200: {
|
|
19332
|
+
imports: Array<{
|
|
19333
|
+
id: string;
|
|
19334
|
+
teamId: string;
|
|
19335
|
+
socialAccountId: string;
|
|
19336
|
+
requestedCount: number;
|
|
19337
|
+
status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
19338
|
+
reviewsImported: number;
|
|
19339
|
+
error?: string | null;
|
|
19340
|
+
rateLimitResetAt?: string | null;
|
|
19341
|
+
startedAt?: string | null;
|
|
19342
|
+
completedAt?: string | null;
|
|
19343
|
+
createdAt: string | null;
|
|
19344
|
+
updatedAt: string | null;
|
|
19345
|
+
deletedAt?: string | null;
|
|
19346
|
+
}>;
|
|
19347
|
+
};
|
|
17977
19348
|
/**
|
|
17978
19349
|
* 400
|
|
17979
19350
|
*/
|
|
@@ -18017,16 +19388,27 @@ type $OpenApiTs = {
|
|
|
18017
19388
|
};
|
|
18018
19389
|
};
|
|
18019
19390
|
};
|
|
18020
|
-
'/api/v1/misc/
|
|
18021
|
-
|
|
18022
|
-
req:
|
|
19391
|
+
'/api/v1/misc/google-business/reviews/import/{importId}': {
|
|
19392
|
+
get: {
|
|
19393
|
+
req: MiscGoogleBusinessGetReviewImportByIdData;
|
|
18023
19394
|
res: {
|
|
18024
19395
|
/**
|
|
18025
19396
|
* 200
|
|
18026
19397
|
*/
|
|
18027
19398
|
200: {
|
|
18028
|
-
|
|
18029
|
-
|
|
19399
|
+
id: string;
|
|
19400
|
+
teamId: string;
|
|
19401
|
+
socialAccountId: string;
|
|
19402
|
+
requestedCount: number;
|
|
19403
|
+
status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
19404
|
+
reviewsImported: number;
|
|
19405
|
+
error?: string | null;
|
|
19406
|
+
rateLimitResetAt?: string | null;
|
|
19407
|
+
startedAt?: string | null;
|
|
19408
|
+
completedAt?: string | null;
|
|
19409
|
+
createdAt: string | null;
|
|
19410
|
+
updatedAt: string | null;
|
|
19411
|
+
deletedAt?: string | null;
|
|
18030
19412
|
};
|
|
18031
19413
|
/**
|
|
18032
19414
|
* 400
|
|
@@ -18070,14 +19452,36 @@ type $OpenApiTs = {
|
|
|
18070
19452
|
};
|
|
18071
19453
|
};
|
|
18072
19454
|
};
|
|
18073
|
-
|
|
18074
|
-
|
|
19455
|
+
};
|
|
19456
|
+
'/api/v1/misc/google-business/reviews': {
|
|
19457
|
+
get: {
|
|
19458
|
+
req: MiscGoogleBusinessGetReviewsData;
|
|
18075
19459
|
res: {
|
|
18076
19460
|
/**
|
|
18077
19461
|
* 200
|
|
18078
19462
|
*/
|
|
18079
19463
|
200: {
|
|
18080
|
-
|
|
19464
|
+
reviews: Array<{
|
|
19465
|
+
id: string;
|
|
19466
|
+
socialAccountId: string;
|
|
19467
|
+
teamId: string;
|
|
19468
|
+
externalReviewId: string;
|
|
19469
|
+
reviewerDisplayName?: string | null;
|
|
19470
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
19471
|
+
starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
|
|
19472
|
+
comment?: string | null;
|
|
19473
|
+
reviewReplyComment?: string | null;
|
|
19474
|
+
reviewReplyUpdatedAt?: string | null;
|
|
19475
|
+
createTime?: string | null;
|
|
19476
|
+
updateTime?: string | null;
|
|
19477
|
+
importedAt?: string | null;
|
|
19478
|
+
createdAt: string | null;
|
|
19479
|
+
updatedAt: string | null;
|
|
19480
|
+
deletedAt?: string | null;
|
|
19481
|
+
}>;
|
|
19482
|
+
total: number;
|
|
19483
|
+
limit: number;
|
|
19484
|
+
remainingCapacity: number;
|
|
18081
19485
|
};
|
|
18082
19486
|
/**
|
|
18083
19487
|
* 400
|
|
@@ -18122,51 +19526,30 @@ type $OpenApiTs = {
|
|
|
18122
19526
|
};
|
|
18123
19527
|
};
|
|
18124
19528
|
};
|
|
18125
|
-
'/api/v1/misc/
|
|
19529
|
+
'/api/v1/misc/google-business/reviews/{reviewId}': {
|
|
18126
19530
|
get: {
|
|
18127
|
-
req:
|
|
19531
|
+
req: MiscGoogleBusinessGetReviewByIdData;
|
|
18128
19532
|
res: {
|
|
18129
19533
|
/**
|
|
18130
19534
|
* 200
|
|
18131
19535
|
*/
|
|
18132
19536
|
200: {
|
|
18133
|
-
|
|
18134
|
-
|
|
18135
|
-
|
|
18136
|
-
|
|
18137
|
-
|
|
18138
|
-
|
|
18139
|
-
|
|
18140
|
-
|
|
18141
|
-
|
|
18142
|
-
|
|
18143
|
-
|
|
18144
|
-
|
|
18145
|
-
|
|
18146
|
-
|
|
18147
|
-
|
|
18148
|
-
|
|
18149
|
-
/**
|
|
18150
|
-
* Number of followers
|
|
18151
|
-
*/
|
|
18152
|
-
followers_count: number;
|
|
18153
|
-
/**
|
|
18154
|
-
* Number of media posts
|
|
18155
|
-
*/
|
|
18156
|
-
media_count: number;
|
|
18157
|
-
/**
|
|
18158
|
-
* Profile picture URL if available
|
|
18159
|
-
*/
|
|
18160
|
-
profile_picture_url?: string;
|
|
18161
|
-
/**
|
|
18162
|
-
* User biography if available
|
|
18163
|
-
*/
|
|
18164
|
-
biography?: string;
|
|
18165
|
-
/**
|
|
18166
|
-
* Full name if available
|
|
18167
|
-
*/
|
|
18168
|
-
name?: string;
|
|
18169
|
-
} | null;
|
|
19537
|
+
id: string;
|
|
19538
|
+
socialAccountId: string;
|
|
19539
|
+
teamId: string;
|
|
19540
|
+
externalReviewId: string;
|
|
19541
|
+
reviewerDisplayName?: string | null;
|
|
19542
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
19543
|
+
starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
|
|
19544
|
+
comment?: string | null;
|
|
19545
|
+
reviewReplyComment?: string | null;
|
|
19546
|
+
reviewReplyUpdatedAt?: string | null;
|
|
19547
|
+
createTime?: string | null;
|
|
19548
|
+
updateTime?: string | null;
|
|
19549
|
+
importedAt?: string | null;
|
|
19550
|
+
createdAt: string | null;
|
|
19551
|
+
updatedAt: string | null;
|
|
19552
|
+
deletedAt?: string | null;
|
|
18170
19553
|
};
|
|
18171
19554
|
/**
|
|
18172
19555
|
* 400
|
|
@@ -18211,16 +19594,30 @@ type $OpenApiTs = {
|
|
|
18211
19594
|
};
|
|
18212
19595
|
};
|
|
18213
19596
|
};
|
|
18214
|
-
'/api/v1/misc/
|
|
18215
|
-
|
|
18216
|
-
req:
|
|
19597
|
+
'/api/v1/misc/google-business/reviews/{reviewId}/reply': {
|
|
19598
|
+
put: {
|
|
19599
|
+
req: MiscGoogleBusinessReplyToReviewData;
|
|
18217
19600
|
res: {
|
|
18218
19601
|
/**
|
|
18219
19602
|
* 200
|
|
18220
19603
|
*/
|
|
18221
19604
|
200: {
|
|
18222
|
-
|
|
18223
|
-
|
|
19605
|
+
id: string;
|
|
19606
|
+
socialAccountId: string;
|
|
19607
|
+
teamId: string;
|
|
19608
|
+
externalReviewId: string;
|
|
19609
|
+
reviewerDisplayName?: string | null;
|
|
19610
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
19611
|
+
starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
|
|
19612
|
+
comment?: string | null;
|
|
19613
|
+
reviewReplyComment?: string | null;
|
|
19614
|
+
reviewReplyUpdatedAt?: string | null;
|
|
19615
|
+
createTime?: string | null;
|
|
19616
|
+
updateTime?: string | null;
|
|
19617
|
+
importedAt?: string | null;
|
|
19618
|
+
createdAt: string | null;
|
|
19619
|
+
updatedAt: string | null;
|
|
19620
|
+
deletedAt?: string | null;
|
|
18224
19621
|
};
|
|
18225
19622
|
/**
|
|
18226
19623
|
* 400
|
|
@@ -18265,13 +19662,28 @@ type $OpenApiTs = {
|
|
|
18265
19662
|
};
|
|
18266
19663
|
};
|
|
18267
19664
|
delete: {
|
|
18268
|
-
req:
|
|
19665
|
+
req: MiscGoogleBusinessDeleteReviewReplyData;
|
|
18269
19666
|
res: {
|
|
18270
19667
|
/**
|
|
18271
19668
|
* 200
|
|
18272
19669
|
*/
|
|
18273
19670
|
200: {
|
|
18274
|
-
|
|
19671
|
+
id: string;
|
|
19672
|
+
socialAccountId: string;
|
|
19673
|
+
teamId: string;
|
|
19674
|
+
externalReviewId: string;
|
|
19675
|
+
reviewerDisplayName?: string | null;
|
|
19676
|
+
reviewerProfilePhotoUrl?: string | null;
|
|
19677
|
+
starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
|
|
19678
|
+
comment?: string | null;
|
|
19679
|
+
reviewReplyComment?: string | null;
|
|
19680
|
+
reviewReplyUpdatedAt?: string | null;
|
|
19681
|
+
createTime?: string | null;
|
|
19682
|
+
updateTime?: string | null;
|
|
19683
|
+
importedAt?: string | null;
|
|
19684
|
+
createdAt: string | null;
|
|
19685
|
+
updatedAt: string | null;
|
|
19686
|
+
deletedAt?: string | null;
|
|
18275
19687
|
};
|
|
18276
19688
|
/**
|
|
18277
19689
|
* 400
|
|
@@ -18316,16 +19728,16 @@ type $OpenApiTs = {
|
|
|
18316
19728
|
};
|
|
18317
19729
|
};
|
|
18318
19730
|
};
|
|
18319
|
-
'/api/v1/misc/
|
|
18320
|
-
|
|
18321
|
-
req:
|
|
19731
|
+
'/api/v1/misc/reddit/post-requirements': {
|
|
19732
|
+
get: {
|
|
19733
|
+
req: MiscRedditGetPostRequirementsData;
|
|
18322
19734
|
res: {
|
|
18323
19735
|
/**
|
|
18324
19736
|
* 200
|
|
18325
19737
|
*/
|
|
18326
19738
|
200: {
|
|
18327
|
-
|
|
18328
|
-
|
|
19739
|
+
isFlairRequired: boolean;
|
|
19740
|
+
isFlairEnabled: boolean;
|
|
18329
19741
|
};
|
|
18330
19742
|
/**
|
|
18331
19743
|
* 400
|
|
@@ -18369,15 +19781,24 @@ type $OpenApiTs = {
|
|
|
18369
19781
|
};
|
|
18370
19782
|
};
|
|
18371
19783
|
};
|
|
18372
|
-
|
|
18373
|
-
|
|
19784
|
+
};
|
|
19785
|
+
'/api/v1/misc/reddit/subreddit-flairs': {
|
|
19786
|
+
get: {
|
|
19787
|
+
req: MiscRedditGetSubredditFlairsData;
|
|
18374
19788
|
res: {
|
|
18375
19789
|
/**
|
|
18376
19790
|
* 200
|
|
18377
19791
|
*/
|
|
18378
|
-
200: {
|
|
18379
|
-
|
|
18380
|
-
|
|
19792
|
+
200: Array<{
|
|
19793
|
+
id?: string;
|
|
19794
|
+
text?: string;
|
|
19795
|
+
cssClass?: string;
|
|
19796
|
+
textColor?: string;
|
|
19797
|
+
backgroundColor?: string;
|
|
19798
|
+
modOnly?: boolean;
|
|
19799
|
+
allowableContent?: string;
|
|
19800
|
+
maxEmojis?: number;
|
|
19801
|
+
}>;
|
|
18381
19802
|
/**
|
|
18382
19803
|
* 400
|
|
18383
19804
|
*/
|
|
@@ -18421,9 +19842,9 @@ type $OpenApiTs = {
|
|
|
18421
19842
|
};
|
|
18422
19843
|
};
|
|
18423
19844
|
};
|
|
18424
|
-
'/api/v1/misc/
|
|
19845
|
+
'/api/v1/misc/reddit/post': {
|
|
18425
19846
|
patch: {
|
|
18426
|
-
req:
|
|
19847
|
+
req: MiscRedditEditPostData;
|
|
18427
19848
|
res: {
|
|
18428
19849
|
/**
|
|
18429
19850
|
* 200
|
|
@@ -18475,7 +19896,7 @@ type $OpenApiTs = {
|
|
|
18475
19896
|
};
|
|
18476
19897
|
};
|
|
18477
19898
|
delete: {
|
|
18478
|
-
req:
|
|
19899
|
+
req: MiscRedditDeletePostData;
|
|
18479
19900
|
res: {
|
|
18480
19901
|
/**
|
|
18481
19902
|
* 200
|
|
@@ -18526,27 +19947,431 @@ type $OpenApiTs = {
|
|
|
18526
19947
|
};
|
|
18527
19948
|
};
|
|
18528
19949
|
};
|
|
18529
|
-
'/api/v1/misc/
|
|
18530
|
-
|
|
18531
|
-
req:
|
|
19950
|
+
'/api/v1/misc/instagram/tags': {
|
|
19951
|
+
get: {
|
|
19952
|
+
req: MiscInstagramBusinessDiscoveryData;
|
|
18532
19953
|
res: {
|
|
18533
19954
|
/**
|
|
18534
19955
|
* 200
|
|
18535
19956
|
*/
|
|
18536
19957
|
200: {
|
|
18537
|
-
|
|
18538
|
-
|
|
18539
|
-
|
|
18540
|
-
|
|
18541
|
-
|
|
18542
|
-
|
|
18543
|
-
|
|
18544
|
-
|
|
18545
|
-
|
|
18546
|
-
|
|
18547
|
-
|
|
18548
|
-
|
|
18549
|
-
|
|
19958
|
+
/**
|
|
19959
|
+
* Whether the user exists and is a Business/Creator account
|
|
19960
|
+
*/
|
|
19961
|
+
exists: boolean;
|
|
19962
|
+
/**
|
|
19963
|
+
* User data if exists, null otherwise
|
|
19964
|
+
*/
|
|
19965
|
+
data: {
|
|
19966
|
+
/**
|
|
19967
|
+
* Instagram User ID
|
|
19968
|
+
*/
|
|
19969
|
+
id: string;
|
|
19970
|
+
/**
|
|
19971
|
+
* Instagram username
|
|
19972
|
+
*/
|
|
19973
|
+
username: string;
|
|
19974
|
+
/**
|
|
19975
|
+
* Number of followers
|
|
19976
|
+
*/
|
|
19977
|
+
followers_count: number;
|
|
19978
|
+
/**
|
|
19979
|
+
* Number of media posts
|
|
19980
|
+
*/
|
|
19981
|
+
media_count: number;
|
|
19982
|
+
/**
|
|
19983
|
+
* Profile picture URL if available
|
|
19984
|
+
*/
|
|
19985
|
+
profile_picture_url?: string;
|
|
19986
|
+
/**
|
|
19987
|
+
* User biography if available
|
|
19988
|
+
*/
|
|
19989
|
+
biography?: string;
|
|
19990
|
+
/**
|
|
19991
|
+
* Full name if available
|
|
19992
|
+
*/
|
|
19993
|
+
name?: string;
|
|
19994
|
+
} | null;
|
|
19995
|
+
};
|
|
19996
|
+
/**
|
|
19997
|
+
* 400
|
|
19998
|
+
*/
|
|
19999
|
+
400: {
|
|
20000
|
+
message: string;
|
|
20001
|
+
issues?: Array<{
|
|
20002
|
+
message: string;
|
|
20003
|
+
path?: Array<(string | number)> | null;
|
|
20004
|
+
}> | null;
|
|
20005
|
+
};
|
|
20006
|
+
/**
|
|
20007
|
+
* 401
|
|
20008
|
+
*/
|
|
20009
|
+
401: {
|
|
20010
|
+
message: string;
|
|
20011
|
+
};
|
|
20012
|
+
/**
|
|
20013
|
+
* 403
|
|
20014
|
+
*/
|
|
20015
|
+
403: {
|
|
20016
|
+
message: string;
|
|
20017
|
+
};
|
|
20018
|
+
/**
|
|
20019
|
+
* 404
|
|
20020
|
+
*/
|
|
20021
|
+
404: {
|
|
20022
|
+
message: string;
|
|
20023
|
+
};
|
|
20024
|
+
/**
|
|
20025
|
+
* 429
|
|
20026
|
+
*/
|
|
20027
|
+
429: {
|
|
20028
|
+
message: string;
|
|
20029
|
+
};
|
|
20030
|
+
/**
|
|
20031
|
+
* 500
|
|
20032
|
+
*/
|
|
20033
|
+
500: {
|
|
20034
|
+
message: string;
|
|
20035
|
+
};
|
|
20036
|
+
};
|
|
20037
|
+
};
|
|
20038
|
+
};
|
|
20039
|
+
'/api/v1/misc/facebook/post': {
|
|
20040
|
+
patch: {
|
|
20041
|
+
req: MiscFacebookEditPostData;
|
|
20042
|
+
res: {
|
|
20043
|
+
/**
|
|
20044
|
+
* 200
|
|
20045
|
+
*/
|
|
20046
|
+
200: {
|
|
20047
|
+
success: boolean;
|
|
20048
|
+
permalink: string;
|
|
20049
|
+
};
|
|
20050
|
+
/**
|
|
20051
|
+
* 400
|
|
20052
|
+
*/
|
|
20053
|
+
400: {
|
|
20054
|
+
message: string;
|
|
20055
|
+
issues?: Array<{
|
|
20056
|
+
message: string;
|
|
20057
|
+
path?: Array<(string | number)> | null;
|
|
20058
|
+
}> | null;
|
|
20059
|
+
};
|
|
20060
|
+
/**
|
|
20061
|
+
* 401
|
|
20062
|
+
*/
|
|
20063
|
+
401: {
|
|
20064
|
+
message: string;
|
|
20065
|
+
};
|
|
20066
|
+
/**
|
|
20067
|
+
* 403
|
|
20068
|
+
*/
|
|
20069
|
+
403: {
|
|
20070
|
+
message: string;
|
|
20071
|
+
};
|
|
20072
|
+
/**
|
|
20073
|
+
* 404
|
|
20074
|
+
*/
|
|
20075
|
+
404: {
|
|
20076
|
+
message: string;
|
|
20077
|
+
};
|
|
20078
|
+
/**
|
|
20079
|
+
* 429
|
|
20080
|
+
*/
|
|
20081
|
+
429: {
|
|
20082
|
+
message: string;
|
|
20083
|
+
};
|
|
20084
|
+
/**
|
|
20085
|
+
* 500
|
|
20086
|
+
*/
|
|
20087
|
+
500: {
|
|
20088
|
+
message: string;
|
|
20089
|
+
};
|
|
20090
|
+
};
|
|
20091
|
+
};
|
|
20092
|
+
delete: {
|
|
20093
|
+
req: MiscFacebookDeletePostData;
|
|
20094
|
+
res: {
|
|
20095
|
+
/**
|
|
20096
|
+
* 200
|
|
20097
|
+
*/
|
|
20098
|
+
200: {
|
|
20099
|
+
success: boolean;
|
|
20100
|
+
};
|
|
20101
|
+
/**
|
|
20102
|
+
* 400
|
|
20103
|
+
*/
|
|
20104
|
+
400: {
|
|
20105
|
+
message: string;
|
|
20106
|
+
issues?: Array<{
|
|
20107
|
+
message: string;
|
|
20108
|
+
path?: Array<(string | number)> | null;
|
|
20109
|
+
}> | null;
|
|
20110
|
+
};
|
|
20111
|
+
/**
|
|
20112
|
+
* 401
|
|
20113
|
+
*/
|
|
20114
|
+
401: {
|
|
20115
|
+
message: string;
|
|
20116
|
+
};
|
|
20117
|
+
/**
|
|
20118
|
+
* 403
|
|
20119
|
+
*/
|
|
20120
|
+
403: {
|
|
20121
|
+
message: string;
|
|
20122
|
+
};
|
|
20123
|
+
/**
|
|
20124
|
+
* 404
|
|
20125
|
+
*/
|
|
20126
|
+
404: {
|
|
20127
|
+
message: string;
|
|
20128
|
+
};
|
|
20129
|
+
/**
|
|
20130
|
+
* 429
|
|
20131
|
+
*/
|
|
20132
|
+
429: {
|
|
20133
|
+
message: string;
|
|
20134
|
+
};
|
|
20135
|
+
/**
|
|
20136
|
+
* 500
|
|
20137
|
+
*/
|
|
20138
|
+
500: {
|
|
20139
|
+
message: string;
|
|
20140
|
+
};
|
|
20141
|
+
};
|
|
20142
|
+
};
|
|
20143
|
+
};
|
|
20144
|
+
'/api/v1/misc/pinterest/pin': {
|
|
20145
|
+
patch: {
|
|
20146
|
+
req: MiscPinterestEditPinData;
|
|
20147
|
+
res: {
|
|
20148
|
+
/**
|
|
20149
|
+
* 200
|
|
20150
|
+
*/
|
|
20151
|
+
200: {
|
|
20152
|
+
success: boolean;
|
|
20153
|
+
permalink: string;
|
|
20154
|
+
};
|
|
20155
|
+
/**
|
|
20156
|
+
* 400
|
|
20157
|
+
*/
|
|
20158
|
+
400: {
|
|
20159
|
+
message: string;
|
|
20160
|
+
issues?: Array<{
|
|
20161
|
+
message: string;
|
|
20162
|
+
path?: Array<(string | number)> | null;
|
|
20163
|
+
}> | null;
|
|
20164
|
+
};
|
|
20165
|
+
/**
|
|
20166
|
+
* 401
|
|
20167
|
+
*/
|
|
20168
|
+
401: {
|
|
20169
|
+
message: string;
|
|
20170
|
+
};
|
|
20171
|
+
/**
|
|
20172
|
+
* 403
|
|
20173
|
+
*/
|
|
20174
|
+
403: {
|
|
20175
|
+
message: string;
|
|
20176
|
+
};
|
|
20177
|
+
/**
|
|
20178
|
+
* 404
|
|
20179
|
+
*/
|
|
20180
|
+
404: {
|
|
20181
|
+
message: string;
|
|
20182
|
+
};
|
|
20183
|
+
/**
|
|
20184
|
+
* 429
|
|
20185
|
+
*/
|
|
20186
|
+
429: {
|
|
20187
|
+
message: string;
|
|
20188
|
+
};
|
|
20189
|
+
/**
|
|
20190
|
+
* 500
|
|
20191
|
+
*/
|
|
20192
|
+
500: {
|
|
20193
|
+
message: string;
|
|
20194
|
+
};
|
|
20195
|
+
};
|
|
20196
|
+
};
|
|
20197
|
+
delete: {
|
|
20198
|
+
req: MiscPinterestDeletePinData;
|
|
20199
|
+
res: {
|
|
20200
|
+
/**
|
|
20201
|
+
* 200
|
|
20202
|
+
*/
|
|
20203
|
+
200: {
|
|
20204
|
+
success: boolean;
|
|
20205
|
+
};
|
|
20206
|
+
/**
|
|
20207
|
+
* 400
|
|
20208
|
+
*/
|
|
20209
|
+
400: {
|
|
20210
|
+
message: string;
|
|
20211
|
+
issues?: Array<{
|
|
20212
|
+
message: string;
|
|
20213
|
+
path?: Array<(string | number)> | null;
|
|
20214
|
+
}> | null;
|
|
20215
|
+
};
|
|
20216
|
+
/**
|
|
20217
|
+
* 401
|
|
20218
|
+
*/
|
|
20219
|
+
401: {
|
|
20220
|
+
message: string;
|
|
20221
|
+
};
|
|
20222
|
+
/**
|
|
20223
|
+
* 403
|
|
20224
|
+
*/
|
|
20225
|
+
403: {
|
|
20226
|
+
message: string;
|
|
20227
|
+
};
|
|
20228
|
+
/**
|
|
20229
|
+
* 404
|
|
20230
|
+
*/
|
|
20231
|
+
404: {
|
|
20232
|
+
message: string;
|
|
20233
|
+
};
|
|
20234
|
+
/**
|
|
20235
|
+
* 429
|
|
20236
|
+
*/
|
|
20237
|
+
429: {
|
|
20238
|
+
message: string;
|
|
20239
|
+
};
|
|
20240
|
+
/**
|
|
20241
|
+
* 500
|
|
20242
|
+
*/
|
|
20243
|
+
500: {
|
|
20244
|
+
message: string;
|
|
20245
|
+
};
|
|
20246
|
+
};
|
|
20247
|
+
};
|
|
20248
|
+
};
|
|
20249
|
+
'/api/v1/misc/mastodon/status': {
|
|
20250
|
+
patch: {
|
|
20251
|
+
req: MiscMastodonEditStatusData;
|
|
20252
|
+
res: {
|
|
20253
|
+
/**
|
|
20254
|
+
* 200
|
|
20255
|
+
*/
|
|
20256
|
+
200: {
|
|
20257
|
+
success: boolean;
|
|
20258
|
+
permalink: string;
|
|
20259
|
+
};
|
|
20260
|
+
/**
|
|
20261
|
+
* 400
|
|
20262
|
+
*/
|
|
20263
|
+
400: {
|
|
20264
|
+
message: string;
|
|
20265
|
+
issues?: Array<{
|
|
20266
|
+
message: string;
|
|
20267
|
+
path?: Array<(string | number)> | null;
|
|
20268
|
+
}> | null;
|
|
20269
|
+
};
|
|
20270
|
+
/**
|
|
20271
|
+
* 401
|
|
20272
|
+
*/
|
|
20273
|
+
401: {
|
|
20274
|
+
message: string;
|
|
20275
|
+
};
|
|
20276
|
+
/**
|
|
20277
|
+
* 403
|
|
20278
|
+
*/
|
|
20279
|
+
403: {
|
|
20280
|
+
message: string;
|
|
20281
|
+
};
|
|
20282
|
+
/**
|
|
20283
|
+
* 404
|
|
20284
|
+
*/
|
|
20285
|
+
404: {
|
|
20286
|
+
message: string;
|
|
20287
|
+
};
|
|
20288
|
+
/**
|
|
20289
|
+
* 429
|
|
20290
|
+
*/
|
|
20291
|
+
429: {
|
|
20292
|
+
message: string;
|
|
20293
|
+
};
|
|
20294
|
+
/**
|
|
20295
|
+
* 500
|
|
20296
|
+
*/
|
|
20297
|
+
500: {
|
|
20298
|
+
message: string;
|
|
20299
|
+
};
|
|
20300
|
+
};
|
|
20301
|
+
};
|
|
20302
|
+
delete: {
|
|
20303
|
+
req: MiscMastodonDeleteStatusData;
|
|
20304
|
+
res: {
|
|
20305
|
+
/**
|
|
20306
|
+
* 200
|
|
20307
|
+
*/
|
|
20308
|
+
200: {
|
|
20309
|
+
success: boolean;
|
|
20310
|
+
};
|
|
20311
|
+
/**
|
|
20312
|
+
* 400
|
|
20313
|
+
*/
|
|
20314
|
+
400: {
|
|
20315
|
+
message: string;
|
|
20316
|
+
issues?: Array<{
|
|
20317
|
+
message: string;
|
|
20318
|
+
path?: Array<(string | number)> | null;
|
|
20319
|
+
}> | null;
|
|
20320
|
+
};
|
|
20321
|
+
/**
|
|
20322
|
+
* 401
|
|
20323
|
+
*/
|
|
20324
|
+
401: {
|
|
20325
|
+
message: string;
|
|
20326
|
+
};
|
|
20327
|
+
/**
|
|
20328
|
+
* 403
|
|
20329
|
+
*/
|
|
20330
|
+
403: {
|
|
20331
|
+
message: string;
|
|
20332
|
+
};
|
|
20333
|
+
/**
|
|
20334
|
+
* 404
|
|
20335
|
+
*/
|
|
20336
|
+
404: {
|
|
20337
|
+
message: string;
|
|
20338
|
+
};
|
|
20339
|
+
/**
|
|
20340
|
+
* 429
|
|
20341
|
+
*/
|
|
20342
|
+
429: {
|
|
20343
|
+
message: string;
|
|
20344
|
+
};
|
|
20345
|
+
/**
|
|
20346
|
+
* 500
|
|
20347
|
+
*/
|
|
20348
|
+
500: {
|
|
20349
|
+
message: string;
|
|
20350
|
+
};
|
|
20351
|
+
};
|
|
20352
|
+
};
|
|
20353
|
+
};
|
|
20354
|
+
'/api/v1/misc/slack/message': {
|
|
20355
|
+
patch: {
|
|
20356
|
+
req: MiscSlackEditMessageData;
|
|
20357
|
+
res: {
|
|
20358
|
+
/**
|
|
20359
|
+
* 200
|
|
20360
|
+
*/
|
|
20361
|
+
200: {
|
|
20362
|
+
success: boolean;
|
|
20363
|
+
permalink: string;
|
|
20364
|
+
};
|
|
20365
|
+
/**
|
|
20366
|
+
* 400
|
|
20367
|
+
*/
|
|
20368
|
+
400: {
|
|
20369
|
+
message: string;
|
|
20370
|
+
issues?: Array<{
|
|
20371
|
+
message: string;
|
|
20372
|
+
path?: Array<(string | number)> | null;
|
|
20373
|
+
}> | null;
|
|
20374
|
+
};
|
|
18550
20375
|
/**
|
|
18551
20376
|
* 401
|
|
18552
20377
|
*/
|
|
@@ -18790,6 +20615,127 @@ type $OpenApiTs = {
|
|
|
18790
20615
|
};
|
|
18791
20616
|
};
|
|
18792
20617
|
};
|
|
20618
|
+
'/api/v1/misc/tiktok/cml/trending-list': {
|
|
20619
|
+
get: {
|
|
20620
|
+
req: MiscTiktokGetCommercialMusicTrendingListData;
|
|
20621
|
+
res: {
|
|
20622
|
+
/**
|
|
20623
|
+
* List of trending tracks.
|
|
20624
|
+
*/
|
|
20625
|
+
200: Array<{
|
|
20626
|
+
/**
|
|
20627
|
+
* The name of the commercial music track.
|
|
20628
|
+
*/
|
|
20629
|
+
commercial_music_name: string;
|
|
20630
|
+
/**
|
|
20631
|
+
* Track duration in seconds.
|
|
20632
|
+
*/
|
|
20633
|
+
duration: number;
|
|
20634
|
+
/**
|
|
20635
|
+
* Thumbnail image URL for the track.
|
|
20636
|
+
*/
|
|
20637
|
+
thumbnail_url: string;
|
|
20638
|
+
/**
|
|
20639
|
+
* Artist name.
|
|
20640
|
+
*/
|
|
20641
|
+
artist: string;
|
|
20642
|
+
/**
|
|
20643
|
+
* Track preview URL (valid for six hours).
|
|
20644
|
+
*/
|
|
20645
|
+
preview_url?: string | null;
|
|
20646
|
+
/**
|
|
20647
|
+
* List of genres associated with the track.
|
|
20648
|
+
*/
|
|
20649
|
+
genres?: Array<(string)>;
|
|
20650
|
+
/**
|
|
20651
|
+
* Current rank position in the selected region.
|
|
20652
|
+
*/
|
|
20653
|
+
rank_position: string;
|
|
20654
|
+
/**
|
|
20655
|
+
* Historical ranking data (up to 30 days).
|
|
20656
|
+
*/
|
|
20657
|
+
trending_history?: Array<{
|
|
20658
|
+
/**
|
|
20659
|
+
* Date in YYYY-MM-DD format.
|
|
20660
|
+
*/
|
|
20661
|
+
date: string;
|
|
20662
|
+
/**
|
|
20663
|
+
* Rank position on a specific date. Can be null if not ranked.
|
|
20664
|
+
*/
|
|
20665
|
+
rank_position_daily?: string | null;
|
|
20666
|
+
}>;
|
|
20667
|
+
full_duration_song_clip?: {
|
|
20668
|
+
/**
|
|
20669
|
+
* Track preview URL (valid for six hours).
|
|
20670
|
+
*/
|
|
20671
|
+
preview_url?: string | null;
|
|
20672
|
+
/**
|
|
20673
|
+
* Track duration in seconds.
|
|
20674
|
+
*/
|
|
20675
|
+
duration: number;
|
|
20676
|
+
/**
|
|
20677
|
+
* Track clip ID that can be used as music_sound_id in publish endpoint.
|
|
20678
|
+
*/
|
|
20679
|
+
song_clip_id: string;
|
|
20680
|
+
} | null;
|
|
20681
|
+
trending_song_clip?: {
|
|
20682
|
+
/**
|
|
20683
|
+
* Track preview URL (valid for six hours).
|
|
20684
|
+
*/
|
|
20685
|
+
preview_url?: string | null;
|
|
20686
|
+
/**
|
|
20687
|
+
* Track duration in seconds.
|
|
20688
|
+
*/
|
|
20689
|
+
duration: number;
|
|
20690
|
+
/**
|
|
20691
|
+
* Track clip ID that can be used as music_sound_id in publish endpoint.
|
|
20692
|
+
*/
|
|
20693
|
+
song_clip_id: string;
|
|
20694
|
+
} | null;
|
|
20695
|
+
}>;
|
|
20696
|
+
/**
|
|
20697
|
+
* 400
|
|
20698
|
+
*/
|
|
20699
|
+
400: {
|
|
20700
|
+
message: string;
|
|
20701
|
+
issues?: Array<{
|
|
20702
|
+
message: string;
|
|
20703
|
+
path?: Array<(string | number)> | null;
|
|
20704
|
+
}> | null;
|
|
20705
|
+
};
|
|
20706
|
+
/**
|
|
20707
|
+
* 401
|
|
20708
|
+
*/
|
|
20709
|
+
401: {
|
|
20710
|
+
message: string;
|
|
20711
|
+
};
|
|
20712
|
+
/**
|
|
20713
|
+
* 403
|
|
20714
|
+
*/
|
|
20715
|
+
403: {
|
|
20716
|
+
message: string;
|
|
20717
|
+
};
|
|
20718
|
+
/**
|
|
20719
|
+
* 404
|
|
20720
|
+
*/
|
|
20721
|
+
404: {
|
|
20722
|
+
message: string;
|
|
20723
|
+
};
|
|
20724
|
+
/**
|
|
20725
|
+
* 429
|
|
20726
|
+
*/
|
|
20727
|
+
429: {
|
|
20728
|
+
message: string;
|
|
20729
|
+
};
|
|
20730
|
+
/**
|
|
20731
|
+
* 500
|
|
20732
|
+
*/
|
|
20733
|
+
500: {
|
|
20734
|
+
message: string;
|
|
20735
|
+
};
|
|
20736
|
+
};
|
|
20737
|
+
};
|
|
20738
|
+
};
|
|
18793
20739
|
'/api/v1/post-history-import/': {
|
|
18794
20740
|
post: {
|
|
18795
20741
|
req: PostImportCreateData;
|
|
@@ -18803,6 +20749,9 @@ type $OpenApiTs = {
|
|
|
18803
20749
|
socialAccountId: string;
|
|
18804
20750
|
requestedCount: number;
|
|
18805
20751
|
withAnalytics: boolean;
|
|
20752
|
+
importCarousels: boolean;
|
|
20753
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
20754
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
18806
20755
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
18807
20756
|
postsImported: number;
|
|
18808
20757
|
analyticsImported: number;
|
|
@@ -18875,6 +20824,9 @@ type $OpenApiTs = {
|
|
|
18875
20824
|
socialAccountId: string;
|
|
18876
20825
|
requestedCount: number;
|
|
18877
20826
|
withAnalytics: boolean;
|
|
20827
|
+
importCarousels: boolean;
|
|
20828
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
20829
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
18878
20830
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
18879
20831
|
postsImported: number;
|
|
18880
20832
|
analyticsImported: number;
|
|
@@ -18943,6 +20895,9 @@ type $OpenApiTs = {
|
|
|
18943
20895
|
socialAccountId: string;
|
|
18944
20896
|
requestedCount: number;
|
|
18945
20897
|
withAnalytics: boolean;
|
|
20898
|
+
importCarousels: boolean;
|
|
20899
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
20900
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
18946
20901
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
18947
20902
|
postsImported: number;
|
|
18948
20903
|
analyticsImported: number;
|
|
@@ -19015,6 +20970,7 @@ type $OpenApiTs = {
|
|
|
19015
20970
|
smallThumbnail?: string | null;
|
|
19016
20971
|
thumbnail?: string | null;
|
|
19017
20972
|
permalink?: string | null;
|
|
20973
|
+
extraData?: unknown;
|
|
19018
20974
|
subreddit?: string | null;
|
|
19019
20975
|
publishedAt?: string | null;
|
|
19020
20976
|
type: 'POST' | 'REEL' | 'STORY' | 'VIDEO' | 'IMAGE';
|
|
@@ -19089,6 +21045,57 @@ type $OpenApiTs = {
|
|
|
19089
21045
|
};
|
|
19090
21046
|
};
|
|
19091
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
|
+
};
|
|
19092
21099
|
};
|
|
19093
21100
|
'/api/v1/post-history-import/{importId}/retry': {
|
|
19094
21101
|
post: {
|
|
@@ -19103,6 +21110,9 @@ type $OpenApiTs = {
|
|
|
19103
21110
|
socialAccountId: string;
|
|
19104
21111
|
requestedCount: number;
|
|
19105
21112
|
withAnalytics: boolean;
|
|
21113
|
+
importCarousels: boolean;
|
|
21114
|
+
surface?: 'PROFILE_GRID' | 'NON_GRID' | 'STORY' | 'ALL' | null;
|
|
21115
|
+
mediaType?: 'VIDEO' | 'IMAGE' | null;
|
|
19106
21116
|
status: 'PENDING' | 'FETCHING_POSTS' | 'FETCHING_ANALYTICS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
|
|
19107
21117
|
postsImported: number;
|
|
19108
21118
|
analyticsImported: number;
|
|
@@ -19280,6 +21290,15 @@ declare class SocialAccountService {
|
|
|
19280
21290
|
* @throws ApiError
|
|
19281
21291
|
*/
|
|
19282
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>;
|
|
19283
21302
|
/**
|
|
19284
21303
|
* Refresh channels for social account
|
|
19285
21304
|
* Refresh channels saved on socialAccount.channels. This is only needed for some social account types - Reddit, Discord, Slack, Pinterest.
|
|
@@ -19306,6 +21325,15 @@ declare class SocialAccountService {
|
|
|
19306
21325
|
* @throws ApiError
|
|
19307
21326
|
*/
|
|
19308
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>;
|
|
19309
21337
|
}
|
|
19310
21338
|
declare class UploadService {
|
|
19311
21339
|
readonly httpRequest: BaseHttpRequest;
|
|
@@ -19449,10 +21477,11 @@ declare class AnalyticsService {
|
|
|
19449
21477
|
* @param data The data for the request.
|
|
19450
21478
|
* @param data.postId
|
|
19451
21479
|
* @param data.platformType
|
|
21480
|
+
* @param data.importedPostId
|
|
19452
21481
|
* @returns unknown 200
|
|
19453
21482
|
* @throws ApiError
|
|
19454
21483
|
*/
|
|
19455
|
-
analyticsGetPostAnalytics(data
|
|
21484
|
+
analyticsGetPostAnalytics(data?: AnalyticsGetPostAnalyticsData): CancelablePromise<AnalyticsGetPostAnalyticsResponse>;
|
|
19456
21485
|
/**
|
|
19457
21486
|
* Get Social Account Analytics Raw
|
|
19458
21487
|
* @param data The data for the request.
|
|
@@ -19467,10 +21496,11 @@ declare class AnalyticsService {
|
|
|
19467
21496
|
* @param data The data for the request.
|
|
19468
21497
|
* @param data.postId
|
|
19469
21498
|
* @param data.platformType
|
|
21499
|
+
* @param data.importedPostId
|
|
19470
21500
|
* @returns unknown 200
|
|
19471
21501
|
* @throws ApiError
|
|
19472
21502
|
*/
|
|
19473
|
-
analyticsGetPostAnalyticsRaw(data
|
|
21503
|
+
analyticsGetPostAnalyticsRaw(data?: AnalyticsGetPostAnalyticsRawData): CancelablePromise<AnalyticsGetPostAnalyticsRawResponse>;
|
|
19474
21504
|
/**
|
|
19475
21505
|
* Get Bulk Post Analytics
|
|
19476
21506
|
* Retrieve analytics for multiple posts in a single request. Maximum 60 posts per request, paginated with 20 per page.
|
|
@@ -19716,6 +21746,67 @@ declare class MiscService {
|
|
|
19716
21746
|
* @throws ApiError
|
|
19717
21747
|
*/
|
|
19718
21748
|
miscGoogleBusinessDeletePost(data?: MiscGoogleBusinessDeletePostData): CancelablePromise<MiscGoogleBusinessDeletePostResponse>;
|
|
21749
|
+
/**
|
|
21750
|
+
* Start a new Google Reviews import
|
|
21751
|
+
* @param data The data for the request.
|
|
21752
|
+
* @param data.requestBody Body
|
|
21753
|
+
* @returns unknown 201
|
|
21754
|
+
* @throws ApiError
|
|
21755
|
+
*/
|
|
21756
|
+
miscGoogleBusinessImportReviews(data?: MiscGoogleBusinessImportReviewsData): CancelablePromise<MiscGoogleBusinessImportReviewsResponse>;
|
|
21757
|
+
/**
|
|
21758
|
+
* Get review import status list
|
|
21759
|
+
* @param data The data for the request.
|
|
21760
|
+
* @param data.teamId
|
|
21761
|
+
* @returns unknown 200
|
|
21762
|
+
* @throws ApiError
|
|
21763
|
+
*/
|
|
21764
|
+
miscGoogleBusinessGetReviewImportStatus(data: MiscGoogleBusinessGetReviewImportStatusData): CancelablePromise<MiscGoogleBusinessGetReviewImportStatusResponse>;
|
|
21765
|
+
/**
|
|
21766
|
+
* Get review import by ID
|
|
21767
|
+
* @param data The data for the request.
|
|
21768
|
+
* @param data.importId
|
|
21769
|
+
* @returns unknown 200
|
|
21770
|
+
* @throws ApiError
|
|
21771
|
+
*/
|
|
21772
|
+
miscGoogleBusinessGetReviewImportById(data: MiscGoogleBusinessGetReviewImportByIdData): CancelablePromise<MiscGoogleBusinessGetReviewImportByIdResponse>;
|
|
21773
|
+
/**
|
|
21774
|
+
* List imported Google Reviews
|
|
21775
|
+
* @param data The data for the request.
|
|
21776
|
+
* @param data.teamId
|
|
21777
|
+
* @param data.limit
|
|
21778
|
+
* @param data.offset
|
|
21779
|
+
* @returns unknown 200
|
|
21780
|
+
* @throws ApiError
|
|
21781
|
+
*/
|
|
21782
|
+
miscGoogleBusinessGetReviews(data: MiscGoogleBusinessGetReviewsData): CancelablePromise<MiscGoogleBusinessGetReviewsResponse>;
|
|
21783
|
+
/**
|
|
21784
|
+
* Get a single imported Google Review
|
|
21785
|
+
* @param data The data for the request.
|
|
21786
|
+
* @param data.reviewId
|
|
21787
|
+
* @param data.teamId
|
|
21788
|
+
* @returns unknown 200
|
|
21789
|
+
* @throws ApiError
|
|
21790
|
+
*/
|
|
21791
|
+
miscGoogleBusinessGetReviewById(data: MiscGoogleBusinessGetReviewByIdData): CancelablePromise<MiscGoogleBusinessGetReviewByIdResponse>;
|
|
21792
|
+
/**
|
|
21793
|
+
* Reply to a Google Review (creates or updates the owner reply)
|
|
21794
|
+
* @param data The data for the request.
|
|
21795
|
+
* @param data.reviewId
|
|
21796
|
+
* @param data.requestBody Body
|
|
21797
|
+
* @returns unknown 200
|
|
21798
|
+
* @throws ApiError
|
|
21799
|
+
*/
|
|
21800
|
+
miscGoogleBusinessReplyToReview(data: MiscGoogleBusinessReplyToReviewData): CancelablePromise<MiscGoogleBusinessReplyToReviewResponse>;
|
|
21801
|
+
/**
|
|
21802
|
+
* Delete the owner reply from a Google Review
|
|
21803
|
+
* @param data The data for the request.
|
|
21804
|
+
* @param data.reviewId
|
|
21805
|
+
* @param data.requestBody Body
|
|
21806
|
+
* @returns unknown 200
|
|
21807
|
+
* @throws ApiError
|
|
21808
|
+
*/
|
|
21809
|
+
miscGoogleBusinessDeleteReviewReply(data: MiscGoogleBusinessDeleteReviewReplyData): CancelablePromise<MiscGoogleBusinessDeleteReviewReplyResponse>;
|
|
19719
21810
|
/**
|
|
19720
21811
|
* Get subreddit post requirements (flair required/enabled)
|
|
19721
21812
|
* @param data The data for the request.
|
|
@@ -19862,6 +21953,17 @@ declare class MiscService {
|
|
|
19862
21953
|
* @throws ApiError
|
|
19863
21954
|
*/
|
|
19864
21955
|
miscDiscordDeleteMessage(data?: MiscDiscordDeleteMessageData): CancelablePromise<MiscDiscordDeleteMessageResponse>;
|
|
21956
|
+
/**
|
|
21957
|
+
* Get popular tracks from TikTok Commercial Music Library
|
|
21958
|
+
* Retrieve up to 100 popular tracks pre-cleared for organic content and ad creation from TikTok CML.
|
|
21959
|
+
* @param data The data for the request.
|
|
21960
|
+
* @param data.teamId
|
|
21961
|
+
* @param data.genre Genre filter for commercial music results.
|
|
21962
|
+
* @param data.dateRange Timeframe for popular tracks ranking.
|
|
21963
|
+
* @returns unknown List of trending tracks.
|
|
21964
|
+
* @throws ApiError
|
|
21965
|
+
*/
|
|
21966
|
+
miscTiktokGetCommercialMusicTrendingList(data: MiscTiktokGetCommercialMusicTrendingListData): CancelablePromise<MiscTiktokGetCommercialMusicTrendingListResponse>;
|
|
19865
21967
|
}
|
|
19866
21968
|
declare class YoutubeService {
|
|
19867
21969
|
readonly httpRequest: BaseHttpRequest;
|
|
@@ -20034,6 +22136,67 @@ declare class GoogleBusinessService {
|
|
|
20034
22136
|
* @throws ApiError
|
|
20035
22137
|
*/
|
|
20036
22138
|
miscGoogleBusinessDeletePost(data?: MiscGoogleBusinessDeletePostData): CancelablePromise<MiscGoogleBusinessDeletePostResponse>;
|
|
22139
|
+
/**
|
|
22140
|
+
* Start a new Google Reviews import
|
|
22141
|
+
* @param data The data for the request.
|
|
22142
|
+
* @param data.requestBody Body
|
|
22143
|
+
* @returns unknown 201
|
|
22144
|
+
* @throws ApiError
|
|
22145
|
+
*/
|
|
22146
|
+
miscGoogleBusinessImportReviews(data?: MiscGoogleBusinessImportReviewsData): CancelablePromise<MiscGoogleBusinessImportReviewsResponse>;
|
|
22147
|
+
/**
|
|
22148
|
+
* Get review import status list
|
|
22149
|
+
* @param data The data for the request.
|
|
22150
|
+
* @param data.teamId
|
|
22151
|
+
* @returns unknown 200
|
|
22152
|
+
* @throws ApiError
|
|
22153
|
+
*/
|
|
22154
|
+
miscGoogleBusinessGetReviewImportStatus(data: MiscGoogleBusinessGetReviewImportStatusData): CancelablePromise<MiscGoogleBusinessGetReviewImportStatusResponse>;
|
|
22155
|
+
/**
|
|
22156
|
+
* Get review import by ID
|
|
22157
|
+
* @param data The data for the request.
|
|
22158
|
+
* @param data.importId
|
|
22159
|
+
* @returns unknown 200
|
|
22160
|
+
* @throws ApiError
|
|
22161
|
+
*/
|
|
22162
|
+
miscGoogleBusinessGetReviewImportById(data: MiscGoogleBusinessGetReviewImportByIdData): CancelablePromise<MiscGoogleBusinessGetReviewImportByIdResponse>;
|
|
22163
|
+
/**
|
|
22164
|
+
* List imported Google Reviews
|
|
22165
|
+
* @param data The data for the request.
|
|
22166
|
+
* @param data.teamId
|
|
22167
|
+
* @param data.limit
|
|
22168
|
+
* @param data.offset
|
|
22169
|
+
* @returns unknown 200
|
|
22170
|
+
* @throws ApiError
|
|
22171
|
+
*/
|
|
22172
|
+
miscGoogleBusinessGetReviews(data: MiscGoogleBusinessGetReviewsData): CancelablePromise<MiscGoogleBusinessGetReviewsResponse>;
|
|
22173
|
+
/**
|
|
22174
|
+
* Get a single imported Google Review
|
|
22175
|
+
* @param data The data for the request.
|
|
22176
|
+
* @param data.reviewId
|
|
22177
|
+
* @param data.teamId
|
|
22178
|
+
* @returns unknown 200
|
|
22179
|
+
* @throws ApiError
|
|
22180
|
+
*/
|
|
22181
|
+
miscGoogleBusinessGetReviewById(data: MiscGoogleBusinessGetReviewByIdData): CancelablePromise<MiscGoogleBusinessGetReviewByIdResponse>;
|
|
22182
|
+
/**
|
|
22183
|
+
* Reply to a Google Review (creates or updates the owner reply)
|
|
22184
|
+
* @param data The data for the request.
|
|
22185
|
+
* @param data.reviewId
|
|
22186
|
+
* @param data.requestBody Body
|
|
22187
|
+
* @returns unknown 200
|
|
22188
|
+
* @throws ApiError
|
|
22189
|
+
*/
|
|
22190
|
+
miscGoogleBusinessReplyToReview(data: MiscGoogleBusinessReplyToReviewData): CancelablePromise<MiscGoogleBusinessReplyToReviewResponse>;
|
|
22191
|
+
/**
|
|
22192
|
+
* Delete the owner reply from a Google Review
|
|
22193
|
+
* @param data The data for the request.
|
|
22194
|
+
* @param data.reviewId
|
|
22195
|
+
* @param data.requestBody Body
|
|
22196
|
+
* @returns unknown 200
|
|
22197
|
+
* @throws ApiError
|
|
22198
|
+
*/
|
|
22199
|
+
miscGoogleBusinessDeleteReviewReply(data: MiscGoogleBusinessDeleteReviewReplyData): CancelablePromise<MiscGoogleBusinessDeleteReviewReplyResponse>;
|
|
20037
22200
|
}
|
|
20038
22201
|
declare class RedditService {
|
|
20039
22202
|
readonly httpRequest: BaseHttpRequest;
|
|
@@ -20217,6 +22380,21 @@ declare class DiscordService {
|
|
|
20217
22380
|
*/
|
|
20218
22381
|
miscDiscordDeleteMessage(data?: MiscDiscordDeleteMessageData): CancelablePromise<MiscDiscordDeleteMessageResponse>;
|
|
20219
22382
|
}
|
|
22383
|
+
declare class TiktokService {
|
|
22384
|
+
readonly httpRequest: BaseHttpRequest;
|
|
22385
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
22386
|
+
/**
|
|
22387
|
+
* Get popular tracks from TikTok Commercial Music Library
|
|
22388
|
+
* Retrieve up to 100 popular tracks pre-cleared for organic content and ad creation from TikTok CML.
|
|
22389
|
+
* @param data The data for the request.
|
|
22390
|
+
* @param data.teamId
|
|
22391
|
+
* @param data.genre Genre filter for commercial music results.
|
|
22392
|
+
* @param data.dateRange Timeframe for popular tracks ranking.
|
|
22393
|
+
* @returns unknown List of trending tracks.
|
|
22394
|
+
* @throws ApiError
|
|
22395
|
+
*/
|
|
22396
|
+
miscTiktokGetCommercialMusicTrendingList(data: MiscTiktokGetCommercialMusicTrendingListData): CancelablePromise<MiscTiktokGetCommercialMusicTrendingListResponse>;
|
|
22397
|
+
}
|
|
20220
22398
|
declare class PostImportService {
|
|
20221
22399
|
readonly httpRequest: BaseHttpRequest;
|
|
20222
22400
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -20256,6 +22434,14 @@ declare class PostImportService {
|
|
|
20256
22434
|
* @throws ApiError
|
|
20257
22435
|
*/
|
|
20258
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>;
|
|
20259
22445
|
/**
|
|
20260
22446
|
* Retry a failed import
|
|
20261
22447
|
* @param data The data for the request.
|
|
@@ -20288,6 +22474,7 @@ declare class Client {
|
|
|
20288
22474
|
readonly slack: SlackService;
|
|
20289
22475
|
readonly socialAccount: SocialAccountService;
|
|
20290
22476
|
readonly team: TeamService;
|
|
22477
|
+
readonly tiktok: TiktokService;
|
|
20291
22478
|
readonly twitter: TwitterService;
|
|
20292
22479
|
readonly upload: UploadService;
|
|
20293
22480
|
readonly youtube: YoutubeService;
|
|
@@ -20354,4 +22541,4 @@ declare class Bundlesocial extends Client {
|
|
|
20354
22541
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
20355
22542
|
}
|
|
20356
22543
|
|
|
20357
|
-
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, 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, 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 };
|