bundlesocial 2.35.0 → 2.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1132,6 +1132,12 @@ type PostGetResponse = {
1132
1132
  x: number;
1133
1133
  y: number;
1134
1134
  }> | null;
1135
+ /**
1136
+ * For Reels only. Trial reels are only shared to non-followers.
1137
+ */
1138
+ trialParams?: {
1139
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
1140
+ } | null;
1135
1141
  } | null;
1136
1142
  THREADS?: {
1137
1143
  text?: string | null;
@@ -1146,6 +1152,7 @@ type PostGetResponse = {
1146
1152
  */
1147
1153
  thumbnail?: string | null;
1148
1154
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
1155
+ photoCoverIndex?: number | null;
1149
1156
  /**
1150
1157
  * Set to true if the video is a paid partnership to promote a third-party business.
1151
1158
  */
@@ -1178,6 +1185,35 @@ type PostGetResponse = {
1178
1185
  * If set to true, TikTok will automatically add music to the photos.
1179
1186
  */
1180
1187
  autoAddMusic?: boolean | null;
1188
+ /**
1189
+ * If set to true, upload post as draft.
1190
+ */
1191
+ uploadToDraft?: boolean | null;
1192
+ /**
1193
+ * Information about the commercial sound (track) used for TikTok publishing.
1194
+ */
1195
+ musicSoundInfo?: {
1196
+ /**
1197
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
1198
+ */
1199
+ musicSoundId: string;
1200
+ /**
1201
+ * Commercial sound volume (0-100).
1202
+ */
1203
+ musicSoundVolume?: number | null;
1204
+ /**
1205
+ * Starting point of the commercial sound in milliseconds.
1206
+ */
1207
+ musicSoundStart?: number | null;
1208
+ /**
1209
+ * Ending point of the commercial sound in milliseconds.
1210
+ */
1211
+ musicSoundEnd?: number | null;
1212
+ /**
1213
+ * Background volume of the original video sound (0-100).
1214
+ */
1215
+ videoOriginalSoundVolume?: number | null;
1216
+ } | null;
1181
1217
  } | null;
1182
1218
  LINKEDIN?: {
1183
1219
  text: string;
@@ -1494,6 +1530,7 @@ type PostGetResponse = {
1494
1530
  id?: string | null;
1495
1531
  shareId?: string | null;
1496
1532
  permalink?: string | null;
1533
+ status?: string | null;
1497
1534
  } | null;
1498
1535
  LINKEDIN?: {
1499
1536
  id?: string | null;
@@ -1717,6 +1754,12 @@ type PostUpdateData = {
1717
1754
  x: number;
1718
1755
  y: number;
1719
1756
  }> | null;
1757
+ /**
1758
+ * For Reels only. Trial reels are only shared to non-followers.
1759
+ */
1760
+ trialParams?: {
1761
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
1762
+ } | null;
1720
1763
  } | null;
1721
1764
  THREADS?: {
1722
1765
  text?: string | null;
@@ -1731,6 +1774,7 @@ type PostUpdateData = {
1731
1774
  */
1732
1775
  thumbnail?: string | null;
1733
1776
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
1777
+ photoCoverIndex?: number | null;
1734
1778
  /**
1735
1779
  * Set to true if the video is a paid partnership to promote a third-party business.
1736
1780
  */
@@ -1763,6 +1807,35 @@ type PostUpdateData = {
1763
1807
  * If set to true, TikTok will automatically add music to the photos.
1764
1808
  */
1765
1809
  autoAddMusic?: boolean | null;
1810
+ /**
1811
+ * If set to true, upload post as draft.
1812
+ */
1813
+ uploadToDraft?: boolean | null;
1814
+ /**
1815
+ * Information about the commercial sound (track) used for TikTok publishing.
1816
+ */
1817
+ musicSoundInfo?: {
1818
+ /**
1819
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
1820
+ */
1821
+ musicSoundId: string;
1822
+ /**
1823
+ * Commercial sound volume (0-100).
1824
+ */
1825
+ musicSoundVolume?: number | null;
1826
+ /**
1827
+ * Starting point of the commercial sound in milliseconds.
1828
+ */
1829
+ musicSoundStart?: number | null;
1830
+ /**
1831
+ * Ending point of the commercial sound in milliseconds.
1832
+ */
1833
+ musicSoundEnd?: number | null;
1834
+ /**
1835
+ * Background volume of the original video sound (0-100).
1836
+ */
1837
+ videoOriginalSoundVolume?: number | null;
1838
+ } | null;
1766
1839
  } | null;
1767
1840
  LINKEDIN?: {
1768
1841
  text: string;
@@ -2006,6 +2079,12 @@ type PostUpdateResponse = {
2006
2079
  x: number;
2007
2080
  y: number;
2008
2081
  }> | null;
2082
+ /**
2083
+ * For Reels only. Trial reels are only shared to non-followers.
2084
+ */
2085
+ trialParams?: {
2086
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
2087
+ } | null;
2009
2088
  } | null;
2010
2089
  THREADS?: {
2011
2090
  text?: string | null;
@@ -2020,6 +2099,7 @@ type PostUpdateResponse = {
2020
2099
  */
2021
2100
  thumbnail?: string | null;
2022
2101
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
2102
+ photoCoverIndex?: number | null;
2023
2103
  /**
2024
2104
  * Set to true if the video is a paid partnership to promote a third-party business.
2025
2105
  */
@@ -2052,6 +2132,35 @@ type PostUpdateResponse = {
2052
2132
  * If set to true, TikTok will automatically add music to the photos.
2053
2133
  */
2054
2134
  autoAddMusic?: boolean | null;
2135
+ /**
2136
+ * If set to true, upload post as draft.
2137
+ */
2138
+ uploadToDraft?: boolean | null;
2139
+ /**
2140
+ * Information about the commercial sound (track) used for TikTok publishing.
2141
+ */
2142
+ musicSoundInfo?: {
2143
+ /**
2144
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
2145
+ */
2146
+ musicSoundId: string;
2147
+ /**
2148
+ * Commercial sound volume (0-100).
2149
+ */
2150
+ musicSoundVolume?: number | null;
2151
+ /**
2152
+ * Starting point of the commercial sound in milliseconds.
2153
+ */
2154
+ musicSoundStart?: number | null;
2155
+ /**
2156
+ * Ending point of the commercial sound in milliseconds.
2157
+ */
2158
+ musicSoundEnd?: number | null;
2159
+ /**
2160
+ * Background volume of the original video sound (0-100).
2161
+ */
2162
+ videoOriginalSoundVolume?: number | null;
2163
+ } | null;
2055
2164
  } | null;
2056
2165
  LINKEDIN?: {
2057
2166
  text: string;
@@ -2368,6 +2477,7 @@ type PostUpdateResponse = {
2368
2477
  id?: string | null;
2369
2478
  shareId?: string | null;
2370
2479
  permalink?: string | null;
2480
+ status?: string | null;
2371
2481
  } | null;
2372
2482
  LINKEDIN?: {
2373
2483
  id?: string | null;
@@ -2522,6 +2632,12 @@ type PostDeleteResponse = {
2522
2632
  x: number;
2523
2633
  y: number;
2524
2634
  }> | null;
2635
+ /**
2636
+ * For Reels only. Trial reels are only shared to non-followers.
2637
+ */
2638
+ trialParams?: {
2639
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
2640
+ } | null;
2525
2641
  } | null;
2526
2642
  THREADS?: {
2527
2643
  text?: string | null;
@@ -2536,6 +2652,7 @@ type PostDeleteResponse = {
2536
2652
  */
2537
2653
  thumbnail?: string | null;
2538
2654
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
2655
+ photoCoverIndex?: number | null;
2539
2656
  /**
2540
2657
  * Set to true if the video is a paid partnership to promote a third-party business.
2541
2658
  */
@@ -2568,6 +2685,35 @@ type PostDeleteResponse = {
2568
2685
  * If set to true, TikTok will automatically add music to the photos.
2569
2686
  */
2570
2687
  autoAddMusic?: boolean | null;
2688
+ /**
2689
+ * If set to true, upload post as draft.
2690
+ */
2691
+ uploadToDraft?: boolean | null;
2692
+ /**
2693
+ * Information about the commercial sound (track) used for TikTok publishing.
2694
+ */
2695
+ musicSoundInfo?: {
2696
+ /**
2697
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
2698
+ */
2699
+ musicSoundId: string;
2700
+ /**
2701
+ * Commercial sound volume (0-100).
2702
+ */
2703
+ musicSoundVolume?: number | null;
2704
+ /**
2705
+ * Starting point of the commercial sound in milliseconds.
2706
+ */
2707
+ musicSoundStart?: number | null;
2708
+ /**
2709
+ * Ending point of the commercial sound in milliseconds.
2710
+ */
2711
+ musicSoundEnd?: number | null;
2712
+ /**
2713
+ * Background volume of the original video sound (0-100).
2714
+ */
2715
+ videoOriginalSoundVolume?: number | null;
2716
+ } | null;
2571
2717
  } | null;
2572
2718
  LINKEDIN?: {
2573
2719
  text: string;
@@ -2884,6 +3030,7 @@ type PostDeleteResponse = {
2884
3030
  id?: string | null;
2885
3031
  shareId?: string | null;
2886
3032
  permalink?: string | null;
3033
+ status?: string | null;
2887
3034
  } | null;
2888
3035
  LINKEDIN?: {
2889
3036
  id?: string | null;
@@ -3046,6 +3193,12 @@ type PostGetListResponse = {
3046
3193
  x: number;
3047
3194
  y: number;
3048
3195
  }> | null;
3196
+ /**
3197
+ * For Reels only. Trial reels are only shared to non-followers.
3198
+ */
3199
+ trialParams?: {
3200
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
3201
+ } | null;
3049
3202
  } | null;
3050
3203
  THREADS?: {
3051
3204
  text?: string | null;
@@ -3060,6 +3213,7 @@ type PostGetListResponse = {
3060
3213
  */
3061
3214
  thumbnail?: string | null;
3062
3215
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
3216
+ photoCoverIndex?: number | null;
3063
3217
  /**
3064
3218
  * Set to true if the video is a paid partnership to promote a third-party business.
3065
3219
  */
@@ -3092,6 +3246,35 @@ type PostGetListResponse = {
3092
3246
  * If set to true, TikTok will automatically add music to the photos.
3093
3247
  */
3094
3248
  autoAddMusic?: boolean | null;
3249
+ /**
3250
+ * If set to true, upload post as draft.
3251
+ */
3252
+ uploadToDraft?: boolean | null;
3253
+ /**
3254
+ * Information about the commercial sound (track) used for TikTok publishing.
3255
+ */
3256
+ musicSoundInfo?: {
3257
+ /**
3258
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
3259
+ */
3260
+ musicSoundId: string;
3261
+ /**
3262
+ * Commercial sound volume (0-100).
3263
+ */
3264
+ musicSoundVolume?: number | null;
3265
+ /**
3266
+ * Starting point of the commercial sound in milliseconds.
3267
+ */
3268
+ musicSoundStart?: number | null;
3269
+ /**
3270
+ * Ending point of the commercial sound in milliseconds.
3271
+ */
3272
+ musicSoundEnd?: number | null;
3273
+ /**
3274
+ * Background volume of the original video sound (0-100).
3275
+ */
3276
+ videoOriginalSoundVolume?: number | null;
3277
+ } | null;
3095
3278
  } | null;
3096
3279
  LINKEDIN?: {
3097
3280
  text: string;
@@ -3408,6 +3591,7 @@ type PostGetListResponse = {
3408
3591
  id?: string | null;
3409
3592
  shareId?: string | null;
3410
3593
  permalink?: string | null;
3594
+ status?: string | null;
3411
3595
  } | null;
3412
3596
  LINKEDIN?: {
3413
3597
  id?: string | null;
@@ -3633,6 +3817,12 @@ type PostCreateData = {
3633
3817
  x: number;
3634
3818
  y: number;
3635
3819
  }> | null;
3820
+ /**
3821
+ * For Reels only. Trial reels are only shared to non-followers.
3822
+ */
3823
+ trialParams?: {
3824
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
3825
+ } | null;
3636
3826
  } | null;
3637
3827
  THREADS?: {
3638
3828
  text?: string | null;
@@ -3647,6 +3837,7 @@ type PostCreateData = {
3647
3837
  */
3648
3838
  thumbnail?: string | null;
3649
3839
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
3840
+ photoCoverIndex?: number | null;
3650
3841
  /**
3651
3842
  * Set to true if the video is a paid partnership to promote a third-party business.
3652
3843
  */
@@ -3679,6 +3870,35 @@ type PostCreateData = {
3679
3870
  * If set to true, TikTok will automatically add music to the photos.
3680
3871
  */
3681
3872
  autoAddMusic?: boolean | null;
3873
+ /**
3874
+ * If set to true, upload post as draft.
3875
+ */
3876
+ uploadToDraft?: boolean | null;
3877
+ /**
3878
+ * Information about the commercial sound (track) used for TikTok publishing.
3879
+ */
3880
+ musicSoundInfo?: {
3881
+ /**
3882
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
3883
+ */
3884
+ musicSoundId: string;
3885
+ /**
3886
+ * Commercial sound volume (0-100).
3887
+ */
3888
+ musicSoundVolume?: number | null;
3889
+ /**
3890
+ * Starting point of the commercial sound in milliseconds.
3891
+ */
3892
+ musicSoundStart?: number | null;
3893
+ /**
3894
+ * Ending point of the commercial sound in milliseconds.
3895
+ */
3896
+ musicSoundEnd?: number | null;
3897
+ /**
3898
+ * Background volume of the original video sound (0-100).
3899
+ */
3900
+ videoOriginalSoundVolume?: number | null;
3901
+ } | null;
3682
3902
  } | null;
3683
3903
  LINKEDIN?: {
3684
3904
  text: string;
@@ -3922,6 +4142,12 @@ type PostCreateResponse = {
3922
4142
  x: number;
3923
4143
  y: number;
3924
4144
  }> | null;
4145
+ /**
4146
+ * For Reels only. Trial reels are only shared to non-followers.
4147
+ */
4148
+ trialParams?: {
4149
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
4150
+ } | null;
3925
4151
  } | null;
3926
4152
  THREADS?: {
3927
4153
  text?: string | null;
@@ -3936,6 +4162,7 @@ type PostCreateResponse = {
3936
4162
  */
3937
4163
  thumbnail?: string | null;
3938
4164
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
4165
+ photoCoverIndex?: number | null;
3939
4166
  /**
3940
4167
  * Set to true if the video is a paid partnership to promote a third-party business.
3941
4168
  */
@@ -3968,6 +4195,35 @@ type PostCreateResponse = {
3968
4195
  * If set to true, TikTok will automatically add music to the photos.
3969
4196
  */
3970
4197
  autoAddMusic?: boolean | null;
4198
+ /**
4199
+ * If set to true, upload post as draft.
4200
+ */
4201
+ uploadToDraft?: boolean | null;
4202
+ /**
4203
+ * Information about the commercial sound (track) used for TikTok publishing.
4204
+ */
4205
+ musicSoundInfo?: {
4206
+ /**
4207
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
4208
+ */
4209
+ musicSoundId: string;
4210
+ /**
4211
+ * Commercial sound volume (0-100).
4212
+ */
4213
+ musicSoundVolume?: number | null;
4214
+ /**
4215
+ * Starting point of the commercial sound in milliseconds.
4216
+ */
4217
+ musicSoundStart?: number | null;
4218
+ /**
4219
+ * Ending point of the commercial sound in milliseconds.
4220
+ */
4221
+ musicSoundEnd?: number | null;
4222
+ /**
4223
+ * Background volume of the original video sound (0-100).
4224
+ */
4225
+ videoOriginalSoundVolume?: number | null;
4226
+ } | null;
3971
4227
  } | null;
3972
4228
  LINKEDIN?: {
3973
4229
  text: string;
@@ -4284,6 +4540,7 @@ type PostCreateResponse = {
4284
4540
  id?: string | null;
4285
4541
  shareId?: string | null;
4286
4542
  permalink?: string | null;
4543
+ status?: string | null;
4287
4544
  } | null;
4288
4545
  LINKEDIN?: {
4289
4546
  id?: string | null;
@@ -4438,6 +4695,12 @@ type PostRetryResponse = {
4438
4695
  x: number;
4439
4696
  y: number;
4440
4697
  }> | null;
4698
+ /**
4699
+ * For Reels only. Trial reels are only shared to non-followers.
4700
+ */
4701
+ trialParams?: {
4702
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
4703
+ } | null;
4441
4704
  } | null;
4442
4705
  THREADS?: {
4443
4706
  text?: string | null;
@@ -4452,6 +4715,7 @@ type PostRetryResponse = {
4452
4715
  */
4453
4716
  thumbnail?: string | null;
4454
4717
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
4718
+ photoCoverIndex?: number | null;
4455
4719
  /**
4456
4720
  * Set to true if the video is a paid partnership to promote a third-party business.
4457
4721
  */
@@ -4484,6 +4748,35 @@ type PostRetryResponse = {
4484
4748
  * If set to true, TikTok will automatically add music to the photos.
4485
4749
  */
4486
4750
  autoAddMusic?: boolean | null;
4751
+ /**
4752
+ * If set to true, upload post as draft.
4753
+ */
4754
+ uploadToDraft?: boolean | null;
4755
+ /**
4756
+ * Information about the commercial sound (track) used for TikTok publishing.
4757
+ */
4758
+ musicSoundInfo?: {
4759
+ /**
4760
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
4761
+ */
4762
+ musicSoundId: string;
4763
+ /**
4764
+ * Commercial sound volume (0-100).
4765
+ */
4766
+ musicSoundVolume?: number | null;
4767
+ /**
4768
+ * Starting point of the commercial sound in milliseconds.
4769
+ */
4770
+ musicSoundStart?: number | null;
4771
+ /**
4772
+ * Ending point of the commercial sound in milliseconds.
4773
+ */
4774
+ musicSoundEnd?: number | null;
4775
+ /**
4776
+ * Background volume of the original video sound (0-100).
4777
+ */
4778
+ videoOriginalSoundVolume?: number | null;
4779
+ } | null;
4487
4780
  } | null;
4488
4781
  LINKEDIN?: {
4489
4782
  text: string;
@@ -4800,6 +5093,7 @@ type PostRetryResponse = {
4800
5093
  id?: string | null;
4801
5094
  shareId?: string | null;
4802
5095
  permalink?: string | null;
5096
+ status?: string | null;
4803
5097
  } | null;
4804
5098
  LINKEDIN?: {
4805
5099
  id?: string | null;
@@ -5015,6 +5309,12 @@ type AnalyticsGetPostAnalyticsResponse = {
5015
5309
  x: number;
5016
5310
  y: number;
5017
5311
  }> | null;
5312
+ /**
5313
+ * For Reels only. Trial reels are only shared to non-followers.
5314
+ */
5315
+ trialParams?: {
5316
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
5317
+ } | null;
5018
5318
  } | null;
5019
5319
  THREADS?: {
5020
5320
  text?: string | null;
@@ -5029,6 +5329,7 @@ type AnalyticsGetPostAnalyticsResponse = {
5029
5329
  */
5030
5330
  thumbnail?: string | null;
5031
5331
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
5332
+ photoCoverIndex?: number | null;
5032
5333
  /**
5033
5334
  * Set to true if the video is a paid partnership to promote a third-party business.
5034
5335
  */
@@ -5061,6 +5362,35 @@ type AnalyticsGetPostAnalyticsResponse = {
5061
5362
  * If set to true, TikTok will automatically add music to the photos.
5062
5363
  */
5063
5364
  autoAddMusic?: boolean | null;
5365
+ /**
5366
+ * If set to true, upload post as draft.
5367
+ */
5368
+ uploadToDraft?: boolean | null;
5369
+ /**
5370
+ * Information about the commercial sound (track) used for TikTok publishing.
5371
+ */
5372
+ musicSoundInfo?: {
5373
+ /**
5374
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
5375
+ */
5376
+ musicSoundId: string;
5377
+ /**
5378
+ * Commercial sound volume (0-100).
5379
+ */
5380
+ musicSoundVolume?: number | null;
5381
+ /**
5382
+ * Starting point of the commercial sound in milliseconds.
5383
+ */
5384
+ musicSoundStart?: number | null;
5385
+ /**
5386
+ * Ending point of the commercial sound in milliseconds.
5387
+ */
5388
+ musicSoundEnd?: number | null;
5389
+ /**
5390
+ * Background volume of the original video sound (0-100).
5391
+ */
5392
+ videoOriginalSoundVolume?: number | null;
5393
+ } | null;
5064
5394
  } | null;
5065
5395
  LINKEDIN?: {
5066
5396
  text: string;
@@ -5377,6 +5707,7 @@ type AnalyticsGetPostAnalyticsResponse = {
5377
5707
  id?: string | null;
5378
5708
  shareId?: string | null;
5379
5709
  permalink?: string | null;
5710
+ status?: string | null;
5380
5711
  } | null;
5381
5712
  LINKEDIN?: {
5382
5713
  id?: string | null;
@@ -5604,6 +5935,12 @@ type AnalyticsGetPostAnalyticsRawResponse = {
5604
5935
  x: number;
5605
5936
  y: number;
5606
5937
  }> | null;
5938
+ /**
5939
+ * For Reels only. Trial reels are only shared to non-followers.
5940
+ */
5941
+ trialParams?: {
5942
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
5943
+ } | null;
5607
5944
  } | null;
5608
5945
  THREADS?: {
5609
5946
  text?: string | null;
@@ -5618,6 +5955,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
5618
5955
  */
5619
5956
  thumbnail?: string | null;
5620
5957
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
5958
+ photoCoverIndex?: number | null;
5621
5959
  /**
5622
5960
  * Set to true if the video is a paid partnership to promote a third-party business.
5623
5961
  */
@@ -5650,6 +5988,35 @@ type AnalyticsGetPostAnalyticsRawResponse = {
5650
5988
  * If set to true, TikTok will automatically add music to the photos.
5651
5989
  */
5652
5990
  autoAddMusic?: boolean | null;
5991
+ /**
5992
+ * If set to true, upload post as draft.
5993
+ */
5994
+ uploadToDraft?: boolean | null;
5995
+ /**
5996
+ * Information about the commercial sound (track) used for TikTok publishing.
5997
+ */
5998
+ musicSoundInfo?: {
5999
+ /**
6000
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
6001
+ */
6002
+ musicSoundId: string;
6003
+ /**
6004
+ * Commercial sound volume (0-100).
6005
+ */
6006
+ musicSoundVolume?: number | null;
6007
+ /**
6008
+ * Starting point of the commercial sound in milliseconds.
6009
+ */
6010
+ musicSoundStart?: number | null;
6011
+ /**
6012
+ * Ending point of the commercial sound in milliseconds.
6013
+ */
6014
+ musicSoundEnd?: number | null;
6015
+ /**
6016
+ * Background volume of the original video sound (0-100).
6017
+ */
6018
+ videoOriginalSoundVolume?: number | null;
6019
+ } | null;
5653
6020
  } | null;
5654
6021
  LINKEDIN?: {
5655
6022
  text: string;
@@ -5966,6 +6333,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
5966
6333
  id?: string | null;
5967
6334
  shareId?: string | null;
5968
6335
  permalink?: string | null;
6336
+ status?: string | null;
5969
6337
  } | null;
5970
6338
  LINKEDIN?: {
5971
6339
  id?: string | null;
@@ -6046,6 +6414,42 @@ type AnalyticsGetPostAnalyticsRawResponse = {
6046
6414
  deletedAt?: string | null;
6047
6415
  }>;
6048
6416
  };
6417
+ type AnalyticsGetBulkPostAnalyticsData = {
6418
+ limit?: number;
6419
+ page?: number;
6420
+ platformType: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'THREADS' | 'REDDIT' | 'PINTEREST' | 'MASTODON' | 'LINKEDIN' | 'BLUESKY' | 'GOOGLE_BUSINESS';
6421
+ postIds: Array<(string)>;
6422
+ };
6423
+ type AnalyticsGetBulkPostAnalyticsResponse = {
6424
+ results: Array<{
6425
+ postId: string;
6426
+ items: Array<{
6427
+ id: string;
6428
+ profilePostId: string;
6429
+ impressions: number;
6430
+ impressionsUnique: number;
6431
+ views: number;
6432
+ viewsUnique: number;
6433
+ likes: number;
6434
+ dislikes: number;
6435
+ comments: number;
6436
+ shares: number;
6437
+ saves: number;
6438
+ raw?: unknown;
6439
+ forced: boolean;
6440
+ createdAt: string | null;
6441
+ updatedAt: string | null;
6442
+ deletedAt?: string | null;
6443
+ }>;
6444
+ error: string | null;
6445
+ }>;
6446
+ pagination: {
6447
+ page: number;
6448
+ limit: number;
6449
+ total: number;
6450
+ totalPages: number;
6451
+ };
6452
+ };
6049
6453
  type AnalyticsForceSocialAccountAnalyticsData = {
6050
6454
  /**
6051
6455
  * Body
@@ -7674,6 +8078,21 @@ type MiscYoutubeEditVideoResponse = {
7674
8078
  success: boolean;
7675
8079
  permalink: string;
7676
8080
  };
8081
+ type MiscYoutubeDeleteVideoData = {
8082
+ /**
8083
+ * Body
8084
+ */
8085
+ requestBody?: {
8086
+ teamId: string;
8087
+ /**
8088
+ * The ID of the post in Bundle Social
8089
+ */
8090
+ postId: string;
8091
+ };
8092
+ };
8093
+ type MiscYoutubeDeleteVideoResponse = {
8094
+ success: boolean;
8095
+ };
7677
8096
  type MiscYoutubeGetVideoCategoriesData = {
7678
8097
  /**
7679
8098
  * ISO 3166-1 alpha-2 country code (e.g., 'US', 'GB', 'PL'). Defaults to 'US'
@@ -7767,6 +8186,21 @@ type MiscLinkedinEditPostResponse = {
7767
8186
  success: boolean;
7768
8187
  permalink: string;
7769
8188
  };
8189
+ type MiscLinkedinDeletePostData = {
8190
+ /**
8191
+ * Body
8192
+ */
8193
+ requestBody?: {
8194
+ teamId: string;
8195
+ /**
8196
+ * The ID of the post in Bundle Social
8197
+ */
8198
+ postId: string;
8199
+ };
8200
+ };
8201
+ type MiscLinkedinDeletePostResponse = {
8202
+ success: boolean;
8203
+ };
7770
8204
  type MiscGoogleBusinessAddMediaData = {
7771
8205
  /**
7772
8206
  * Body
@@ -7787,19 +8221,201 @@ type MiscGoogleBusinessAddMediaResponse = {
7787
8221
  };
7788
8222
  description?: string;
7789
8223
  };
7790
- type MiscRedditGetPostRequirementsData = {
7791
- subreddit: string;
7792
- teamId: string;
7793
- };
7794
- type MiscRedditGetPostRequirementsResponse = {
7795
- isFlairRequired: boolean;
7796
- isFlairEnabled: boolean;
8224
+ type MiscGoogleBusinessDeletePostData = {
8225
+ /**
8226
+ * Body
8227
+ */
8228
+ requestBody?: {
8229
+ teamId: string;
8230
+ /**
8231
+ * The ID of the post in Bundle Social
8232
+ */
8233
+ postId: string;
8234
+ };
7797
8235
  };
7798
- type MiscRedditGetSubredditFlairsData = {
7799
- subreddit: string;
7800
- teamId: string;
8236
+ type MiscGoogleBusinessDeletePostResponse = {
8237
+ success: boolean;
7801
8238
  };
7802
- type MiscRedditGetSubredditFlairsResponse = Array<{
8239
+ type MiscGoogleBusinessImportReviewsData = {
8240
+ /**
8241
+ * Body
8242
+ */
8243
+ requestBody?: {
8244
+ teamId: string;
8245
+ count: number;
8246
+ };
8247
+ };
8248
+ type MiscGoogleBusinessImportReviewsResponse = {
8249
+ id: string;
8250
+ teamId: string;
8251
+ socialAccountId: string;
8252
+ requestedCount: number;
8253
+ status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
8254
+ reviewsImported: number;
8255
+ error?: string | null;
8256
+ rateLimitResetAt?: string | null;
8257
+ startedAt?: string | null;
8258
+ completedAt?: string | null;
8259
+ createdAt: string | null;
8260
+ updatedAt: string | null;
8261
+ deletedAt?: string | null;
8262
+ };
8263
+ type MiscGoogleBusinessGetReviewImportStatusData = {
8264
+ teamId: string;
8265
+ };
8266
+ type MiscGoogleBusinessGetReviewImportStatusResponse = {
8267
+ imports: Array<{
8268
+ id: string;
8269
+ teamId: string;
8270
+ socialAccountId: string;
8271
+ requestedCount: number;
8272
+ status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
8273
+ reviewsImported: number;
8274
+ error?: string | null;
8275
+ rateLimitResetAt?: string | null;
8276
+ startedAt?: string | null;
8277
+ completedAt?: string | null;
8278
+ createdAt: string | null;
8279
+ updatedAt: string | null;
8280
+ deletedAt?: string | null;
8281
+ }>;
8282
+ };
8283
+ type MiscGoogleBusinessGetReviewImportByIdData = {
8284
+ importId: string;
8285
+ };
8286
+ type MiscGoogleBusinessGetReviewImportByIdResponse = {
8287
+ id: string;
8288
+ teamId: string;
8289
+ socialAccountId: string;
8290
+ requestedCount: number;
8291
+ status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
8292
+ reviewsImported: number;
8293
+ error?: string | null;
8294
+ rateLimitResetAt?: string | null;
8295
+ startedAt?: string | null;
8296
+ completedAt?: string | null;
8297
+ createdAt: string | null;
8298
+ updatedAt: string | null;
8299
+ deletedAt?: string | null;
8300
+ };
8301
+ type MiscGoogleBusinessGetReviewsData = {
8302
+ limit?: number;
8303
+ offset?: number | null;
8304
+ teamId: string;
8305
+ };
8306
+ type MiscGoogleBusinessGetReviewsResponse = {
8307
+ reviews: Array<{
8308
+ id: string;
8309
+ socialAccountId: string;
8310
+ teamId: string;
8311
+ externalReviewId: string;
8312
+ reviewerDisplayName?: string | null;
8313
+ reviewerProfilePhotoUrl?: string | null;
8314
+ starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
8315
+ comment?: string | null;
8316
+ reviewReplyComment?: string | null;
8317
+ reviewReplyUpdatedAt?: string | null;
8318
+ createTime?: string | null;
8319
+ updateTime?: string | null;
8320
+ importedAt?: string | null;
8321
+ createdAt: string | null;
8322
+ updatedAt: string | null;
8323
+ deletedAt?: string | null;
8324
+ }>;
8325
+ total: number;
8326
+ limit: number;
8327
+ remainingCapacity: number;
8328
+ };
8329
+ type MiscGoogleBusinessGetReviewByIdData = {
8330
+ reviewId: string;
8331
+ teamId: string;
8332
+ };
8333
+ type MiscGoogleBusinessGetReviewByIdResponse = {
8334
+ id: string;
8335
+ socialAccountId: string;
8336
+ teamId: string;
8337
+ externalReviewId: string;
8338
+ reviewerDisplayName?: string | null;
8339
+ reviewerProfilePhotoUrl?: string | null;
8340
+ starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
8341
+ comment?: string | null;
8342
+ reviewReplyComment?: string | null;
8343
+ reviewReplyUpdatedAt?: string | null;
8344
+ createTime?: string | null;
8345
+ updateTime?: string | null;
8346
+ importedAt?: string | null;
8347
+ createdAt: string | null;
8348
+ updatedAt: string | null;
8349
+ deletedAt?: string | null;
8350
+ };
8351
+ type MiscGoogleBusinessReplyToReviewData = {
8352
+ /**
8353
+ * Body
8354
+ */
8355
+ requestBody?: {
8356
+ teamId: string;
8357
+ comment: string;
8358
+ };
8359
+ reviewId: string;
8360
+ };
8361
+ type MiscGoogleBusinessReplyToReviewResponse = {
8362
+ id: string;
8363
+ socialAccountId: string;
8364
+ teamId: string;
8365
+ externalReviewId: string;
8366
+ reviewerDisplayName?: string | null;
8367
+ reviewerProfilePhotoUrl?: string | null;
8368
+ starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
8369
+ comment?: string | null;
8370
+ reviewReplyComment?: string | null;
8371
+ reviewReplyUpdatedAt?: string | null;
8372
+ createTime?: string | null;
8373
+ updateTime?: string | null;
8374
+ importedAt?: string | null;
8375
+ createdAt: string | null;
8376
+ updatedAt: string | null;
8377
+ deletedAt?: string | null;
8378
+ };
8379
+ type MiscGoogleBusinessDeleteReviewReplyData = {
8380
+ /**
8381
+ * Body
8382
+ */
8383
+ requestBody?: {
8384
+ teamId: string;
8385
+ };
8386
+ reviewId: string;
8387
+ };
8388
+ type MiscGoogleBusinessDeleteReviewReplyResponse = {
8389
+ id: string;
8390
+ socialAccountId: string;
8391
+ teamId: string;
8392
+ externalReviewId: string;
8393
+ reviewerDisplayName?: string | null;
8394
+ reviewerProfilePhotoUrl?: string | null;
8395
+ starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
8396
+ comment?: string | null;
8397
+ reviewReplyComment?: string | null;
8398
+ reviewReplyUpdatedAt?: string | null;
8399
+ createTime?: string | null;
8400
+ updateTime?: string | null;
8401
+ importedAt?: string | null;
8402
+ createdAt: string | null;
8403
+ updatedAt: string | null;
8404
+ deletedAt?: string | null;
8405
+ };
8406
+ type MiscRedditGetPostRequirementsData = {
8407
+ subreddit: string;
8408
+ teamId: string;
8409
+ };
8410
+ type MiscRedditGetPostRequirementsResponse = {
8411
+ isFlairRequired: boolean;
8412
+ isFlairEnabled: boolean;
8413
+ };
8414
+ type MiscRedditGetSubredditFlairsData = {
8415
+ subreddit: string;
8416
+ teamId: string;
8417
+ };
8418
+ type MiscRedditGetSubredditFlairsResponse = Array<{
7803
8419
  id?: string;
7804
8420
  text?: string;
7805
8421
  cssClass?: string;
@@ -7829,6 +8445,21 @@ type MiscRedditEditPostResponse = {
7829
8445
  success: boolean;
7830
8446
  permalink: string;
7831
8447
  };
8448
+ type MiscRedditDeletePostData = {
8449
+ /**
8450
+ * Body
8451
+ */
8452
+ requestBody?: {
8453
+ teamId: string;
8454
+ /**
8455
+ * The ID of the post in Bundle Social
8456
+ */
8457
+ postId: string;
8458
+ };
8459
+ };
8460
+ type MiscRedditDeletePostResponse = {
8461
+ success: boolean;
8462
+ };
7832
8463
  type MiscInstagramBusinessDiscoveryData = {
7833
8464
  teamId: string;
7834
8465
  /**
@@ -7895,6 +8526,21 @@ type MiscFacebookEditPostResponse = {
7895
8526
  success: boolean;
7896
8527
  permalink: string;
7897
8528
  };
8529
+ type MiscFacebookDeletePostData = {
8530
+ /**
8531
+ * Body
8532
+ */
8533
+ requestBody?: {
8534
+ teamId: string;
8535
+ /**
8536
+ * The ID of the post in Bundle Social
8537
+ */
8538
+ postId: string;
8539
+ };
8540
+ };
8541
+ type MiscFacebookDeletePostResponse = {
8542
+ success: boolean;
8543
+ };
7898
8544
  type MiscPinterestEditPinData = {
7899
8545
  /**
7900
8546
  * Body
@@ -7931,6 +8577,21 @@ type MiscPinterestEditPinResponse = {
7931
8577
  success: boolean;
7932
8578
  permalink: string;
7933
8579
  };
8580
+ type MiscPinterestDeletePinData = {
8581
+ /**
8582
+ * Body
8583
+ */
8584
+ requestBody?: {
8585
+ teamId: string;
8586
+ /**
8587
+ * The ID of the post in Bundle Social
8588
+ */
8589
+ postId: string;
8590
+ };
8591
+ };
8592
+ type MiscPinterestDeletePinResponse = {
8593
+ success: boolean;
8594
+ };
7934
8595
  type MiscMastodonEditStatusData = {
7935
8596
  /**
7936
8597
  * Body
@@ -7955,6 +8616,21 @@ type MiscMastodonEditStatusResponse = {
7955
8616
  success: boolean;
7956
8617
  permalink: string;
7957
8618
  };
8619
+ type MiscMastodonDeleteStatusData = {
8620
+ /**
8621
+ * Body
8622
+ */
8623
+ requestBody?: {
8624
+ teamId: string;
8625
+ /**
8626
+ * The ID of the post in Bundle Social
8627
+ */
8628
+ postId: string;
8629
+ };
8630
+ };
8631
+ type MiscMastodonDeleteStatusResponse = {
8632
+ success: boolean;
8633
+ };
7958
8634
  type MiscSlackEditMessageData = {
7959
8635
  /**
7960
8636
  * Body
@@ -7975,6 +8651,148 @@ type MiscSlackEditMessageResponse = {
7975
8651
  success: boolean;
7976
8652
  permalink: string;
7977
8653
  };
8654
+ type MiscSlackDeleteMessageData = {
8655
+ /**
8656
+ * Body
8657
+ */
8658
+ requestBody?: {
8659
+ teamId: string;
8660
+ /**
8661
+ * The ID of the post in Bundle Social
8662
+ */
8663
+ postId: string;
8664
+ };
8665
+ };
8666
+ type MiscSlackDeleteMessageResponse = {
8667
+ success: boolean;
8668
+ };
8669
+ type MiscBlueskyDeletePostData = {
8670
+ /**
8671
+ * Body
8672
+ */
8673
+ requestBody?: {
8674
+ teamId: string;
8675
+ /**
8676
+ * The ID of the post in Bundle Social
8677
+ */
8678
+ postId: string;
8679
+ };
8680
+ };
8681
+ type MiscBlueskyDeletePostResponse = {
8682
+ success: boolean;
8683
+ };
8684
+ type MiscTwitterDeleteTweetData = {
8685
+ /**
8686
+ * Body
8687
+ */
8688
+ requestBody?: {
8689
+ teamId: string;
8690
+ /**
8691
+ * The ID of the post in Bundle Social
8692
+ */
8693
+ postId: string;
8694
+ };
8695
+ };
8696
+ type MiscTwitterDeleteTweetResponse = {
8697
+ success: boolean;
8698
+ };
8699
+ type MiscDiscordDeleteMessageData = {
8700
+ /**
8701
+ * Body
8702
+ */
8703
+ requestBody?: {
8704
+ teamId: string;
8705
+ /**
8706
+ * The ID of the post in Bundle Social
8707
+ */
8708
+ postId: string;
8709
+ };
8710
+ };
8711
+ type MiscDiscordDeleteMessageResponse = {
8712
+ success: boolean;
8713
+ };
8714
+ type MiscTiktokGetCommercialMusicTrendingListData = {
8715
+ /**
8716
+ * Timeframe for popular tracks ranking.
8717
+ */
8718
+ dateRange?: '1DAY' | '7DAY' | '30DAY';
8719
+ /**
8720
+ * Genre filter for commercial music results.
8721
+ */
8722
+ 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';
8723
+ teamId: string;
8724
+ };
8725
+ type MiscTiktokGetCommercialMusicTrendingListResponse = Array<{
8726
+ /**
8727
+ * The name of the commercial music track.
8728
+ */
8729
+ commercial_music_name: string;
8730
+ /**
8731
+ * Track duration in seconds.
8732
+ */
8733
+ duration: number;
8734
+ /**
8735
+ * Thumbnail image URL for the track.
8736
+ */
8737
+ thumbnail_url: string;
8738
+ /**
8739
+ * Artist name.
8740
+ */
8741
+ artist: string;
8742
+ /**
8743
+ * Track preview URL (valid for six hours).
8744
+ */
8745
+ preview_url?: string | null;
8746
+ /**
8747
+ * List of genres associated with the track.
8748
+ */
8749
+ genres?: Array<(string)>;
8750
+ /**
8751
+ * Current rank position in the selected region.
8752
+ */
8753
+ rank_position: string;
8754
+ /**
8755
+ * Historical ranking data (up to 30 days).
8756
+ */
8757
+ trending_history?: Array<{
8758
+ /**
8759
+ * Date in YYYY-MM-DD format.
8760
+ */
8761
+ date: string;
8762
+ /**
8763
+ * Rank position on a specific date. Can be null if not ranked.
8764
+ */
8765
+ rank_position_daily?: string | null;
8766
+ }>;
8767
+ full_duration_song_clip?: {
8768
+ /**
8769
+ * Track preview URL (valid for six hours).
8770
+ */
8771
+ preview_url?: string | null;
8772
+ /**
8773
+ * Track duration in seconds.
8774
+ */
8775
+ duration: number;
8776
+ /**
8777
+ * Track clip ID that can be used as music_sound_id in publish endpoint.
8778
+ */
8779
+ song_clip_id: string;
8780
+ } | null;
8781
+ trending_song_clip?: {
8782
+ /**
8783
+ * Track preview URL (valid for six hours).
8784
+ */
8785
+ preview_url?: string | null;
8786
+ /**
8787
+ * Track duration in seconds.
8788
+ */
8789
+ duration: number;
8790
+ /**
8791
+ * Track clip ID that can be used as music_sound_id in publish endpoint.
8792
+ */
8793
+ song_clip_id: string;
8794
+ } | null;
8795
+ }>;
7978
8796
  type PostImportCreateData = {
7979
8797
  /**
7980
8798
  * Body
@@ -10146,8 +10964,14 @@ type $OpenApiTs = {
10146
10964
  x: number;
10147
10965
  y: number;
10148
10966
  }> | null;
10149
- } | null;
10150
- THREADS?: {
10967
+ /**
10968
+ * For Reels only. Trial reels are only shared to non-followers.
10969
+ */
10970
+ trialParams?: {
10971
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
10972
+ } | null;
10973
+ } | null;
10974
+ THREADS?: {
10151
10975
  text?: string | null;
10152
10976
  uploadIds?: Array<(string)> | null;
10153
10977
  } | null;
@@ -10160,6 +10984,7 @@ type $OpenApiTs = {
10160
10984
  */
10161
10985
  thumbnail?: string | null;
10162
10986
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
10987
+ photoCoverIndex?: number | null;
10163
10988
  /**
10164
10989
  * Set to true if the video is a paid partnership to promote a third-party business.
10165
10990
  */
@@ -10192,6 +11017,35 @@ type $OpenApiTs = {
10192
11017
  * If set to true, TikTok will automatically add music to the photos.
10193
11018
  */
10194
11019
  autoAddMusic?: boolean | null;
11020
+ /**
11021
+ * If set to true, upload post as draft.
11022
+ */
11023
+ uploadToDraft?: boolean | null;
11024
+ /**
11025
+ * Information about the commercial sound (track) used for TikTok publishing.
11026
+ */
11027
+ musicSoundInfo?: {
11028
+ /**
11029
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
11030
+ */
11031
+ musicSoundId: string;
11032
+ /**
11033
+ * Commercial sound volume (0-100).
11034
+ */
11035
+ musicSoundVolume?: number | null;
11036
+ /**
11037
+ * Starting point of the commercial sound in milliseconds.
11038
+ */
11039
+ musicSoundStart?: number | null;
11040
+ /**
11041
+ * Ending point of the commercial sound in milliseconds.
11042
+ */
11043
+ musicSoundEnd?: number | null;
11044
+ /**
11045
+ * Background volume of the original video sound (0-100).
11046
+ */
11047
+ videoOriginalSoundVolume?: number | null;
11048
+ } | null;
10195
11049
  } | null;
10196
11050
  LINKEDIN?: {
10197
11051
  text: string;
@@ -10508,6 +11362,7 @@ type $OpenApiTs = {
10508
11362
  id?: string | null;
10509
11363
  shareId?: string | null;
10510
11364
  permalink?: string | null;
11365
+ status?: string | null;
10511
11366
  } | null;
10512
11367
  LINKEDIN?: {
10513
11368
  id?: string | null;
@@ -10777,6 +11632,12 @@ type $OpenApiTs = {
10777
11632
  x: number;
10778
11633
  y: number;
10779
11634
  }> | null;
11635
+ /**
11636
+ * For Reels only. Trial reels are only shared to non-followers.
11637
+ */
11638
+ trialParams?: {
11639
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
11640
+ } | null;
10780
11641
  } | null;
10781
11642
  THREADS?: {
10782
11643
  text?: string | null;
@@ -10791,6 +11652,7 @@ type $OpenApiTs = {
10791
11652
  */
10792
11653
  thumbnail?: string | null;
10793
11654
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
11655
+ photoCoverIndex?: number | null;
10794
11656
  /**
10795
11657
  * Set to true if the video is a paid partnership to promote a third-party business.
10796
11658
  */
@@ -10823,6 +11685,35 @@ type $OpenApiTs = {
10823
11685
  * If set to true, TikTok will automatically add music to the photos.
10824
11686
  */
10825
11687
  autoAddMusic?: boolean | null;
11688
+ /**
11689
+ * If set to true, upload post as draft.
11690
+ */
11691
+ uploadToDraft?: boolean | null;
11692
+ /**
11693
+ * Information about the commercial sound (track) used for TikTok publishing.
11694
+ */
11695
+ musicSoundInfo?: {
11696
+ /**
11697
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
11698
+ */
11699
+ musicSoundId: string;
11700
+ /**
11701
+ * Commercial sound volume (0-100).
11702
+ */
11703
+ musicSoundVolume?: number | null;
11704
+ /**
11705
+ * Starting point of the commercial sound in milliseconds.
11706
+ */
11707
+ musicSoundStart?: number | null;
11708
+ /**
11709
+ * Ending point of the commercial sound in milliseconds.
11710
+ */
11711
+ musicSoundEnd?: number | null;
11712
+ /**
11713
+ * Background volume of the original video sound (0-100).
11714
+ */
11715
+ videoOriginalSoundVolume?: number | null;
11716
+ } | null;
10826
11717
  } | null;
10827
11718
  LINKEDIN?: {
10828
11719
  text: string;
@@ -11139,6 +12030,7 @@ type $OpenApiTs = {
11139
12030
  id?: string | null;
11140
12031
  shareId?: string | null;
11141
12032
  permalink?: string | null;
12033
+ status?: string | null;
11142
12034
  } | null;
11143
12035
  LINKEDIN?: {
11144
12036
  id?: string | null;
@@ -11338,6 +12230,12 @@ type $OpenApiTs = {
11338
12230
  x: number;
11339
12231
  y: number;
11340
12232
  }> | null;
12233
+ /**
12234
+ * For Reels only. Trial reels are only shared to non-followers.
12235
+ */
12236
+ trialParams?: {
12237
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
12238
+ } | null;
11341
12239
  } | null;
11342
12240
  THREADS?: {
11343
12241
  text?: string | null;
@@ -11352,6 +12250,7 @@ type $OpenApiTs = {
11352
12250
  */
11353
12251
  thumbnail?: string | null;
11354
12252
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
12253
+ photoCoverIndex?: number | null;
11355
12254
  /**
11356
12255
  * Set to true if the video is a paid partnership to promote a third-party business.
11357
12256
  */
@@ -11384,6 +12283,35 @@ type $OpenApiTs = {
11384
12283
  * If set to true, TikTok will automatically add music to the photos.
11385
12284
  */
11386
12285
  autoAddMusic?: boolean | null;
12286
+ /**
12287
+ * If set to true, upload post as draft.
12288
+ */
12289
+ uploadToDraft?: boolean | null;
12290
+ /**
12291
+ * Information about the commercial sound (track) used for TikTok publishing.
12292
+ */
12293
+ musicSoundInfo?: {
12294
+ /**
12295
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
12296
+ */
12297
+ musicSoundId: string;
12298
+ /**
12299
+ * Commercial sound volume (0-100).
12300
+ */
12301
+ musicSoundVolume?: number | null;
12302
+ /**
12303
+ * Starting point of the commercial sound in milliseconds.
12304
+ */
12305
+ musicSoundStart?: number | null;
12306
+ /**
12307
+ * Ending point of the commercial sound in milliseconds.
12308
+ */
12309
+ musicSoundEnd?: number | null;
12310
+ /**
12311
+ * Background volume of the original video sound (0-100).
12312
+ */
12313
+ videoOriginalSoundVolume?: number | null;
12314
+ } | null;
11387
12315
  } | null;
11388
12316
  LINKEDIN?: {
11389
12317
  text: string;
@@ -11700,6 +12628,7 @@ type $OpenApiTs = {
11700
12628
  id?: string | null;
11701
12629
  shareId?: string | null;
11702
12630
  permalink?: string | null;
12631
+ status?: string | null;
11703
12632
  } | null;
11704
12633
  LINKEDIN?: {
11705
12634
  id?: string | null;
@@ -11902,6 +12831,12 @@ type $OpenApiTs = {
11902
12831
  x: number;
11903
12832
  y: number;
11904
12833
  }> | null;
12834
+ /**
12835
+ * For Reels only. Trial reels are only shared to non-followers.
12836
+ */
12837
+ trialParams?: {
12838
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
12839
+ } | null;
11905
12840
  } | null;
11906
12841
  THREADS?: {
11907
12842
  text?: string | null;
@@ -11916,6 +12851,7 @@ type $OpenApiTs = {
11916
12851
  */
11917
12852
  thumbnail?: string | null;
11918
12853
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
12854
+ photoCoverIndex?: number | null;
11919
12855
  /**
11920
12856
  * Set to true if the video is a paid partnership to promote a third-party business.
11921
12857
  */
@@ -11948,6 +12884,35 @@ type $OpenApiTs = {
11948
12884
  * If set to true, TikTok will automatically add music to the photos.
11949
12885
  */
11950
12886
  autoAddMusic?: boolean | null;
12887
+ /**
12888
+ * If set to true, upload post as draft.
12889
+ */
12890
+ uploadToDraft?: boolean | null;
12891
+ /**
12892
+ * Information about the commercial sound (track) used for TikTok publishing.
12893
+ */
12894
+ musicSoundInfo?: {
12895
+ /**
12896
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
12897
+ */
12898
+ musicSoundId: string;
12899
+ /**
12900
+ * Commercial sound volume (0-100).
12901
+ */
12902
+ musicSoundVolume?: number | null;
12903
+ /**
12904
+ * Starting point of the commercial sound in milliseconds.
12905
+ */
12906
+ musicSoundStart?: number | null;
12907
+ /**
12908
+ * Ending point of the commercial sound in milliseconds.
12909
+ */
12910
+ musicSoundEnd?: number | null;
12911
+ /**
12912
+ * Background volume of the original video sound (0-100).
12913
+ */
12914
+ videoOriginalSoundVolume?: number | null;
12915
+ } | null;
11951
12916
  } | null;
11952
12917
  LINKEDIN?: {
11953
12918
  text: string;
@@ -12264,6 +13229,7 @@ type $OpenApiTs = {
12264
13229
  id?: string | null;
12265
13230
  shareId?: string | null;
12266
13231
  permalink?: string | null;
13232
+ status?: string | null;
12267
13233
  } | null;
12268
13234
  LINKEDIN?: {
12269
13235
  id?: string | null;
@@ -12535,6 +13501,12 @@ type $OpenApiTs = {
12535
13501
  x: number;
12536
13502
  y: number;
12537
13503
  }> | null;
13504
+ /**
13505
+ * For Reels only. Trial reels are only shared to non-followers.
13506
+ */
13507
+ trialParams?: {
13508
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
13509
+ } | null;
12538
13510
  } | null;
12539
13511
  THREADS?: {
12540
13512
  text?: string | null;
@@ -12549,6 +13521,7 @@ type $OpenApiTs = {
12549
13521
  */
12550
13522
  thumbnail?: string | null;
12551
13523
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
13524
+ photoCoverIndex?: number | null;
12552
13525
  /**
12553
13526
  * Set to true if the video is a paid partnership to promote a third-party business.
12554
13527
  */
@@ -12581,6 +13554,35 @@ type $OpenApiTs = {
12581
13554
  * If set to true, TikTok will automatically add music to the photos.
12582
13555
  */
12583
13556
  autoAddMusic?: boolean | null;
13557
+ /**
13558
+ * If set to true, upload post as draft.
13559
+ */
13560
+ uploadToDraft?: boolean | null;
13561
+ /**
13562
+ * Information about the commercial sound (track) used for TikTok publishing.
13563
+ */
13564
+ musicSoundInfo?: {
13565
+ /**
13566
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
13567
+ */
13568
+ musicSoundId: string;
13569
+ /**
13570
+ * Commercial sound volume (0-100).
13571
+ */
13572
+ musicSoundVolume?: number | null;
13573
+ /**
13574
+ * Starting point of the commercial sound in milliseconds.
13575
+ */
13576
+ musicSoundStart?: number | null;
13577
+ /**
13578
+ * Ending point of the commercial sound in milliseconds.
13579
+ */
13580
+ musicSoundEnd?: number | null;
13581
+ /**
13582
+ * Background volume of the original video sound (0-100).
13583
+ */
13584
+ videoOriginalSoundVolume?: number | null;
13585
+ } | null;
12584
13586
  } | null;
12585
13587
  LINKEDIN?: {
12586
13588
  text: string;
@@ -12897,6 +13899,7 @@ type $OpenApiTs = {
12897
13899
  id?: string | null;
12898
13900
  shareId?: string | null;
12899
13901
  permalink?: string | null;
13902
+ status?: string | null;
12900
13903
  } | null;
12901
13904
  LINKEDIN?: {
12902
13905
  id?: string | null;
@@ -13098,6 +14101,12 @@ type $OpenApiTs = {
13098
14101
  x: number;
13099
14102
  y: number;
13100
14103
  }> | null;
14104
+ /**
14105
+ * For Reels only. Trial reels are only shared to non-followers.
14106
+ */
14107
+ trialParams?: {
14108
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
14109
+ } | null;
13101
14110
  } | null;
13102
14111
  THREADS?: {
13103
14112
  text?: string | null;
@@ -13112,6 +14121,7 @@ type $OpenApiTs = {
13112
14121
  */
13113
14122
  thumbnail?: string | null;
13114
14123
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
14124
+ photoCoverIndex?: number | null;
13115
14125
  /**
13116
14126
  * Set to true if the video is a paid partnership to promote a third-party business.
13117
14127
  */
@@ -13144,6 +14154,35 @@ type $OpenApiTs = {
13144
14154
  * If set to true, TikTok will automatically add music to the photos.
13145
14155
  */
13146
14156
  autoAddMusic?: boolean | null;
14157
+ /**
14158
+ * If set to true, upload post as draft.
14159
+ */
14160
+ uploadToDraft?: boolean | null;
14161
+ /**
14162
+ * Information about the commercial sound (track) used for TikTok publishing.
14163
+ */
14164
+ musicSoundInfo?: {
14165
+ /**
14166
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
14167
+ */
14168
+ musicSoundId: string;
14169
+ /**
14170
+ * Commercial sound volume (0-100).
14171
+ */
14172
+ musicSoundVolume?: number | null;
14173
+ /**
14174
+ * Starting point of the commercial sound in milliseconds.
14175
+ */
14176
+ musicSoundStart?: number | null;
14177
+ /**
14178
+ * Ending point of the commercial sound in milliseconds.
14179
+ */
14180
+ musicSoundEnd?: number | null;
14181
+ /**
14182
+ * Background volume of the original video sound (0-100).
14183
+ */
14184
+ videoOriginalSoundVolume?: number | null;
14185
+ } | null;
13147
14186
  } | null;
13148
14187
  LINKEDIN?: {
13149
14188
  text: string;
@@ -13460,6 +14499,7 @@ type $OpenApiTs = {
13460
14499
  id?: string | null;
13461
14500
  shareId?: string | null;
13462
14501
  permalink?: string | null;
14502
+ status?: string | null;
13463
14503
  } | null;
13464
14504
  LINKEDIN?: {
13465
14505
  id?: string | null;
@@ -13767,6 +14807,12 @@ type $OpenApiTs = {
13767
14807
  x: number;
13768
14808
  y: number;
13769
14809
  }> | null;
14810
+ /**
14811
+ * For Reels only. Trial reels are only shared to non-followers.
14812
+ */
14813
+ trialParams?: {
14814
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
14815
+ } | null;
13770
14816
  } | null;
13771
14817
  THREADS?: {
13772
14818
  text?: string | null;
@@ -13781,6 +14827,7 @@ type $OpenApiTs = {
13781
14827
  */
13782
14828
  thumbnail?: string | null;
13783
14829
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
14830
+ photoCoverIndex?: number | null;
13784
14831
  /**
13785
14832
  * Set to true if the video is a paid partnership to promote a third-party business.
13786
14833
  */
@@ -13813,6 +14860,35 @@ type $OpenApiTs = {
13813
14860
  * If set to true, TikTok will automatically add music to the photos.
13814
14861
  */
13815
14862
  autoAddMusic?: boolean | null;
14863
+ /**
14864
+ * If set to true, upload post as draft.
14865
+ */
14866
+ uploadToDraft?: boolean | null;
14867
+ /**
14868
+ * Information about the commercial sound (track) used for TikTok publishing.
14869
+ */
14870
+ musicSoundInfo?: {
14871
+ /**
14872
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
14873
+ */
14874
+ musicSoundId: string;
14875
+ /**
14876
+ * Commercial sound volume (0-100).
14877
+ */
14878
+ musicSoundVolume?: number | null;
14879
+ /**
14880
+ * Starting point of the commercial sound in milliseconds.
14881
+ */
14882
+ musicSoundStart?: number | null;
14883
+ /**
14884
+ * Ending point of the commercial sound in milliseconds.
14885
+ */
14886
+ musicSoundEnd?: number | null;
14887
+ /**
14888
+ * Background volume of the original video sound (0-100).
14889
+ */
14890
+ videoOriginalSoundVolume?: number | null;
14891
+ } | null;
13816
14892
  } | null;
13817
14893
  LINKEDIN?: {
13818
14894
  text: string;
@@ -14129,6 +15205,7 @@ type $OpenApiTs = {
14129
15205
  id?: string | null;
14130
15206
  shareId?: string | null;
14131
15207
  permalink?: string | null;
15208
+ status?: string | null;
14132
15209
  } | null;
14133
15210
  LINKEDIN?: {
14134
15211
  id?: string | null;
@@ -14448,6 +15525,12 @@ type $OpenApiTs = {
14448
15525
  x: number;
14449
15526
  y: number;
14450
15527
  }> | null;
15528
+ /**
15529
+ * For Reels only. Trial reels are only shared to non-followers.
15530
+ */
15531
+ trialParams?: {
15532
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
15533
+ } | null;
14451
15534
  } | null;
14452
15535
  THREADS?: {
14453
15536
  text?: string | null;
@@ -14462,6 +15545,7 @@ type $OpenApiTs = {
14462
15545
  */
14463
15546
  thumbnail?: string | null;
14464
15547
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
15548
+ photoCoverIndex?: number | null;
14465
15549
  /**
14466
15550
  * Set to true if the video is a paid partnership to promote a third-party business.
14467
15551
  */
@@ -14494,6 +15578,35 @@ type $OpenApiTs = {
14494
15578
  * If set to true, TikTok will automatically add music to the photos.
14495
15579
  */
14496
15580
  autoAddMusic?: boolean | null;
15581
+ /**
15582
+ * If set to true, upload post as draft.
15583
+ */
15584
+ uploadToDraft?: boolean | null;
15585
+ /**
15586
+ * Information about the commercial sound (track) used for TikTok publishing.
15587
+ */
15588
+ musicSoundInfo?: {
15589
+ /**
15590
+ * Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
15591
+ */
15592
+ musicSoundId: string;
15593
+ /**
15594
+ * Commercial sound volume (0-100).
15595
+ */
15596
+ musicSoundVolume?: number | null;
15597
+ /**
15598
+ * Starting point of the commercial sound in milliseconds.
15599
+ */
15600
+ musicSoundStart?: number | null;
15601
+ /**
15602
+ * Ending point of the commercial sound in milliseconds.
15603
+ */
15604
+ musicSoundEnd?: number | null;
15605
+ /**
15606
+ * Background volume of the original video sound (0-100).
15607
+ */
15608
+ videoOriginalSoundVolume?: number | null;
15609
+ } | null;
14497
15610
  } | null;
14498
15611
  LINKEDIN?: {
14499
15612
  text: string;
@@ -14810,6 +15923,7 @@ type $OpenApiTs = {
14810
15923
  id?: string | null;
14811
15924
  shareId?: string | null;
14812
15925
  permalink?: string | null;
15926
+ status?: string | null;
14813
15927
  } | null;
14814
15928
  LINKEDIN?: {
14815
15929
  id?: string | null;
@@ -14933,6 +16047,86 @@ type $OpenApiTs = {
14933
16047
  };
14934
16048
  };
14935
16049
  };
16050
+ '/api/v1/analytics/post/bulk': {
16051
+ get: {
16052
+ req: AnalyticsGetBulkPostAnalyticsData;
16053
+ res: {
16054
+ /**
16055
+ * 200
16056
+ */
16057
+ 200: {
16058
+ results: Array<{
16059
+ postId: string;
16060
+ items: Array<{
16061
+ id: string;
16062
+ profilePostId: string;
16063
+ impressions: number;
16064
+ impressionsUnique: number;
16065
+ views: number;
16066
+ viewsUnique: number;
16067
+ likes: number;
16068
+ dislikes: number;
16069
+ comments: number;
16070
+ shares: number;
16071
+ saves: number;
16072
+ raw?: unknown;
16073
+ forced: boolean;
16074
+ createdAt: string | null;
16075
+ updatedAt: string | null;
16076
+ deletedAt?: string | null;
16077
+ }>;
16078
+ error: string | null;
16079
+ }>;
16080
+ pagination: {
16081
+ page: number;
16082
+ limit: number;
16083
+ total: number;
16084
+ totalPages: number;
16085
+ };
16086
+ };
16087
+ /**
16088
+ * 400
16089
+ */
16090
+ 400: {
16091
+ message: string;
16092
+ issues?: Array<{
16093
+ message: string;
16094
+ path?: Array<(string | number)> | null;
16095
+ }> | null;
16096
+ };
16097
+ /**
16098
+ * 401
16099
+ */
16100
+ 401: {
16101
+ message: string;
16102
+ };
16103
+ /**
16104
+ * 403
16105
+ */
16106
+ 403: {
16107
+ message: string;
16108
+ };
16109
+ /**
16110
+ * 404
16111
+ */
16112
+ 404: {
16113
+ message: string;
16114
+ };
16115
+ /**
16116
+ * 429
16117
+ */
16118
+ 429: {
16119
+ message: string;
16120
+ };
16121
+ /**
16122
+ * 500
16123
+ */
16124
+ 500: {
16125
+ message: string;
16126
+ };
16127
+ };
16128
+ };
16129
+ };
14936
16130
  '/api/v1/analytics/social-account/force': {
14937
16131
  post: {
14938
16132
  req: AnalyticsForceSocialAccountAnalyticsData;
@@ -17107,6 +18301,57 @@ type $OpenApiTs = {
17107
18301
  };
17108
18302
  };
17109
18303
  };
18304
+ delete: {
18305
+ req: MiscYoutubeDeleteVideoData;
18306
+ res: {
18307
+ /**
18308
+ * 200
18309
+ */
18310
+ 200: {
18311
+ success: boolean;
18312
+ };
18313
+ /**
18314
+ * 400
18315
+ */
18316
+ 400: {
18317
+ message: string;
18318
+ issues?: Array<{
18319
+ message: string;
18320
+ path?: Array<(string | number)> | null;
18321
+ }> | null;
18322
+ };
18323
+ /**
18324
+ * 401
18325
+ */
18326
+ 401: {
18327
+ message: string;
18328
+ };
18329
+ /**
18330
+ * 403
18331
+ */
18332
+ 403: {
18333
+ message: string;
18334
+ };
18335
+ /**
18336
+ * 404
18337
+ */
18338
+ 404: {
18339
+ message: string;
18340
+ };
18341
+ /**
18342
+ * 429
18343
+ */
18344
+ 429: {
18345
+ message: string;
18346
+ };
18347
+ /**
18348
+ * 500
18349
+ */
18350
+ 500: {
18351
+ message: string;
18352
+ };
18353
+ };
18354
+ };
17110
18355
  };
17111
18356
  '/api/v1/misc/youtube/video-categories': {
17112
18357
  get: {
@@ -17407,22 +18652,14 @@ type $OpenApiTs = {
17407
18652
  };
17408
18653
  };
17409
18654
  };
17410
- };
17411
- '/api/v1/misc/google-business/media': {
17412
- post: {
17413
- req: MiscGoogleBusinessAddMediaData;
18655
+ delete: {
18656
+ req: MiscLinkedinDeletePostData;
17414
18657
  res: {
17415
18658
  /**
17416
18659
  * 200
17417
18660
  */
17418
18661
  200: {
17419
- name?: string;
17420
- googleUrl?: string;
17421
- locationAssociation?: {
17422
- category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
17423
- priceListItemId?: string;
17424
- };
17425
- description?: string;
18662
+ success: boolean;
17426
18663
  };
17427
18664
  /**
17428
18665
  * 400
@@ -17467,16 +18704,1017 @@ type $OpenApiTs = {
17467
18704
  };
17468
18705
  };
17469
18706
  };
17470
- '/api/v1/misc/reddit/post-requirements': {
18707
+ '/api/v1/misc/google-business/media': {
18708
+ post: {
18709
+ req: MiscGoogleBusinessAddMediaData;
18710
+ res: {
18711
+ /**
18712
+ * 200
18713
+ */
18714
+ 200: {
18715
+ name?: string;
18716
+ googleUrl?: string;
18717
+ locationAssociation?: {
18718
+ category?: 'CATEGORY_UNSPECIFIED' | 'COVER' | 'PROFILE' | 'LOGO' | 'EXTERIOR' | 'INTERIOR' | 'PRODUCT' | 'AT_WORK' | 'FOOD_AND_DRINK' | 'MENU' | 'COMMON_AREA' | 'ROOMS' | 'TEAMS' | 'ADDITIONAL';
18719
+ priceListItemId?: string;
18720
+ };
18721
+ description?: string;
18722
+ };
18723
+ /**
18724
+ * 400
18725
+ */
18726
+ 400: {
18727
+ message: string;
18728
+ issues?: Array<{
18729
+ message: string;
18730
+ path?: Array<(string | number)> | null;
18731
+ }> | null;
18732
+ };
18733
+ /**
18734
+ * 401
18735
+ */
18736
+ 401: {
18737
+ message: string;
18738
+ };
18739
+ /**
18740
+ * 403
18741
+ */
18742
+ 403: {
18743
+ message: string;
18744
+ };
18745
+ /**
18746
+ * 404
18747
+ */
18748
+ 404: {
18749
+ message: string;
18750
+ };
18751
+ /**
18752
+ * 429
18753
+ */
18754
+ 429: {
18755
+ message: string;
18756
+ };
18757
+ /**
18758
+ * 500
18759
+ */
18760
+ 500: {
18761
+ message: string;
18762
+ };
18763
+ };
18764
+ };
18765
+ };
18766
+ '/api/v1/misc/google-business/post': {
18767
+ delete: {
18768
+ req: MiscGoogleBusinessDeletePostData;
18769
+ res: {
18770
+ /**
18771
+ * 200
18772
+ */
18773
+ 200: {
18774
+ success: boolean;
18775
+ };
18776
+ /**
18777
+ * 400
18778
+ */
18779
+ 400: {
18780
+ message: string;
18781
+ issues?: Array<{
18782
+ message: string;
18783
+ path?: Array<(string | number)> | null;
18784
+ }> | null;
18785
+ };
18786
+ /**
18787
+ * 401
18788
+ */
18789
+ 401: {
18790
+ message: string;
18791
+ };
18792
+ /**
18793
+ * 403
18794
+ */
18795
+ 403: {
18796
+ message: string;
18797
+ };
18798
+ /**
18799
+ * 404
18800
+ */
18801
+ 404: {
18802
+ message: string;
18803
+ };
18804
+ /**
18805
+ * 429
18806
+ */
18807
+ 429: {
18808
+ message: string;
18809
+ };
18810
+ /**
18811
+ * 500
18812
+ */
18813
+ 500: {
18814
+ message: string;
18815
+ };
18816
+ };
18817
+ };
18818
+ };
18819
+ '/api/v1/misc/google-business/reviews/import': {
18820
+ post: {
18821
+ req: MiscGoogleBusinessImportReviewsData;
18822
+ res: {
18823
+ /**
18824
+ * 201
18825
+ */
18826
+ 201: {
18827
+ id: string;
18828
+ teamId: string;
18829
+ socialAccountId: string;
18830
+ requestedCount: number;
18831
+ status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
18832
+ reviewsImported: number;
18833
+ error?: string | null;
18834
+ rateLimitResetAt?: string | null;
18835
+ startedAt?: string | null;
18836
+ completedAt?: string | null;
18837
+ createdAt: string | null;
18838
+ updatedAt: string | null;
18839
+ deletedAt?: string | null;
18840
+ };
18841
+ /**
18842
+ * 400
18843
+ */
18844
+ 400: {
18845
+ message: string;
18846
+ issues?: Array<{
18847
+ message: string;
18848
+ path?: Array<(string | number)> | null;
18849
+ }> | null;
18850
+ };
18851
+ /**
18852
+ * 401
18853
+ */
18854
+ 401: {
18855
+ message: string;
18856
+ };
18857
+ /**
18858
+ * 403
18859
+ */
18860
+ 403: {
18861
+ message: string;
18862
+ };
18863
+ /**
18864
+ * 404
18865
+ */
18866
+ 404: {
18867
+ message: string;
18868
+ };
18869
+ /**
18870
+ * 409
18871
+ */
18872
+ 409: {
18873
+ message: string;
18874
+ };
18875
+ /**
18876
+ * 429
18877
+ */
18878
+ 429: {
18879
+ message: string;
18880
+ };
18881
+ /**
18882
+ * 500
18883
+ */
18884
+ 500: {
18885
+ message: string;
18886
+ };
18887
+ };
18888
+ };
18889
+ get: {
18890
+ req: MiscGoogleBusinessGetReviewImportStatusData;
18891
+ res: {
18892
+ /**
18893
+ * 200
18894
+ */
18895
+ 200: {
18896
+ imports: Array<{
18897
+ id: string;
18898
+ teamId: string;
18899
+ socialAccountId: string;
18900
+ requestedCount: number;
18901
+ status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
18902
+ reviewsImported: number;
18903
+ error?: string | null;
18904
+ rateLimitResetAt?: string | null;
18905
+ startedAt?: string | null;
18906
+ completedAt?: string | null;
18907
+ createdAt: string | null;
18908
+ updatedAt: string | null;
18909
+ deletedAt?: string | null;
18910
+ }>;
18911
+ };
18912
+ /**
18913
+ * 400
18914
+ */
18915
+ 400: {
18916
+ message: string;
18917
+ issues?: Array<{
18918
+ message: string;
18919
+ path?: Array<(string | number)> | null;
18920
+ }> | null;
18921
+ };
18922
+ /**
18923
+ * 401
18924
+ */
18925
+ 401: {
18926
+ message: string;
18927
+ };
18928
+ /**
18929
+ * 403
18930
+ */
18931
+ 403: {
18932
+ message: string;
18933
+ };
18934
+ /**
18935
+ * 404
18936
+ */
18937
+ 404: {
18938
+ message: string;
18939
+ };
18940
+ /**
18941
+ * 429
18942
+ */
18943
+ 429: {
18944
+ message: string;
18945
+ };
18946
+ /**
18947
+ * 500
18948
+ */
18949
+ 500: {
18950
+ message: string;
18951
+ };
18952
+ };
18953
+ };
18954
+ };
18955
+ '/api/v1/misc/google-business/reviews/import/{importId}': {
18956
+ get: {
18957
+ req: MiscGoogleBusinessGetReviewImportByIdData;
18958
+ res: {
18959
+ /**
18960
+ * 200
18961
+ */
18962
+ 200: {
18963
+ id: string;
18964
+ teamId: string;
18965
+ socialAccountId: string;
18966
+ requestedCount: number;
18967
+ status: 'PENDING' | 'FETCHING_REVIEWS' | 'COMPLETED' | 'FAILED' | 'RATE_LIMITED';
18968
+ reviewsImported: number;
18969
+ error?: string | null;
18970
+ rateLimitResetAt?: string | null;
18971
+ startedAt?: string | null;
18972
+ completedAt?: string | null;
18973
+ createdAt: string | null;
18974
+ updatedAt: string | null;
18975
+ deletedAt?: string | null;
18976
+ };
18977
+ /**
18978
+ * 400
18979
+ */
18980
+ 400: {
18981
+ message: string;
18982
+ issues?: Array<{
18983
+ message: string;
18984
+ path?: Array<(string | number)> | null;
18985
+ }> | null;
18986
+ };
18987
+ /**
18988
+ * 401
18989
+ */
18990
+ 401: {
18991
+ message: string;
18992
+ };
18993
+ /**
18994
+ * 403
18995
+ */
18996
+ 403: {
18997
+ message: string;
18998
+ };
18999
+ /**
19000
+ * 404
19001
+ */
19002
+ 404: {
19003
+ message: string;
19004
+ };
19005
+ /**
19006
+ * 429
19007
+ */
19008
+ 429: {
19009
+ message: string;
19010
+ };
19011
+ /**
19012
+ * 500
19013
+ */
19014
+ 500: {
19015
+ message: string;
19016
+ };
19017
+ };
19018
+ };
19019
+ };
19020
+ '/api/v1/misc/google-business/reviews': {
19021
+ get: {
19022
+ req: MiscGoogleBusinessGetReviewsData;
19023
+ res: {
19024
+ /**
19025
+ * 200
19026
+ */
19027
+ 200: {
19028
+ reviews: Array<{
19029
+ id: string;
19030
+ socialAccountId: string;
19031
+ teamId: string;
19032
+ externalReviewId: string;
19033
+ reviewerDisplayName?: string | null;
19034
+ reviewerProfilePhotoUrl?: string | null;
19035
+ starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
19036
+ comment?: string | null;
19037
+ reviewReplyComment?: string | null;
19038
+ reviewReplyUpdatedAt?: string | null;
19039
+ createTime?: string | null;
19040
+ updateTime?: string | null;
19041
+ importedAt?: string | null;
19042
+ createdAt: string | null;
19043
+ updatedAt: string | null;
19044
+ deletedAt?: string | null;
19045
+ }>;
19046
+ total: number;
19047
+ limit: number;
19048
+ remainingCapacity: number;
19049
+ };
19050
+ /**
19051
+ * 400
19052
+ */
19053
+ 400: {
19054
+ message: string;
19055
+ issues?: Array<{
19056
+ message: string;
19057
+ path?: Array<(string | number)> | null;
19058
+ }> | null;
19059
+ };
19060
+ /**
19061
+ * 401
19062
+ */
19063
+ 401: {
19064
+ message: string;
19065
+ };
19066
+ /**
19067
+ * 403
19068
+ */
19069
+ 403: {
19070
+ message: string;
19071
+ };
19072
+ /**
19073
+ * 404
19074
+ */
19075
+ 404: {
19076
+ message: string;
19077
+ };
19078
+ /**
19079
+ * 429
19080
+ */
19081
+ 429: {
19082
+ message: string;
19083
+ };
19084
+ /**
19085
+ * 500
19086
+ */
19087
+ 500: {
19088
+ message: string;
19089
+ };
19090
+ };
19091
+ };
19092
+ };
19093
+ '/api/v1/misc/google-business/reviews/{reviewId}': {
19094
+ get: {
19095
+ req: MiscGoogleBusinessGetReviewByIdData;
19096
+ res: {
19097
+ /**
19098
+ * 200
19099
+ */
19100
+ 200: {
19101
+ id: string;
19102
+ socialAccountId: string;
19103
+ teamId: string;
19104
+ externalReviewId: string;
19105
+ reviewerDisplayName?: string | null;
19106
+ reviewerProfilePhotoUrl?: string | null;
19107
+ starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
19108
+ comment?: string | null;
19109
+ reviewReplyComment?: string | null;
19110
+ reviewReplyUpdatedAt?: string | null;
19111
+ createTime?: string | null;
19112
+ updateTime?: string | null;
19113
+ importedAt?: string | null;
19114
+ createdAt: string | null;
19115
+ updatedAt: string | null;
19116
+ deletedAt?: string | null;
19117
+ };
19118
+ /**
19119
+ * 400
19120
+ */
19121
+ 400: {
19122
+ message: string;
19123
+ issues?: Array<{
19124
+ message: string;
19125
+ path?: Array<(string | number)> | null;
19126
+ }> | null;
19127
+ };
19128
+ /**
19129
+ * 401
19130
+ */
19131
+ 401: {
19132
+ message: string;
19133
+ };
19134
+ /**
19135
+ * 403
19136
+ */
19137
+ 403: {
19138
+ message: string;
19139
+ };
19140
+ /**
19141
+ * 404
19142
+ */
19143
+ 404: {
19144
+ message: string;
19145
+ };
19146
+ /**
19147
+ * 429
19148
+ */
19149
+ 429: {
19150
+ message: string;
19151
+ };
19152
+ /**
19153
+ * 500
19154
+ */
19155
+ 500: {
19156
+ message: string;
19157
+ };
19158
+ };
19159
+ };
19160
+ };
19161
+ '/api/v1/misc/google-business/reviews/{reviewId}/reply': {
19162
+ put: {
19163
+ req: MiscGoogleBusinessReplyToReviewData;
19164
+ res: {
19165
+ /**
19166
+ * 200
19167
+ */
19168
+ 200: {
19169
+ id: string;
19170
+ socialAccountId: string;
19171
+ teamId: string;
19172
+ externalReviewId: string;
19173
+ reviewerDisplayName?: string | null;
19174
+ reviewerProfilePhotoUrl?: string | null;
19175
+ starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
19176
+ comment?: string | null;
19177
+ reviewReplyComment?: string | null;
19178
+ reviewReplyUpdatedAt?: string | null;
19179
+ createTime?: string | null;
19180
+ updateTime?: string | null;
19181
+ importedAt?: string | null;
19182
+ createdAt: string | null;
19183
+ updatedAt: string | null;
19184
+ deletedAt?: string | null;
19185
+ };
19186
+ /**
19187
+ * 400
19188
+ */
19189
+ 400: {
19190
+ message: string;
19191
+ issues?: Array<{
19192
+ message: string;
19193
+ path?: Array<(string | number)> | null;
19194
+ }> | null;
19195
+ };
19196
+ /**
19197
+ * 401
19198
+ */
19199
+ 401: {
19200
+ message: string;
19201
+ };
19202
+ /**
19203
+ * 403
19204
+ */
19205
+ 403: {
19206
+ message: string;
19207
+ };
19208
+ /**
19209
+ * 404
19210
+ */
19211
+ 404: {
19212
+ message: string;
19213
+ };
19214
+ /**
19215
+ * 429
19216
+ */
19217
+ 429: {
19218
+ message: string;
19219
+ };
19220
+ /**
19221
+ * 500
19222
+ */
19223
+ 500: {
19224
+ message: string;
19225
+ };
19226
+ };
19227
+ };
19228
+ delete: {
19229
+ req: MiscGoogleBusinessDeleteReviewReplyData;
19230
+ res: {
19231
+ /**
19232
+ * 200
19233
+ */
19234
+ 200: {
19235
+ id: string;
19236
+ socialAccountId: string;
19237
+ teamId: string;
19238
+ externalReviewId: string;
19239
+ reviewerDisplayName?: string | null;
19240
+ reviewerProfilePhotoUrl?: string | null;
19241
+ starRating?: 'ONE' | 'TWO' | 'THREE' | 'FOUR' | 'FIVE' | null;
19242
+ comment?: string | null;
19243
+ reviewReplyComment?: string | null;
19244
+ reviewReplyUpdatedAt?: string | null;
19245
+ createTime?: string | null;
19246
+ updateTime?: string | null;
19247
+ importedAt?: string | null;
19248
+ createdAt: string | null;
19249
+ updatedAt: string | null;
19250
+ deletedAt?: string | null;
19251
+ };
19252
+ /**
19253
+ * 400
19254
+ */
19255
+ 400: {
19256
+ message: string;
19257
+ issues?: Array<{
19258
+ message: string;
19259
+ path?: Array<(string | number)> | null;
19260
+ }> | null;
19261
+ };
19262
+ /**
19263
+ * 401
19264
+ */
19265
+ 401: {
19266
+ message: string;
19267
+ };
19268
+ /**
19269
+ * 403
19270
+ */
19271
+ 403: {
19272
+ message: string;
19273
+ };
19274
+ /**
19275
+ * 404
19276
+ */
19277
+ 404: {
19278
+ message: string;
19279
+ };
19280
+ /**
19281
+ * 429
19282
+ */
19283
+ 429: {
19284
+ message: string;
19285
+ };
19286
+ /**
19287
+ * 500
19288
+ */
19289
+ 500: {
19290
+ message: string;
19291
+ };
19292
+ };
19293
+ };
19294
+ };
19295
+ '/api/v1/misc/reddit/post-requirements': {
19296
+ get: {
19297
+ req: MiscRedditGetPostRequirementsData;
19298
+ res: {
19299
+ /**
19300
+ * 200
19301
+ */
19302
+ 200: {
19303
+ isFlairRequired: boolean;
19304
+ isFlairEnabled: boolean;
19305
+ };
19306
+ /**
19307
+ * 400
19308
+ */
19309
+ 400: {
19310
+ message: string;
19311
+ issues?: Array<{
19312
+ message: string;
19313
+ path?: Array<(string | number)> | null;
19314
+ }> | null;
19315
+ };
19316
+ /**
19317
+ * 401
19318
+ */
19319
+ 401: {
19320
+ message: string;
19321
+ };
19322
+ /**
19323
+ * 403
19324
+ */
19325
+ 403: {
19326
+ message: string;
19327
+ };
19328
+ /**
19329
+ * 404
19330
+ */
19331
+ 404: {
19332
+ message: string;
19333
+ };
19334
+ /**
19335
+ * 429
19336
+ */
19337
+ 429: {
19338
+ message: string;
19339
+ };
19340
+ /**
19341
+ * 500
19342
+ */
19343
+ 500: {
19344
+ message: string;
19345
+ };
19346
+ };
19347
+ };
19348
+ };
19349
+ '/api/v1/misc/reddit/subreddit-flairs': {
19350
+ get: {
19351
+ req: MiscRedditGetSubredditFlairsData;
19352
+ res: {
19353
+ /**
19354
+ * 200
19355
+ */
19356
+ 200: Array<{
19357
+ id?: string;
19358
+ text?: string;
19359
+ cssClass?: string;
19360
+ textColor?: string;
19361
+ backgroundColor?: string;
19362
+ modOnly?: boolean;
19363
+ allowableContent?: string;
19364
+ maxEmojis?: number;
19365
+ }>;
19366
+ /**
19367
+ * 400
19368
+ */
19369
+ 400: {
19370
+ message: string;
19371
+ issues?: Array<{
19372
+ message: string;
19373
+ path?: Array<(string | number)> | null;
19374
+ }> | null;
19375
+ };
19376
+ /**
19377
+ * 401
19378
+ */
19379
+ 401: {
19380
+ message: string;
19381
+ };
19382
+ /**
19383
+ * 403
19384
+ */
19385
+ 403: {
19386
+ message: string;
19387
+ };
19388
+ /**
19389
+ * 404
19390
+ */
19391
+ 404: {
19392
+ message: string;
19393
+ };
19394
+ /**
19395
+ * 429
19396
+ */
19397
+ 429: {
19398
+ message: string;
19399
+ };
19400
+ /**
19401
+ * 500
19402
+ */
19403
+ 500: {
19404
+ message: string;
19405
+ };
19406
+ };
19407
+ };
19408
+ };
19409
+ '/api/v1/misc/reddit/post': {
19410
+ patch: {
19411
+ req: MiscRedditEditPostData;
19412
+ res: {
19413
+ /**
19414
+ * 200
19415
+ */
19416
+ 200: {
19417
+ success: boolean;
19418
+ permalink: string;
19419
+ };
19420
+ /**
19421
+ * 400
19422
+ */
19423
+ 400: {
19424
+ message: string;
19425
+ issues?: Array<{
19426
+ message: string;
19427
+ path?: Array<(string | number)> | null;
19428
+ }> | null;
19429
+ };
19430
+ /**
19431
+ * 401
19432
+ */
19433
+ 401: {
19434
+ message: string;
19435
+ };
19436
+ /**
19437
+ * 403
19438
+ */
19439
+ 403: {
19440
+ message: string;
19441
+ };
19442
+ /**
19443
+ * 404
19444
+ */
19445
+ 404: {
19446
+ message: string;
19447
+ };
19448
+ /**
19449
+ * 429
19450
+ */
19451
+ 429: {
19452
+ message: string;
19453
+ };
19454
+ /**
19455
+ * 500
19456
+ */
19457
+ 500: {
19458
+ message: string;
19459
+ };
19460
+ };
19461
+ };
19462
+ delete: {
19463
+ req: MiscRedditDeletePostData;
19464
+ res: {
19465
+ /**
19466
+ * 200
19467
+ */
19468
+ 200: {
19469
+ success: boolean;
19470
+ };
19471
+ /**
19472
+ * 400
19473
+ */
19474
+ 400: {
19475
+ message: string;
19476
+ issues?: Array<{
19477
+ message: string;
19478
+ path?: Array<(string | number)> | null;
19479
+ }> | null;
19480
+ };
19481
+ /**
19482
+ * 401
19483
+ */
19484
+ 401: {
19485
+ message: string;
19486
+ };
19487
+ /**
19488
+ * 403
19489
+ */
19490
+ 403: {
19491
+ message: string;
19492
+ };
19493
+ /**
19494
+ * 404
19495
+ */
19496
+ 404: {
19497
+ message: string;
19498
+ };
19499
+ /**
19500
+ * 429
19501
+ */
19502
+ 429: {
19503
+ message: string;
19504
+ };
19505
+ /**
19506
+ * 500
19507
+ */
19508
+ 500: {
19509
+ message: string;
19510
+ };
19511
+ };
19512
+ };
19513
+ };
19514
+ '/api/v1/misc/instagram/tags': {
17471
19515
  get: {
17472
- req: MiscRedditGetPostRequirementsData;
19516
+ req: MiscInstagramBusinessDiscoveryData;
19517
+ res: {
19518
+ /**
19519
+ * 200
19520
+ */
19521
+ 200: {
19522
+ /**
19523
+ * Whether the user exists and is a Business/Creator account
19524
+ */
19525
+ exists: boolean;
19526
+ /**
19527
+ * User data if exists, null otherwise
19528
+ */
19529
+ data: {
19530
+ /**
19531
+ * Instagram User ID
19532
+ */
19533
+ id: string;
19534
+ /**
19535
+ * Instagram username
19536
+ */
19537
+ username: string;
19538
+ /**
19539
+ * Number of followers
19540
+ */
19541
+ followers_count: number;
19542
+ /**
19543
+ * Number of media posts
19544
+ */
19545
+ media_count: number;
19546
+ /**
19547
+ * Profile picture URL if available
19548
+ */
19549
+ profile_picture_url?: string;
19550
+ /**
19551
+ * User biography if available
19552
+ */
19553
+ biography?: string;
19554
+ /**
19555
+ * Full name if available
19556
+ */
19557
+ name?: string;
19558
+ } | null;
19559
+ };
19560
+ /**
19561
+ * 400
19562
+ */
19563
+ 400: {
19564
+ message: string;
19565
+ issues?: Array<{
19566
+ message: string;
19567
+ path?: Array<(string | number)> | null;
19568
+ }> | null;
19569
+ };
19570
+ /**
19571
+ * 401
19572
+ */
19573
+ 401: {
19574
+ message: string;
19575
+ };
19576
+ /**
19577
+ * 403
19578
+ */
19579
+ 403: {
19580
+ message: string;
19581
+ };
19582
+ /**
19583
+ * 404
19584
+ */
19585
+ 404: {
19586
+ message: string;
19587
+ };
19588
+ /**
19589
+ * 429
19590
+ */
19591
+ 429: {
19592
+ message: string;
19593
+ };
19594
+ /**
19595
+ * 500
19596
+ */
19597
+ 500: {
19598
+ message: string;
19599
+ };
19600
+ };
19601
+ };
19602
+ };
19603
+ '/api/v1/misc/facebook/post': {
19604
+ patch: {
19605
+ req: MiscFacebookEditPostData;
19606
+ res: {
19607
+ /**
19608
+ * 200
19609
+ */
19610
+ 200: {
19611
+ success: boolean;
19612
+ permalink: string;
19613
+ };
19614
+ /**
19615
+ * 400
19616
+ */
19617
+ 400: {
19618
+ message: string;
19619
+ issues?: Array<{
19620
+ message: string;
19621
+ path?: Array<(string | number)> | null;
19622
+ }> | null;
19623
+ };
19624
+ /**
19625
+ * 401
19626
+ */
19627
+ 401: {
19628
+ message: string;
19629
+ };
19630
+ /**
19631
+ * 403
19632
+ */
19633
+ 403: {
19634
+ message: string;
19635
+ };
19636
+ /**
19637
+ * 404
19638
+ */
19639
+ 404: {
19640
+ message: string;
19641
+ };
19642
+ /**
19643
+ * 429
19644
+ */
19645
+ 429: {
19646
+ message: string;
19647
+ };
19648
+ /**
19649
+ * 500
19650
+ */
19651
+ 500: {
19652
+ message: string;
19653
+ };
19654
+ };
19655
+ };
19656
+ delete: {
19657
+ req: MiscFacebookDeletePostData;
19658
+ res: {
19659
+ /**
19660
+ * 200
19661
+ */
19662
+ 200: {
19663
+ success: boolean;
19664
+ };
19665
+ /**
19666
+ * 400
19667
+ */
19668
+ 400: {
19669
+ message: string;
19670
+ issues?: Array<{
19671
+ message: string;
19672
+ path?: Array<(string | number)> | null;
19673
+ }> | null;
19674
+ };
19675
+ /**
19676
+ * 401
19677
+ */
19678
+ 401: {
19679
+ message: string;
19680
+ };
19681
+ /**
19682
+ * 403
19683
+ */
19684
+ 403: {
19685
+ message: string;
19686
+ };
19687
+ /**
19688
+ * 404
19689
+ */
19690
+ 404: {
19691
+ message: string;
19692
+ };
19693
+ /**
19694
+ * 429
19695
+ */
19696
+ 429: {
19697
+ message: string;
19698
+ };
19699
+ /**
19700
+ * 500
19701
+ */
19702
+ 500: {
19703
+ message: string;
19704
+ };
19705
+ };
19706
+ };
19707
+ };
19708
+ '/api/v1/misc/pinterest/pin': {
19709
+ patch: {
19710
+ req: MiscPinterestEditPinData;
17473
19711
  res: {
17474
19712
  /**
17475
19713
  * 200
17476
19714
  */
17477
19715
  200: {
17478
- isFlairRequired: boolean;
17479
- isFlairEnabled: boolean;
19716
+ success: boolean;
19717
+ permalink: string;
17480
19718
  };
17481
19719
  /**
17482
19720
  * 400
@@ -17520,24 +19758,15 @@ type $OpenApiTs = {
17520
19758
  };
17521
19759
  };
17522
19760
  };
17523
- };
17524
- '/api/v1/misc/reddit/subreddit-flairs': {
17525
- get: {
17526
- req: MiscRedditGetSubredditFlairsData;
19761
+ delete: {
19762
+ req: MiscPinterestDeletePinData;
17527
19763
  res: {
17528
19764
  /**
17529
19765
  * 200
17530
19766
  */
17531
- 200: Array<{
17532
- id?: string;
17533
- text?: string;
17534
- cssClass?: string;
17535
- textColor?: string;
17536
- backgroundColor?: string;
17537
- modOnly?: boolean;
17538
- allowableContent?: string;
17539
- maxEmojis?: number;
17540
- }>;
19767
+ 200: {
19768
+ success: boolean;
19769
+ };
17541
19770
  /**
17542
19771
  * 400
17543
19772
  */
@@ -17581,9 +19810,9 @@ type $OpenApiTs = {
17581
19810
  };
17582
19811
  };
17583
19812
  };
17584
- '/api/v1/misc/reddit/post': {
19813
+ '/api/v1/misc/mastodon/status': {
17585
19814
  patch: {
17586
- req: MiscRedditEditPostData;
19815
+ req: MiscMastodonEditStatusData;
17587
19816
  res: {
17588
19817
  /**
17589
19818
  * 200
@@ -17634,52 +19863,14 @@ type $OpenApiTs = {
17634
19863
  };
17635
19864
  };
17636
19865
  };
17637
- };
17638
- '/api/v1/misc/instagram/tags': {
17639
- get: {
17640
- req: MiscInstagramBusinessDiscoveryData;
19866
+ delete: {
19867
+ req: MiscMastodonDeleteStatusData;
17641
19868
  res: {
17642
19869
  /**
17643
19870
  * 200
17644
19871
  */
17645
19872
  200: {
17646
- /**
17647
- * Whether the user exists and is a Business/Creator account
17648
- */
17649
- exists: boolean;
17650
- /**
17651
- * User data if exists, null otherwise
17652
- */
17653
- data: {
17654
- /**
17655
- * Instagram User ID
17656
- */
17657
- id: string;
17658
- /**
17659
- * Instagram username
17660
- */
17661
- username: string;
17662
- /**
17663
- * Number of followers
17664
- */
17665
- followers_count: number;
17666
- /**
17667
- * Number of media posts
17668
- */
17669
- media_count: number;
17670
- /**
17671
- * Profile picture URL if available
17672
- */
17673
- profile_picture_url?: string;
17674
- /**
17675
- * User biography if available
17676
- */
17677
- biography?: string;
17678
- /**
17679
- * Full name if available
17680
- */
17681
- name?: string;
17682
- } | null;
19873
+ success: boolean;
17683
19874
  };
17684
19875
  /**
17685
19876
  * 400
@@ -17724,9 +19915,9 @@ type $OpenApiTs = {
17724
19915
  };
17725
19916
  };
17726
19917
  };
17727
- '/api/v1/misc/facebook/post': {
19918
+ '/api/v1/misc/slack/message': {
17728
19919
  patch: {
17729
- req: MiscFacebookEditPostData;
19920
+ req: MiscSlackEditMessageData;
17730
19921
  res: {
17731
19922
  /**
17732
19923
  * 200
@@ -17777,17 +19968,67 @@ type $OpenApiTs = {
17777
19968
  };
17778
19969
  };
17779
19970
  };
19971
+ delete: {
19972
+ req: MiscSlackDeleteMessageData;
19973
+ res: {
19974
+ /**
19975
+ * 200
19976
+ */
19977
+ 200: {
19978
+ success: boolean;
19979
+ };
19980
+ /**
19981
+ * 400
19982
+ */
19983
+ 400: {
19984
+ message: string;
19985
+ issues?: Array<{
19986
+ message: string;
19987
+ path?: Array<(string | number)> | null;
19988
+ }> | null;
19989
+ };
19990
+ /**
19991
+ * 401
19992
+ */
19993
+ 401: {
19994
+ message: string;
19995
+ };
19996
+ /**
19997
+ * 403
19998
+ */
19999
+ 403: {
20000
+ message: string;
20001
+ };
20002
+ /**
20003
+ * 404
20004
+ */
20005
+ 404: {
20006
+ message: string;
20007
+ };
20008
+ /**
20009
+ * 429
20010
+ */
20011
+ 429: {
20012
+ message: string;
20013
+ };
20014
+ /**
20015
+ * 500
20016
+ */
20017
+ 500: {
20018
+ message: string;
20019
+ };
20020
+ };
20021
+ };
17780
20022
  };
17781
- '/api/v1/misc/pinterest/pin': {
17782
- patch: {
17783
- req: MiscPinterestEditPinData;
20023
+ '/api/v1/misc/bluesky/post': {
20024
+ delete: {
20025
+ req: MiscBlueskyDeletePostData;
17784
20026
  res: {
17785
20027
  /**
17786
20028
  * 200
17787
20029
  */
17788
20030
  200: {
17789
20031
  success: boolean;
17790
- permalink: string;
17791
20032
  };
17792
20033
  /**
17793
20034
  * 400
@@ -17832,16 +20073,15 @@ type $OpenApiTs = {
17832
20073
  };
17833
20074
  };
17834
20075
  };
17835
- '/api/v1/misc/mastodon/status': {
17836
- patch: {
17837
- req: MiscMastodonEditStatusData;
20076
+ '/api/v1/misc/twitter/tweet': {
20077
+ delete: {
20078
+ req: MiscTwitterDeleteTweetData;
17838
20079
  res: {
17839
20080
  /**
17840
20081
  * 200
17841
20082
  */
17842
20083
  200: {
17843
20084
  success: boolean;
17844
- permalink: string;
17845
20085
  };
17846
20086
  /**
17847
20087
  * 400
@@ -17886,16 +20126,15 @@ type $OpenApiTs = {
17886
20126
  };
17887
20127
  };
17888
20128
  };
17889
- '/api/v1/misc/slack/message': {
17890
- patch: {
17891
- req: MiscSlackEditMessageData;
20129
+ '/api/v1/misc/discord/message': {
20130
+ delete: {
20131
+ req: MiscDiscordDeleteMessageData;
17892
20132
  res: {
17893
20133
  /**
17894
20134
  * 200
17895
20135
  */
17896
20136
  200: {
17897
20137
  success: boolean;
17898
- permalink: string;
17899
20138
  };
17900
20139
  /**
17901
20140
  * 400
@@ -17940,6 +20179,127 @@ type $OpenApiTs = {
17940
20179
  };
17941
20180
  };
17942
20181
  };
20182
+ '/api/v1/misc/tiktok/cml/trending-list': {
20183
+ get: {
20184
+ req: MiscTiktokGetCommercialMusicTrendingListData;
20185
+ res: {
20186
+ /**
20187
+ * List of trending tracks.
20188
+ */
20189
+ 200: Array<{
20190
+ /**
20191
+ * The name of the commercial music track.
20192
+ */
20193
+ commercial_music_name: string;
20194
+ /**
20195
+ * Track duration in seconds.
20196
+ */
20197
+ duration: number;
20198
+ /**
20199
+ * Thumbnail image URL for the track.
20200
+ */
20201
+ thumbnail_url: string;
20202
+ /**
20203
+ * Artist name.
20204
+ */
20205
+ artist: string;
20206
+ /**
20207
+ * Track preview URL (valid for six hours).
20208
+ */
20209
+ preview_url?: string | null;
20210
+ /**
20211
+ * List of genres associated with the track.
20212
+ */
20213
+ genres?: Array<(string)>;
20214
+ /**
20215
+ * Current rank position in the selected region.
20216
+ */
20217
+ rank_position: string;
20218
+ /**
20219
+ * Historical ranking data (up to 30 days).
20220
+ */
20221
+ trending_history?: Array<{
20222
+ /**
20223
+ * Date in YYYY-MM-DD format.
20224
+ */
20225
+ date: string;
20226
+ /**
20227
+ * Rank position on a specific date. Can be null if not ranked.
20228
+ */
20229
+ rank_position_daily?: string | null;
20230
+ }>;
20231
+ full_duration_song_clip?: {
20232
+ /**
20233
+ * Track preview URL (valid for six hours).
20234
+ */
20235
+ preview_url?: string | null;
20236
+ /**
20237
+ * Track duration in seconds.
20238
+ */
20239
+ duration: number;
20240
+ /**
20241
+ * Track clip ID that can be used as music_sound_id in publish endpoint.
20242
+ */
20243
+ song_clip_id: string;
20244
+ } | null;
20245
+ trending_song_clip?: {
20246
+ /**
20247
+ * Track preview URL (valid for six hours).
20248
+ */
20249
+ preview_url?: string | null;
20250
+ /**
20251
+ * Track duration in seconds.
20252
+ */
20253
+ duration: number;
20254
+ /**
20255
+ * Track clip ID that can be used as music_sound_id in publish endpoint.
20256
+ */
20257
+ song_clip_id: string;
20258
+ } | null;
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
+ };
17943
20303
  '/api/v1/post-history-import/': {
17944
20304
  post: {
17945
20305
  req: PostImportCreateData;
@@ -18621,6 +20981,18 @@ declare class AnalyticsService {
18621
20981
  * @throws ApiError
18622
20982
  */
18623
20983
  analyticsGetPostAnalyticsRaw(data: AnalyticsGetPostAnalyticsRawData): CancelablePromise<AnalyticsGetPostAnalyticsRawResponse>;
20984
+ /**
20985
+ * Get Bulk Post Analytics
20986
+ * Retrieve analytics for multiple posts in a single request. Maximum 60 posts per request, paginated with 20 per page.
20987
+ * @param data The data for the request.
20988
+ * @param data.postIds
20989
+ * @param data.platformType
20990
+ * @param data.page
20991
+ * @param data.limit
20992
+ * @returns unknown 200
20993
+ * @throws ApiError
20994
+ */
20995
+ analyticsGetBulkPostAnalytics(data: AnalyticsGetBulkPostAnalyticsData): CancelablePromise<AnalyticsGetBulkPostAnalyticsResponse>;
18624
20996
  /**
18625
20997
  * Force refresh social account analytics
18626
20998
  * @param data The data for the request.
@@ -18772,6 +21144,15 @@ declare class MiscService {
18772
21144
  * @throws ApiError
18773
21145
  */
18774
21146
  miscYoutubeEditVideo(data?: MiscYoutubeEditVideoData): CancelablePromise<MiscYoutubeEditVideoResponse>;
21147
+ /**
21148
+ * Delete a YouTube video
21149
+ * Permanently delete a published YouTube video.
21150
+ * @param data The data for the request.
21151
+ * @param data.requestBody Body
21152
+ * @returns unknown 200
21153
+ * @throws ApiError
21154
+ */
21155
+ miscYoutubeDeleteVideo(data?: MiscYoutubeDeleteVideoData): CancelablePromise<MiscYoutubeDeleteVideoResponse>;
18775
21156
  /**
18776
21157
  * Get YouTube video categories
18777
21158
  * Retrieve the list of video categories that can be associated with YouTube videos for a specific region.
@@ -18819,6 +21200,15 @@ declare class MiscService {
18819
21200
  * @throws ApiError
18820
21201
  */
18821
21202
  miscLinkedinEditPost(data?: MiscLinkedinEditPostData): CancelablePromise<MiscLinkedinEditPostResponse>;
21203
+ /**
21204
+ * Delete a LinkedIn post
21205
+ * Permanently delete a published LinkedIn post.
21206
+ * @param data The data for the request.
21207
+ * @param data.requestBody Body
21208
+ * @returns unknown 200
21209
+ * @throws ApiError
21210
+ */
21211
+ miscLinkedinDeletePost(data?: MiscLinkedinDeletePostData): CancelablePromise<MiscLinkedinDeletePostResponse>;
18822
21212
  /**
18823
21213
  * Add a media item (photo/video) using uploadId and category
18824
21214
  * @param data The data for the request.
@@ -18827,6 +21217,76 @@ declare class MiscService {
18827
21217
  * @throws ApiError
18828
21218
  */
18829
21219
  miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
21220
+ /**
21221
+ * Delete a Google Business post
21222
+ * Permanently delete a published Google Business post.
21223
+ * @param data The data for the request.
21224
+ * @param data.requestBody Body
21225
+ * @returns unknown 200
21226
+ * @throws ApiError
21227
+ */
21228
+ miscGoogleBusinessDeletePost(data?: MiscGoogleBusinessDeletePostData): CancelablePromise<MiscGoogleBusinessDeletePostResponse>;
21229
+ /**
21230
+ * Start a new Google Reviews import
21231
+ * @param data The data for the request.
21232
+ * @param data.requestBody Body
21233
+ * @returns unknown 201
21234
+ * @throws ApiError
21235
+ */
21236
+ miscGoogleBusinessImportReviews(data?: MiscGoogleBusinessImportReviewsData): CancelablePromise<MiscGoogleBusinessImportReviewsResponse>;
21237
+ /**
21238
+ * Get review import status list
21239
+ * @param data The data for the request.
21240
+ * @param data.teamId
21241
+ * @returns unknown 200
21242
+ * @throws ApiError
21243
+ */
21244
+ miscGoogleBusinessGetReviewImportStatus(data: MiscGoogleBusinessGetReviewImportStatusData): CancelablePromise<MiscGoogleBusinessGetReviewImportStatusResponse>;
21245
+ /**
21246
+ * Get review import by ID
21247
+ * @param data The data for the request.
21248
+ * @param data.importId
21249
+ * @returns unknown 200
21250
+ * @throws ApiError
21251
+ */
21252
+ miscGoogleBusinessGetReviewImportById(data: MiscGoogleBusinessGetReviewImportByIdData): CancelablePromise<MiscGoogleBusinessGetReviewImportByIdResponse>;
21253
+ /**
21254
+ * List imported Google Reviews
21255
+ * @param data The data for the request.
21256
+ * @param data.teamId
21257
+ * @param data.limit
21258
+ * @param data.offset
21259
+ * @returns unknown 200
21260
+ * @throws ApiError
21261
+ */
21262
+ miscGoogleBusinessGetReviews(data: MiscGoogleBusinessGetReviewsData): CancelablePromise<MiscGoogleBusinessGetReviewsResponse>;
21263
+ /**
21264
+ * Get a single imported Google Review
21265
+ * @param data The data for the request.
21266
+ * @param data.reviewId
21267
+ * @param data.teamId
21268
+ * @returns unknown 200
21269
+ * @throws ApiError
21270
+ */
21271
+ miscGoogleBusinessGetReviewById(data: MiscGoogleBusinessGetReviewByIdData): CancelablePromise<MiscGoogleBusinessGetReviewByIdResponse>;
21272
+ /**
21273
+ * Reply to a Google Review (creates or updates the owner reply)
21274
+ * @param data The data for the request.
21275
+ * @param data.reviewId
21276
+ * @param data.requestBody Body
21277
+ * @returns unknown 200
21278
+ * @throws ApiError
21279
+ */
21280
+ miscGoogleBusinessReplyToReview(data: MiscGoogleBusinessReplyToReviewData): CancelablePromise<MiscGoogleBusinessReplyToReviewResponse>;
21281
+ /**
21282
+ * Delete the owner reply from a Google Review
21283
+ * @param data The data for the request.
21284
+ * @param data.reviewId
21285
+ * @param data.requestBody Body
21286
+ * @returns unknown 200
21287
+ * @throws ApiError
21288
+ */
21289
+ miscGoogleBusinessDeleteReviewReply(data: MiscGoogleBusinessDeleteReviewReplyData): CancelablePromise<MiscGoogleBusinessDeleteReviewReplyResponse>;
18830
21290
  /**
18831
21291
  * Get subreddit post requirements (flair required/enabled)
18832
21292
  * @param data The data for the request.
@@ -18854,6 +21314,15 @@ declare class MiscService {
18854
21314
  * @throws ApiError
18855
21315
  */
18856
21316
  miscRedditEditPost(data?: MiscRedditEditPostData): CancelablePromise<MiscRedditEditPostResponse>;
21317
+ /**
21318
+ * Delete a Reddit post
21319
+ * Permanently delete a published Reddit post.
21320
+ * @param data The data for the request.
21321
+ * @param data.requestBody Body
21322
+ * @returns unknown 200
21323
+ * @throws ApiError
21324
+ */
21325
+ miscRedditDeletePost(data?: MiscRedditDeletePostData): CancelablePromise<MiscRedditDeletePostResponse>;
18857
21326
  /**
18858
21327
  * Search for Instagram Business/Creator user by username
18859
21328
  * Checks if an Instagram user exists and returns their public profile data. Only works for Business and Creator accounts. Returns followers_count, media_count, and profile picture if available.
@@ -18873,6 +21342,15 @@ declare class MiscService {
18873
21342
  * @throws ApiError
18874
21343
  */
18875
21344
  miscFacebookEditPost(data?: MiscFacebookEditPostData): CancelablePromise<MiscFacebookEditPostResponse>;
21345
+ /**
21346
+ * Delete a Facebook post
21347
+ * Permanently delete a published Facebook post or reel.
21348
+ * @param data The data for the request.
21349
+ * @param data.requestBody Body
21350
+ * @returns unknown 200
21351
+ * @throws ApiError
21352
+ */
21353
+ miscFacebookDeletePost(data?: MiscFacebookDeletePostData): CancelablePromise<MiscFacebookDeletePostResponse>;
18876
21354
  /**
18877
21355
  * @deprecated
18878
21356
  * [DISABLED] Edit an existing Pinterest pin
@@ -18883,6 +21361,15 @@ declare class MiscService {
18883
21361
  * @throws ApiError
18884
21362
  */
18885
21363
  miscPinterestEditPin(data?: MiscPinterestEditPinData): CancelablePromise<MiscPinterestEditPinResponse>;
21364
+ /**
21365
+ * Delete a Pinterest pin
21366
+ * Permanently delete a published Pinterest pin.
21367
+ * @param data The data for the request.
21368
+ * @param data.requestBody Body
21369
+ * @returns unknown 200
21370
+ * @throws ApiError
21371
+ */
21372
+ miscPinterestDeletePin(data?: MiscPinterestDeletePinData): CancelablePromise<MiscPinterestDeletePinResponse>;
18886
21373
  /**
18887
21374
  * Edit an existing Mastodon status
18888
21375
  * Update the text content and spoiler text of a published Mastodon status.
@@ -18892,6 +21379,15 @@ declare class MiscService {
18892
21379
  * @throws ApiError
18893
21380
  */
18894
21381
  miscMastodonEditStatus(data?: MiscMastodonEditStatusData): CancelablePromise<MiscMastodonEditStatusResponse>;
21382
+ /**
21383
+ * Delete a Mastodon status
21384
+ * Permanently delete a published Mastodon status.
21385
+ * @param data The data for the request.
21386
+ * @param data.requestBody Body
21387
+ * @returns unknown 200
21388
+ * @throws ApiError
21389
+ */
21390
+ miscMastodonDeleteStatus(data?: MiscMastodonDeleteStatusData): CancelablePromise<MiscMastodonDeleteStatusResponse>;
18895
21391
  /**
18896
21392
  * Edit an existing Slack message
18897
21393
  * Update the text content of a published Slack message.
@@ -18901,6 +21397,53 @@ declare class MiscService {
18901
21397
  * @throws ApiError
18902
21398
  */
18903
21399
  miscSlackEditMessage(data?: MiscSlackEditMessageData): CancelablePromise<MiscSlackEditMessageResponse>;
21400
+ /**
21401
+ * Delete a Slack message
21402
+ * Permanently delete a published Slack message.
21403
+ * @param data The data for the request.
21404
+ * @param data.requestBody Body
21405
+ * @returns unknown 200
21406
+ * @throws ApiError
21407
+ */
21408
+ miscSlackDeleteMessage(data?: MiscSlackDeleteMessageData): CancelablePromise<MiscSlackDeleteMessageResponse>;
21409
+ /**
21410
+ * Delete a Bluesky post
21411
+ * Permanently delete a published Bluesky post.
21412
+ * @param data The data for the request.
21413
+ * @param data.requestBody Body
21414
+ * @returns unknown 200
21415
+ * @throws ApiError
21416
+ */
21417
+ miscBlueskyDeletePost(data?: MiscBlueskyDeletePostData): CancelablePromise<MiscBlueskyDeletePostResponse>;
21418
+ /**
21419
+ * Delete a Twitter/X tweet
21420
+ * Permanently delete a published Twitter/X tweet.
21421
+ * @param data The data for the request.
21422
+ * @param data.requestBody Body
21423
+ * @returns unknown 200
21424
+ * @throws ApiError
21425
+ */
21426
+ miscTwitterDeleteTweet(data?: MiscTwitterDeleteTweetData): CancelablePromise<MiscTwitterDeleteTweetResponse>;
21427
+ /**
21428
+ * Delete a Discord message
21429
+ * Permanently delete a published Discord message.
21430
+ * @param data The data for the request.
21431
+ * @param data.requestBody Body
21432
+ * @returns unknown 200
21433
+ * @throws ApiError
21434
+ */
21435
+ miscDiscordDeleteMessage(data?: MiscDiscordDeleteMessageData): CancelablePromise<MiscDiscordDeleteMessageResponse>;
21436
+ /**
21437
+ * Get popular tracks from TikTok Commercial Music Library
21438
+ * Retrieve up to 100 popular tracks pre-cleared for organic content and ad creation from TikTok CML.
21439
+ * @param data The data for the request.
21440
+ * @param data.teamId
21441
+ * @param data.genre Genre filter for commercial music results.
21442
+ * @param data.dateRange Timeframe for popular tracks ranking.
21443
+ * @returns unknown List of trending tracks.
21444
+ * @throws ApiError
21445
+ */
21446
+ miscTiktokGetCommercialMusicTrendingList(data: MiscTiktokGetCommercialMusicTrendingListData): CancelablePromise<MiscTiktokGetCommercialMusicTrendingListResponse>;
18904
21447
  }
18905
21448
  declare class YoutubeService {
18906
21449
  readonly httpRequest: BaseHttpRequest;
@@ -18983,6 +21526,15 @@ declare class YoutubeService {
18983
21526
  * @throws ApiError
18984
21527
  */
18985
21528
  miscYoutubeEditVideo(data?: MiscYoutubeEditVideoData): CancelablePromise<MiscYoutubeEditVideoResponse>;
21529
+ /**
21530
+ * Delete a YouTube video
21531
+ * Permanently delete a published YouTube video.
21532
+ * @param data The data for the request.
21533
+ * @param data.requestBody Body
21534
+ * @returns unknown 200
21535
+ * @throws ApiError
21536
+ */
21537
+ miscYoutubeDeleteVideo(data?: MiscYoutubeDeleteVideoData): CancelablePromise<MiscYoutubeDeleteVideoResponse>;
18986
21538
  /**
18987
21539
  * Get YouTube video categories
18988
21540
  * Retrieve the list of video categories that can be associated with YouTube videos for a specific region.
@@ -19034,6 +21586,15 @@ declare class LinkedinService {
19034
21586
  * @throws ApiError
19035
21587
  */
19036
21588
  miscLinkedinEditPost(data?: MiscLinkedinEditPostData): CancelablePromise<MiscLinkedinEditPostResponse>;
21589
+ /**
21590
+ * Delete a LinkedIn post
21591
+ * Permanently delete a published LinkedIn post.
21592
+ * @param data The data for the request.
21593
+ * @param data.requestBody Body
21594
+ * @returns unknown 200
21595
+ * @throws ApiError
21596
+ */
21597
+ miscLinkedinDeletePost(data?: MiscLinkedinDeletePostData): CancelablePromise<MiscLinkedinDeletePostResponse>;
19037
21598
  }
19038
21599
  declare class GoogleBusinessService {
19039
21600
  readonly httpRequest: BaseHttpRequest;
@@ -19046,6 +21607,76 @@ declare class GoogleBusinessService {
19046
21607
  * @throws ApiError
19047
21608
  */
19048
21609
  miscGoogleBusinessAddMedia(data?: MiscGoogleBusinessAddMediaData): CancelablePromise<MiscGoogleBusinessAddMediaResponse>;
21610
+ /**
21611
+ * Delete a Google Business post
21612
+ * Permanently delete a published Google Business post.
21613
+ * @param data The data for the request.
21614
+ * @param data.requestBody Body
21615
+ * @returns unknown 200
21616
+ * @throws ApiError
21617
+ */
21618
+ miscGoogleBusinessDeletePost(data?: MiscGoogleBusinessDeletePostData): CancelablePromise<MiscGoogleBusinessDeletePostResponse>;
21619
+ /**
21620
+ * Start a new Google Reviews import
21621
+ * @param data The data for the request.
21622
+ * @param data.requestBody Body
21623
+ * @returns unknown 201
21624
+ * @throws ApiError
21625
+ */
21626
+ miscGoogleBusinessImportReviews(data?: MiscGoogleBusinessImportReviewsData): CancelablePromise<MiscGoogleBusinessImportReviewsResponse>;
21627
+ /**
21628
+ * Get review import status list
21629
+ * @param data The data for the request.
21630
+ * @param data.teamId
21631
+ * @returns unknown 200
21632
+ * @throws ApiError
21633
+ */
21634
+ miscGoogleBusinessGetReviewImportStatus(data: MiscGoogleBusinessGetReviewImportStatusData): CancelablePromise<MiscGoogleBusinessGetReviewImportStatusResponse>;
21635
+ /**
21636
+ * Get review import by ID
21637
+ * @param data The data for the request.
21638
+ * @param data.importId
21639
+ * @returns unknown 200
21640
+ * @throws ApiError
21641
+ */
21642
+ miscGoogleBusinessGetReviewImportById(data: MiscGoogleBusinessGetReviewImportByIdData): CancelablePromise<MiscGoogleBusinessGetReviewImportByIdResponse>;
21643
+ /**
21644
+ * List imported Google Reviews
21645
+ * @param data The data for the request.
21646
+ * @param data.teamId
21647
+ * @param data.limit
21648
+ * @param data.offset
21649
+ * @returns unknown 200
21650
+ * @throws ApiError
21651
+ */
21652
+ miscGoogleBusinessGetReviews(data: MiscGoogleBusinessGetReviewsData): CancelablePromise<MiscGoogleBusinessGetReviewsResponse>;
21653
+ /**
21654
+ * Get a single imported Google Review
21655
+ * @param data The data for the request.
21656
+ * @param data.reviewId
21657
+ * @param data.teamId
21658
+ * @returns unknown 200
21659
+ * @throws ApiError
21660
+ */
21661
+ miscGoogleBusinessGetReviewById(data: MiscGoogleBusinessGetReviewByIdData): CancelablePromise<MiscGoogleBusinessGetReviewByIdResponse>;
21662
+ /**
21663
+ * Reply to a Google Review (creates or updates the owner reply)
21664
+ * @param data The data for the request.
21665
+ * @param data.reviewId
21666
+ * @param data.requestBody Body
21667
+ * @returns unknown 200
21668
+ * @throws ApiError
21669
+ */
21670
+ miscGoogleBusinessReplyToReview(data: MiscGoogleBusinessReplyToReviewData): CancelablePromise<MiscGoogleBusinessReplyToReviewResponse>;
21671
+ /**
21672
+ * Delete the owner reply from a Google Review
21673
+ * @param data The data for the request.
21674
+ * @param data.reviewId
21675
+ * @param data.requestBody Body
21676
+ * @returns unknown 200
21677
+ * @throws ApiError
21678
+ */
21679
+ miscGoogleBusinessDeleteReviewReply(data: MiscGoogleBusinessDeleteReviewReplyData): CancelablePromise<MiscGoogleBusinessDeleteReviewReplyResponse>;
19049
21680
  }
19050
21681
  declare class RedditService {
19051
21682
  readonly httpRequest: BaseHttpRequest;
@@ -19077,6 +21708,15 @@ declare class RedditService {
19077
21708
  * @throws ApiError
19078
21709
  */
19079
21710
  miscRedditEditPost(data?: MiscRedditEditPostData): CancelablePromise<MiscRedditEditPostResponse>;
21711
+ /**
21712
+ * Delete a Reddit post
21713
+ * Permanently delete a published Reddit post.
21714
+ * @param data The data for the request.
21715
+ * @param data.requestBody Body
21716
+ * @returns unknown 200
21717
+ * @throws ApiError
21718
+ */
21719
+ miscRedditDeletePost(data?: MiscRedditDeletePostData): CancelablePromise<MiscRedditDeletePostResponse>;
19080
21720
  }
19081
21721
  declare class InstagramService {
19082
21722
  readonly httpRequest: BaseHttpRequest;
@@ -19104,6 +21744,15 @@ declare class FacebookService {
19104
21744
  * @throws ApiError
19105
21745
  */
19106
21746
  miscFacebookEditPost(data?: MiscFacebookEditPostData): CancelablePromise<MiscFacebookEditPostResponse>;
21747
+ /**
21748
+ * Delete a Facebook post
21749
+ * Permanently delete a published Facebook post or reel.
21750
+ * @param data The data for the request.
21751
+ * @param data.requestBody Body
21752
+ * @returns unknown 200
21753
+ * @throws ApiError
21754
+ */
21755
+ miscFacebookDeletePost(data?: MiscFacebookDeletePostData): CancelablePromise<MiscFacebookDeletePostResponse>;
19107
21756
  }
19108
21757
  declare class PinterestService {
19109
21758
  readonly httpRequest: BaseHttpRequest;
@@ -19118,6 +21767,15 @@ declare class PinterestService {
19118
21767
  * @throws ApiError
19119
21768
  */
19120
21769
  miscPinterestEditPin(data?: MiscPinterestEditPinData): CancelablePromise<MiscPinterestEditPinResponse>;
21770
+ /**
21771
+ * Delete a Pinterest pin
21772
+ * Permanently delete a published Pinterest pin.
21773
+ * @param data The data for the request.
21774
+ * @param data.requestBody Body
21775
+ * @returns unknown 200
21776
+ * @throws ApiError
21777
+ */
21778
+ miscPinterestDeletePin(data?: MiscPinterestDeletePinData): CancelablePromise<MiscPinterestDeletePinResponse>;
19121
21779
  }
19122
21780
  declare class MastodonService {
19123
21781
  readonly httpRequest: BaseHttpRequest;
@@ -19131,6 +21789,15 @@ declare class MastodonService {
19131
21789
  * @throws ApiError
19132
21790
  */
19133
21791
  miscMastodonEditStatus(data?: MiscMastodonEditStatusData): CancelablePromise<MiscMastodonEditStatusResponse>;
21792
+ /**
21793
+ * Delete a Mastodon status
21794
+ * Permanently delete a published Mastodon status.
21795
+ * @param data The data for the request.
21796
+ * @param data.requestBody Body
21797
+ * @returns unknown 200
21798
+ * @throws ApiError
21799
+ */
21800
+ miscMastodonDeleteStatus(data?: MiscMastodonDeleteStatusData): CancelablePromise<MiscMastodonDeleteStatusResponse>;
19134
21801
  }
19135
21802
  declare class SlackService {
19136
21803
  readonly httpRequest: BaseHttpRequest;
@@ -19144,6 +21811,69 @@ declare class SlackService {
19144
21811
  * @throws ApiError
19145
21812
  */
19146
21813
  miscSlackEditMessage(data?: MiscSlackEditMessageData): CancelablePromise<MiscSlackEditMessageResponse>;
21814
+ /**
21815
+ * Delete a Slack message
21816
+ * Permanently delete a published Slack message.
21817
+ * @param data The data for the request.
21818
+ * @param data.requestBody Body
21819
+ * @returns unknown 200
21820
+ * @throws ApiError
21821
+ */
21822
+ miscSlackDeleteMessage(data?: MiscSlackDeleteMessageData): CancelablePromise<MiscSlackDeleteMessageResponse>;
21823
+ }
21824
+ declare class BlueskyService {
21825
+ readonly httpRequest: BaseHttpRequest;
21826
+ constructor(httpRequest: BaseHttpRequest);
21827
+ /**
21828
+ * Delete a Bluesky post
21829
+ * Permanently delete a published Bluesky post.
21830
+ * @param data The data for the request.
21831
+ * @param data.requestBody Body
21832
+ * @returns unknown 200
21833
+ * @throws ApiError
21834
+ */
21835
+ miscBlueskyDeletePost(data?: MiscBlueskyDeletePostData): CancelablePromise<MiscBlueskyDeletePostResponse>;
21836
+ }
21837
+ declare class TwitterService {
21838
+ readonly httpRequest: BaseHttpRequest;
21839
+ constructor(httpRequest: BaseHttpRequest);
21840
+ /**
21841
+ * Delete a Twitter/X tweet
21842
+ * Permanently delete a published Twitter/X tweet.
21843
+ * @param data The data for the request.
21844
+ * @param data.requestBody Body
21845
+ * @returns unknown 200
21846
+ * @throws ApiError
21847
+ */
21848
+ miscTwitterDeleteTweet(data?: MiscTwitterDeleteTweetData): CancelablePromise<MiscTwitterDeleteTweetResponse>;
21849
+ }
21850
+ declare class DiscordService {
21851
+ readonly httpRequest: BaseHttpRequest;
21852
+ constructor(httpRequest: BaseHttpRequest);
21853
+ /**
21854
+ * Delete a Discord message
21855
+ * Permanently delete a published Discord message.
21856
+ * @param data The data for the request.
21857
+ * @param data.requestBody Body
21858
+ * @returns unknown 200
21859
+ * @throws ApiError
21860
+ */
21861
+ miscDiscordDeleteMessage(data?: MiscDiscordDeleteMessageData): CancelablePromise<MiscDiscordDeleteMessageResponse>;
21862
+ }
21863
+ declare class TiktokService {
21864
+ readonly httpRequest: BaseHttpRequest;
21865
+ constructor(httpRequest: BaseHttpRequest);
21866
+ /**
21867
+ * Get popular tracks from TikTok Commercial Music Library
21868
+ * Retrieve up to 100 popular tracks pre-cleared for organic content and ad creation from TikTok CML.
21869
+ * @param data The data for the request.
21870
+ * @param data.teamId
21871
+ * @param data.genre Genre filter for commercial music results.
21872
+ * @param data.dateRange Timeframe for popular tracks ranking.
21873
+ * @returns unknown List of trending tracks.
21874
+ * @throws ApiError
21875
+ */
21876
+ miscTiktokGetCommercialMusicTrendingList(data: MiscTiktokGetCommercialMusicTrendingListData): CancelablePromise<MiscTiktokGetCommercialMusicTrendingListResponse>;
19147
21877
  }
19148
21878
  declare class PostImportService {
19149
21879
  readonly httpRequest: BaseHttpRequest;
@@ -19199,7 +21929,9 @@ type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
19199
21929
  declare class Client {
19200
21930
  readonly analytics: AnalyticsService;
19201
21931
  readonly app: AppService;
21932
+ readonly bluesky: BlueskyService;
19202
21933
  readonly comment: CommentService;
21934
+ readonly discord: DiscordService;
19203
21935
  readonly facebook: FacebookService;
19204
21936
  readonly googleBusiness: GoogleBusinessService;
19205
21937
  readonly instagram: InstagramService;
@@ -19214,6 +21946,8 @@ declare class Client {
19214
21946
  readonly slack: SlackService;
19215
21947
  readonly socialAccount: SocialAccountService;
19216
21948
  readonly team: TeamService;
21949
+ readonly tiktok: TiktokService;
21950
+ readonly twitter: TwitterService;
19217
21951
  readonly upload: UploadService;
19218
21952
  readonly youtube: YoutubeService;
19219
21953
  readonly request: BaseHttpRequest;
@@ -19279,4 +22013,4 @@ declare class Bundlesocial extends Client {
19279
22013
  constructor(apiKey: string, options?: OpenAPIConfig);
19280
22014
  }
19281
22015
 
19282
- export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, 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 };
22016
+ export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };