bundlesocial 2.36.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;
@@ -7868,66 +8236,233 @@ type MiscGoogleBusinessDeletePostData = {
7868
8236
  type MiscGoogleBusinessDeletePostResponse = {
7869
8237
  success: boolean;
7870
8238
  };
7871
- type MiscRedditGetPostRequirementsData = {
7872
- subreddit: string;
7873
- teamId: string;
7874
- };
7875
- type MiscRedditGetPostRequirementsResponse = {
7876
- isFlairRequired: boolean;
7877
- isFlairEnabled: boolean;
7878
- };
7879
- type MiscRedditGetSubredditFlairsData = {
7880
- subreddit: string;
7881
- teamId: string;
7882
- };
7883
- type MiscRedditGetSubredditFlairsResponse = Array<{
7884
- id?: string;
7885
- text?: string;
7886
- cssClass?: string;
7887
- textColor?: string;
7888
- backgroundColor?: string;
7889
- modOnly?: boolean;
7890
- allowableContent?: string;
7891
- maxEmojis?: number;
7892
- }>;
7893
- type MiscRedditEditPostData = {
8239
+ type MiscGoogleBusinessImportReviewsData = {
7894
8240
  /**
7895
8241
  * Body
7896
8242
  */
7897
8243
  requestBody?: {
7898
8244
  teamId: string;
7899
- /**
7900
- * The ID of the post to edit (without prefix)
7901
- */
7902
- postId: string;
7903
- /**
7904
- * The updated text content (selftext for text posts, works for all editable post types)
7905
- */
7906
- description: string;
8245
+ count: number;
7907
8246
  };
7908
8247
  };
7909
- type MiscRedditEditPostResponse = {
7910
- success: boolean;
7911
- permalink: string;
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;
7912
8262
  };
7913
- type MiscRedditDeletePostData = {
7914
- /**
7915
- * Body
7916
- */
7917
- requestBody?: {
8263
+ type MiscGoogleBusinessGetReviewImportStatusData = {
8264
+ teamId: string;
8265
+ };
8266
+ type MiscGoogleBusinessGetReviewImportStatusResponse = {
8267
+ imports: Array<{
8268
+ id: string;
7918
8269
  teamId: string;
7919
- /**
7920
- * The ID of the post in Bundle Social
7921
- */
7922
- postId: string;
7923
- };
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
+ }>;
7924
8282
  };
7925
- type MiscRedditDeletePostResponse = {
7926
- success: boolean;
8283
+ type MiscGoogleBusinessGetReviewImportByIdData = {
8284
+ importId: string;
7927
8285
  };
7928
- type MiscInstagramBusinessDiscoveryData = {
8286
+ type MiscGoogleBusinessGetReviewImportByIdResponse = {
8287
+ id: string;
7929
8288
  teamId: string;
7930
- /**
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<{
8419
+ id?: string;
8420
+ text?: string;
8421
+ cssClass?: string;
8422
+ textColor?: string;
8423
+ backgroundColor?: string;
8424
+ modOnly?: boolean;
8425
+ allowableContent?: string;
8426
+ maxEmojis?: number;
8427
+ }>;
8428
+ type MiscRedditEditPostData = {
8429
+ /**
8430
+ * Body
8431
+ */
8432
+ requestBody?: {
8433
+ teamId: string;
8434
+ /**
8435
+ * The ID of the post to edit (without prefix)
8436
+ */
8437
+ postId: string;
8438
+ /**
8439
+ * The updated text content (selftext for text posts, works for all editable post types)
8440
+ */
8441
+ description: string;
8442
+ };
8443
+ };
8444
+ type MiscRedditEditPostResponse = {
8445
+ success: boolean;
8446
+ permalink: string;
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
+ };
8463
+ type MiscInstagramBusinessDiscoveryData = {
8464
+ teamId: string;
8465
+ /**
7931
8466
  * Instagram username to search for
7932
8467
  */
7933
8468
  username: string;
@@ -8176,6 +8711,88 @@ type MiscDiscordDeleteMessageData = {
8176
8711
  type MiscDiscordDeleteMessageResponse = {
8177
8712
  success: boolean;
8178
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
+ }>;
8179
8796
  type PostImportCreateData = {
8180
8797
  /**
8181
8798
  * Body
@@ -10347,6 +10964,12 @@ type $OpenApiTs = {
10347
10964
  x: number;
10348
10965
  y: number;
10349
10966
  }> | null;
10967
+ /**
10968
+ * For Reels only. Trial reels are only shared to non-followers.
10969
+ */
10970
+ trialParams?: {
10971
+ graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
10972
+ } | null;
10350
10973
  } | null;
10351
10974
  THREADS?: {
10352
10975
  text?: string | null;
@@ -10361,6 +10984,7 @@ type $OpenApiTs = {
10361
10984
  */
10362
10985
  thumbnail?: string | null;
10363
10986
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
10987
+ photoCoverIndex?: number | null;
10364
10988
  /**
10365
10989
  * Set to true if the video is a paid partnership to promote a third-party business.
10366
10990
  */
@@ -10393,6 +11017,35 @@ type $OpenApiTs = {
10393
11017
  * If set to true, TikTok will automatically add music to the photos.
10394
11018
  */
10395
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;
10396
11049
  } | null;
10397
11050
  LINKEDIN?: {
10398
11051
  text: string;
@@ -10709,6 +11362,7 @@ type $OpenApiTs = {
10709
11362
  id?: string | null;
10710
11363
  shareId?: string | null;
10711
11364
  permalink?: string | null;
11365
+ status?: string | null;
10712
11366
  } | null;
10713
11367
  LINKEDIN?: {
10714
11368
  id?: string | null;
@@ -10978,6 +11632,12 @@ type $OpenApiTs = {
10978
11632
  x: number;
10979
11633
  y: number;
10980
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;
10981
11641
  } | null;
10982
11642
  THREADS?: {
10983
11643
  text?: string | null;
@@ -10992,6 +11652,7 @@ type $OpenApiTs = {
10992
11652
  */
10993
11653
  thumbnail?: string | null;
10994
11654
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
11655
+ photoCoverIndex?: number | null;
10995
11656
  /**
10996
11657
  * Set to true if the video is a paid partnership to promote a third-party business.
10997
11658
  */
@@ -11024,6 +11685,35 @@ type $OpenApiTs = {
11024
11685
  * If set to true, TikTok will automatically add music to the photos.
11025
11686
  */
11026
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;
11027
11717
  } | null;
11028
11718
  LINKEDIN?: {
11029
11719
  text: string;
@@ -11340,6 +12030,7 @@ type $OpenApiTs = {
11340
12030
  id?: string | null;
11341
12031
  shareId?: string | null;
11342
12032
  permalink?: string | null;
12033
+ status?: string | null;
11343
12034
  } | null;
11344
12035
  LINKEDIN?: {
11345
12036
  id?: string | null;
@@ -11539,6 +12230,12 @@ type $OpenApiTs = {
11539
12230
  x: number;
11540
12231
  y: number;
11541
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;
11542
12239
  } | null;
11543
12240
  THREADS?: {
11544
12241
  text?: string | null;
@@ -11553,6 +12250,7 @@ type $OpenApiTs = {
11553
12250
  */
11554
12251
  thumbnail?: string | null;
11555
12252
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
12253
+ photoCoverIndex?: number | null;
11556
12254
  /**
11557
12255
  * Set to true if the video is a paid partnership to promote a third-party business.
11558
12256
  */
@@ -11585,6 +12283,35 @@ type $OpenApiTs = {
11585
12283
  * If set to true, TikTok will automatically add music to the photos.
11586
12284
  */
11587
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;
11588
12315
  } | null;
11589
12316
  LINKEDIN?: {
11590
12317
  text: string;
@@ -11901,6 +12628,7 @@ type $OpenApiTs = {
11901
12628
  id?: string | null;
11902
12629
  shareId?: string | null;
11903
12630
  permalink?: string | null;
12631
+ status?: string | null;
11904
12632
  } | null;
11905
12633
  LINKEDIN?: {
11906
12634
  id?: string | null;
@@ -12103,6 +12831,12 @@ type $OpenApiTs = {
12103
12831
  x: number;
12104
12832
  y: number;
12105
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;
12106
12840
  } | null;
12107
12841
  THREADS?: {
12108
12842
  text?: string | null;
@@ -12117,6 +12851,7 @@ type $OpenApiTs = {
12117
12851
  */
12118
12852
  thumbnail?: string | null;
12119
12853
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
12854
+ photoCoverIndex?: number | null;
12120
12855
  /**
12121
12856
  * Set to true if the video is a paid partnership to promote a third-party business.
12122
12857
  */
@@ -12149,6 +12884,35 @@ type $OpenApiTs = {
12149
12884
  * If set to true, TikTok will automatically add music to the photos.
12150
12885
  */
12151
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;
12152
12916
  } | null;
12153
12917
  LINKEDIN?: {
12154
12918
  text: string;
@@ -12465,6 +13229,7 @@ type $OpenApiTs = {
12465
13229
  id?: string | null;
12466
13230
  shareId?: string | null;
12467
13231
  permalink?: string | null;
13232
+ status?: string | null;
12468
13233
  } | null;
12469
13234
  LINKEDIN?: {
12470
13235
  id?: string | null;
@@ -12736,6 +13501,12 @@ type $OpenApiTs = {
12736
13501
  x: number;
12737
13502
  y: number;
12738
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;
12739
13510
  } | null;
12740
13511
  THREADS?: {
12741
13512
  text?: string | null;
@@ -12750,6 +13521,7 @@ type $OpenApiTs = {
12750
13521
  */
12751
13522
  thumbnail?: string | null;
12752
13523
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
13524
+ photoCoverIndex?: number | null;
12753
13525
  /**
12754
13526
  * Set to true if the video is a paid partnership to promote a third-party business.
12755
13527
  */
@@ -12782,6 +13554,35 @@ type $OpenApiTs = {
12782
13554
  * If set to true, TikTok will automatically add music to the photos.
12783
13555
  */
12784
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;
12785
13586
  } | null;
12786
13587
  LINKEDIN?: {
12787
13588
  text: string;
@@ -13098,6 +13899,7 @@ type $OpenApiTs = {
13098
13899
  id?: string | null;
13099
13900
  shareId?: string | null;
13100
13901
  permalink?: string | null;
13902
+ status?: string | null;
13101
13903
  } | null;
13102
13904
  LINKEDIN?: {
13103
13905
  id?: string | null;
@@ -13299,6 +14101,12 @@ type $OpenApiTs = {
13299
14101
  x: number;
13300
14102
  y: number;
13301
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;
13302
14110
  } | null;
13303
14111
  THREADS?: {
13304
14112
  text?: string | null;
@@ -13313,6 +14121,7 @@ type $OpenApiTs = {
13313
14121
  */
13314
14122
  thumbnail?: string | null;
13315
14123
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
14124
+ photoCoverIndex?: number | null;
13316
14125
  /**
13317
14126
  * Set to true if the video is a paid partnership to promote a third-party business.
13318
14127
  */
@@ -13345,18 +14154,47 @@ type $OpenApiTs = {
13345
14154
  * If set to true, TikTok will automatically add music to the photos.
13346
14155
  */
13347
14156
  autoAddMusic?: boolean | null;
13348
- } | null;
13349
- LINKEDIN?: {
13350
- text: string;
13351
- uploadIds?: Array<(string)> | null;
13352
14157
  /**
13353
- * The URL to image uploaded on bundle.social.
14158
+ * If set to true, upload post as draft.
13354
14159
  */
13355
- thumbnail?: string | null;
14160
+ uploadToDraft?: boolean | null;
13356
14161
  /**
13357
- * Title for video or document posts. If not provided for videos, LinkedIn displays the posting date under the video.
14162
+ * Information about the commercial sound (track) used for TikTok publishing.
13358
14163
  */
13359
- mediaTitle?: string | null;
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;
14186
+ } | null;
14187
+ LINKEDIN?: {
14188
+ text: string;
14189
+ uploadIds?: Array<(string)> | null;
14190
+ /**
14191
+ * The URL to image uploaded on bundle.social.
14192
+ */
14193
+ thumbnail?: string | null;
14194
+ /**
14195
+ * Title for video or document posts. If not provided for videos, LinkedIn displays the posting date under the video.
14196
+ */
14197
+ mediaTitle?: string | null;
13360
14198
  privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
13361
14199
  /**
13362
14200
  * Set to true if the post shouldn't be displayed in the main feed.
@@ -13661,6 +14499,7 @@ type $OpenApiTs = {
13661
14499
  id?: string | null;
13662
14500
  shareId?: string | null;
13663
14501
  permalink?: string | null;
14502
+ status?: string | null;
13664
14503
  } | null;
13665
14504
  LINKEDIN?: {
13666
14505
  id?: string | null;
@@ -13968,6 +14807,12 @@ type $OpenApiTs = {
13968
14807
  x: number;
13969
14808
  y: number;
13970
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;
13971
14816
  } | null;
13972
14817
  THREADS?: {
13973
14818
  text?: string | null;
@@ -13982,6 +14827,7 @@ type $OpenApiTs = {
13982
14827
  */
13983
14828
  thumbnail?: string | null;
13984
14829
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
14830
+ photoCoverIndex?: number | null;
13985
14831
  /**
13986
14832
  * Set to true if the video is a paid partnership to promote a third-party business.
13987
14833
  */
@@ -14014,6 +14860,35 @@ type $OpenApiTs = {
14014
14860
  * If set to true, TikTok will automatically add music to the photos.
14015
14861
  */
14016
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;
14017
14892
  } | null;
14018
14893
  LINKEDIN?: {
14019
14894
  text: string;
@@ -14330,6 +15205,7 @@ type $OpenApiTs = {
14330
15205
  id?: string | null;
14331
15206
  shareId?: string | null;
14332
15207
  permalink?: string | null;
15208
+ status?: string | null;
14333
15209
  } | null;
14334
15210
  LINKEDIN?: {
14335
15211
  id?: string | null;
@@ -14649,6 +15525,12 @@ type $OpenApiTs = {
14649
15525
  x: number;
14650
15526
  y: number;
14651
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;
14652
15534
  } | null;
14653
15535
  THREADS?: {
14654
15536
  text?: string | null;
@@ -14663,6 +15545,7 @@ type $OpenApiTs = {
14663
15545
  */
14664
15546
  thumbnail?: string | null;
14665
15547
  privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
15548
+ photoCoverIndex?: number | null;
14666
15549
  /**
14667
15550
  * Set to true if the video is a paid partnership to promote a third-party business.
14668
15551
  */
@@ -14695,6 +15578,35 @@ type $OpenApiTs = {
14695
15578
  * If set to true, TikTok will automatically add music to the photos.
14696
15579
  */
14697
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;
14698
15610
  } | null;
14699
15611
  LINKEDIN?: {
14700
15612
  text: string;
@@ -15011,6 +15923,7 @@ type $OpenApiTs = {
15011
15923
  id?: string | null;
15012
15924
  shareId?: string | null;
15013
15925
  permalink?: string | null;
15926
+ status?: string | null;
15014
15927
  } | null;
15015
15928
  LINKEDIN?: {
15016
15929
  id?: string | null;
@@ -17903,16 +18816,27 @@ type $OpenApiTs = {
17903
18816
  };
17904
18817
  };
17905
18818
  };
17906
- '/api/v1/misc/reddit/post-requirements': {
17907
- get: {
17908
- req: MiscRedditGetPostRequirementsData;
18819
+ '/api/v1/misc/google-business/reviews/import': {
18820
+ post: {
18821
+ req: MiscGoogleBusinessImportReviewsData;
17909
18822
  res: {
17910
18823
  /**
17911
- * 200
18824
+ * 201
17912
18825
  */
17913
- 200: {
17914
- isFlairRequired: boolean;
17915
- isFlairEnabled: boolean;
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;
17916
18840
  };
17917
18841
  /**
17918
18842
  * 400
@@ -17942,6 +18866,12 @@ type $OpenApiTs = {
17942
18866
  404: {
17943
18867
  message: string;
17944
18868
  };
18869
+ /**
18870
+ * 409
18871
+ */
18872
+ 409: {
18873
+ message: string;
18874
+ };
17945
18875
  /**
17946
18876
  * 429
17947
18877
  */
@@ -17956,24 +18886,29 @@ type $OpenApiTs = {
17956
18886
  };
17957
18887
  };
17958
18888
  };
17959
- };
17960
- '/api/v1/misc/reddit/subreddit-flairs': {
17961
18889
  get: {
17962
- req: MiscRedditGetSubredditFlairsData;
18890
+ req: MiscGoogleBusinessGetReviewImportStatusData;
17963
18891
  res: {
17964
18892
  /**
17965
18893
  * 200
17966
18894
  */
17967
- 200: Array<{
17968
- id?: string;
17969
- text?: string;
17970
- cssClass?: string;
17971
- textColor?: string;
17972
- backgroundColor?: string;
17973
- modOnly?: boolean;
17974
- allowableContent?: string;
17975
- maxEmojis?: number;
17976
- }>;
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
+ };
17977
18912
  /**
17978
18913
  * 400
17979
18914
  */
@@ -18017,16 +18952,27 @@ type $OpenApiTs = {
18017
18952
  };
18018
18953
  };
18019
18954
  };
18020
- '/api/v1/misc/reddit/post': {
18021
- patch: {
18022
- req: MiscRedditEditPostData;
18955
+ '/api/v1/misc/google-business/reviews/import/{importId}': {
18956
+ get: {
18957
+ req: MiscGoogleBusinessGetReviewImportByIdData;
18023
18958
  res: {
18024
18959
  /**
18025
18960
  * 200
18026
18961
  */
18027
18962
  200: {
18028
- success: boolean;
18029
- permalink: string;
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;
18030
18976
  };
18031
18977
  /**
18032
18978
  * 400
@@ -18070,14 +19016,36 @@ type $OpenApiTs = {
18070
19016
  };
18071
19017
  };
18072
19018
  };
18073
- delete: {
18074
- req: MiscRedditDeletePostData;
19019
+ };
19020
+ '/api/v1/misc/google-business/reviews': {
19021
+ get: {
19022
+ req: MiscGoogleBusinessGetReviewsData;
18075
19023
  res: {
18076
19024
  /**
18077
19025
  * 200
18078
19026
  */
18079
19027
  200: {
18080
- success: boolean;
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;
18081
19049
  };
18082
19050
  /**
18083
19051
  * 400
@@ -18122,51 +19090,30 @@ type $OpenApiTs = {
18122
19090
  };
18123
19091
  };
18124
19092
  };
18125
- '/api/v1/misc/instagram/tags': {
19093
+ '/api/v1/misc/google-business/reviews/{reviewId}': {
18126
19094
  get: {
18127
- req: MiscInstagramBusinessDiscoveryData;
19095
+ req: MiscGoogleBusinessGetReviewByIdData;
18128
19096
  res: {
18129
19097
  /**
18130
19098
  * 200
18131
19099
  */
18132
19100
  200: {
18133
- /**
18134
- * Whether the user exists and is a Business/Creator account
18135
- */
18136
- exists: boolean;
18137
- /**
18138
- * User data if exists, null otherwise
18139
- */
18140
- data: {
18141
- /**
18142
- * Instagram User ID
18143
- */
18144
- id: string;
18145
- /**
18146
- * Instagram username
18147
- */
18148
- username: string;
18149
- /**
18150
- * Number of followers
18151
- */
18152
- followers_count: number;
18153
- /**
18154
- * Number of media posts
18155
- */
18156
- media_count: number;
18157
- /**
18158
- * Profile picture URL if available
18159
- */
18160
- profile_picture_url?: string;
18161
- /**
18162
- * User biography if available
18163
- */
18164
- biography?: string;
18165
- /**
18166
- * Full name if available
18167
- */
18168
- name?: string;
18169
- } | null;
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;
18170
19117
  };
18171
19118
  /**
18172
19119
  * 400
@@ -18211,16 +19158,30 @@ type $OpenApiTs = {
18211
19158
  };
18212
19159
  };
18213
19160
  };
18214
- '/api/v1/misc/facebook/post': {
18215
- patch: {
18216
- req: MiscFacebookEditPostData;
19161
+ '/api/v1/misc/google-business/reviews/{reviewId}/reply': {
19162
+ put: {
19163
+ req: MiscGoogleBusinessReplyToReviewData;
18217
19164
  res: {
18218
19165
  /**
18219
19166
  * 200
18220
19167
  */
18221
19168
  200: {
18222
- success: boolean;
18223
- permalink: string;
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;
18224
19185
  };
18225
19186
  /**
18226
19187
  * 400
@@ -18265,13 +19226,28 @@ type $OpenApiTs = {
18265
19226
  };
18266
19227
  };
18267
19228
  delete: {
18268
- req: MiscFacebookDeletePostData;
19229
+ req: MiscGoogleBusinessDeleteReviewReplyData;
18269
19230
  res: {
18270
19231
  /**
18271
19232
  * 200
18272
19233
  */
18273
19234
  200: {
18274
- success: boolean;
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;
18275
19251
  };
18276
19252
  /**
18277
19253
  * 400
@@ -18316,16 +19292,16 @@ type $OpenApiTs = {
18316
19292
  };
18317
19293
  };
18318
19294
  };
18319
- '/api/v1/misc/pinterest/pin': {
18320
- patch: {
18321
- req: MiscPinterestEditPinData;
19295
+ '/api/v1/misc/reddit/post-requirements': {
19296
+ get: {
19297
+ req: MiscRedditGetPostRequirementsData;
18322
19298
  res: {
18323
19299
  /**
18324
19300
  * 200
18325
19301
  */
18326
19302
  200: {
18327
- success: boolean;
18328
- permalink: string;
19303
+ isFlairRequired: boolean;
19304
+ isFlairEnabled: boolean;
18329
19305
  };
18330
19306
  /**
18331
19307
  * 400
@@ -18369,15 +19345,24 @@ type $OpenApiTs = {
18369
19345
  };
18370
19346
  };
18371
19347
  };
18372
- delete: {
18373
- req: MiscPinterestDeletePinData;
19348
+ };
19349
+ '/api/v1/misc/reddit/subreddit-flairs': {
19350
+ get: {
19351
+ req: MiscRedditGetSubredditFlairsData;
18374
19352
  res: {
18375
19353
  /**
18376
19354
  * 200
18377
19355
  */
18378
- 200: {
18379
- success: boolean;
18380
- };
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
+ }>;
18381
19366
  /**
18382
19367
  * 400
18383
19368
  */
@@ -18421,9 +19406,9 @@ type $OpenApiTs = {
18421
19406
  };
18422
19407
  };
18423
19408
  };
18424
- '/api/v1/misc/mastodon/status': {
19409
+ '/api/v1/misc/reddit/post': {
18425
19410
  patch: {
18426
- req: MiscMastodonEditStatusData;
19411
+ req: MiscRedditEditPostData;
18427
19412
  res: {
18428
19413
  /**
18429
19414
  * 200
@@ -18475,7 +19460,7 @@ type $OpenApiTs = {
18475
19460
  };
18476
19461
  };
18477
19462
  delete: {
18478
- req: MiscMastodonDeleteStatusData;
19463
+ req: MiscRedditDeletePostData;
18479
19464
  res: {
18480
19465
  /**
18481
19466
  * 200
@@ -18526,37 +19511,441 @@ type $OpenApiTs = {
18526
19511
  };
18527
19512
  };
18528
19513
  };
18529
- '/api/v1/misc/slack/message': {
18530
- patch: {
18531
- req: MiscSlackEditMessageData;
19514
+ '/api/v1/misc/instagram/tags': {
19515
+ get: {
19516
+ req: MiscInstagramBusinessDiscoveryData;
18532
19517
  res: {
18533
19518
  /**
18534
19519
  * 200
18535
19520
  */
18536
19521
  200: {
18537
- success: boolean;
18538
- permalink: string;
18539
- };
18540
- /**
18541
- * 400
18542
- */
18543
- 400: {
18544
- message: string;
18545
- issues?: Array<{
18546
- message: string;
18547
- path?: Array<(string | number)> | null;
18548
- }> | null;
18549
- };
18550
- /**
18551
- * 401
18552
- */
18553
- 401: {
18554
- message: string;
18555
- };
18556
- /**
18557
- * 403
18558
- */
18559
- 403: {
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;
19711
+ res: {
19712
+ /**
19713
+ * 200
19714
+ */
19715
+ 200: {
19716
+ success: boolean;
19717
+ permalink: string;
19718
+ };
19719
+ /**
19720
+ * 400
19721
+ */
19722
+ 400: {
19723
+ message: string;
19724
+ issues?: Array<{
19725
+ message: string;
19726
+ path?: Array<(string | number)> | null;
19727
+ }> | null;
19728
+ };
19729
+ /**
19730
+ * 401
19731
+ */
19732
+ 401: {
19733
+ message: string;
19734
+ };
19735
+ /**
19736
+ * 403
19737
+ */
19738
+ 403: {
19739
+ message: string;
19740
+ };
19741
+ /**
19742
+ * 404
19743
+ */
19744
+ 404: {
19745
+ message: string;
19746
+ };
19747
+ /**
19748
+ * 429
19749
+ */
19750
+ 429: {
19751
+ message: string;
19752
+ };
19753
+ /**
19754
+ * 500
19755
+ */
19756
+ 500: {
19757
+ message: string;
19758
+ };
19759
+ };
19760
+ };
19761
+ delete: {
19762
+ req: MiscPinterestDeletePinData;
19763
+ res: {
19764
+ /**
19765
+ * 200
19766
+ */
19767
+ 200: {
19768
+ success: boolean;
19769
+ };
19770
+ /**
19771
+ * 400
19772
+ */
19773
+ 400: {
19774
+ message: string;
19775
+ issues?: Array<{
19776
+ message: string;
19777
+ path?: Array<(string | number)> | null;
19778
+ }> | null;
19779
+ };
19780
+ /**
19781
+ * 401
19782
+ */
19783
+ 401: {
19784
+ message: string;
19785
+ };
19786
+ /**
19787
+ * 403
19788
+ */
19789
+ 403: {
19790
+ message: string;
19791
+ };
19792
+ /**
19793
+ * 404
19794
+ */
19795
+ 404: {
19796
+ message: string;
19797
+ };
19798
+ /**
19799
+ * 429
19800
+ */
19801
+ 429: {
19802
+ message: string;
19803
+ };
19804
+ /**
19805
+ * 500
19806
+ */
19807
+ 500: {
19808
+ message: string;
19809
+ };
19810
+ };
19811
+ };
19812
+ };
19813
+ '/api/v1/misc/mastodon/status': {
19814
+ patch: {
19815
+ req: MiscMastodonEditStatusData;
19816
+ res: {
19817
+ /**
19818
+ * 200
19819
+ */
19820
+ 200: {
19821
+ success: boolean;
19822
+ permalink: string;
19823
+ };
19824
+ /**
19825
+ * 400
19826
+ */
19827
+ 400: {
19828
+ message: string;
19829
+ issues?: Array<{
19830
+ message: string;
19831
+ path?: Array<(string | number)> | null;
19832
+ }> | null;
19833
+ };
19834
+ /**
19835
+ * 401
19836
+ */
19837
+ 401: {
19838
+ message: string;
19839
+ };
19840
+ /**
19841
+ * 403
19842
+ */
19843
+ 403: {
19844
+ message: string;
19845
+ };
19846
+ /**
19847
+ * 404
19848
+ */
19849
+ 404: {
19850
+ message: string;
19851
+ };
19852
+ /**
19853
+ * 429
19854
+ */
19855
+ 429: {
19856
+ message: string;
19857
+ };
19858
+ /**
19859
+ * 500
19860
+ */
19861
+ 500: {
19862
+ message: string;
19863
+ };
19864
+ };
19865
+ };
19866
+ delete: {
19867
+ req: MiscMastodonDeleteStatusData;
19868
+ res: {
19869
+ /**
19870
+ * 200
19871
+ */
19872
+ 200: {
19873
+ success: boolean;
19874
+ };
19875
+ /**
19876
+ * 400
19877
+ */
19878
+ 400: {
19879
+ message: string;
19880
+ issues?: Array<{
19881
+ message: string;
19882
+ path?: Array<(string | number)> | null;
19883
+ }> | null;
19884
+ };
19885
+ /**
19886
+ * 401
19887
+ */
19888
+ 401: {
19889
+ message: string;
19890
+ };
19891
+ /**
19892
+ * 403
19893
+ */
19894
+ 403: {
19895
+ message: string;
19896
+ };
19897
+ /**
19898
+ * 404
19899
+ */
19900
+ 404: {
19901
+ message: string;
19902
+ };
19903
+ /**
19904
+ * 429
19905
+ */
19906
+ 429: {
19907
+ message: string;
19908
+ };
19909
+ /**
19910
+ * 500
19911
+ */
19912
+ 500: {
19913
+ message: string;
19914
+ };
19915
+ };
19916
+ };
19917
+ };
19918
+ '/api/v1/misc/slack/message': {
19919
+ patch: {
19920
+ req: MiscSlackEditMessageData;
19921
+ res: {
19922
+ /**
19923
+ * 200
19924
+ */
19925
+ 200: {
19926
+ success: boolean;
19927
+ permalink: string;
19928
+ };
19929
+ /**
19930
+ * 400
19931
+ */
19932
+ 400: {
19933
+ message: string;
19934
+ issues?: Array<{
19935
+ message: string;
19936
+ path?: Array<(string | number)> | null;
19937
+ }> | null;
19938
+ };
19939
+ /**
19940
+ * 401
19941
+ */
19942
+ 401: {
19943
+ message: string;
19944
+ };
19945
+ /**
19946
+ * 403
19947
+ */
19948
+ 403: {
18560
19949
  message: string;
18561
19950
  };
18562
19951
  /**
@@ -18790,6 +20179,127 @@ type $OpenApiTs = {
18790
20179
  };
18791
20180
  };
18792
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
+ };
18793
20303
  '/api/v1/post-history-import/': {
18794
20304
  post: {
18795
20305
  req: PostImportCreateData;
@@ -19716,6 +21226,67 @@ declare class MiscService {
19716
21226
  * @throws ApiError
19717
21227
  */
19718
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>;
19719
21290
  /**
19720
21291
  * Get subreddit post requirements (flair required/enabled)
19721
21292
  * @param data The data for the request.
@@ -19862,6 +21433,17 @@ declare class MiscService {
19862
21433
  * @throws ApiError
19863
21434
  */
19864
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>;
19865
21447
  }
19866
21448
  declare class YoutubeService {
19867
21449
  readonly httpRequest: BaseHttpRequest;
@@ -20034,6 +21616,67 @@ declare class GoogleBusinessService {
20034
21616
  * @throws ApiError
20035
21617
  */
20036
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>;
20037
21680
  }
20038
21681
  declare class RedditService {
20039
21682
  readonly httpRequest: BaseHttpRequest;
@@ -20217,6 +21860,21 @@ declare class DiscordService {
20217
21860
  */
20218
21861
  miscDiscordDeleteMessage(data?: MiscDiscordDeleteMessageData): CancelablePromise<MiscDiscordDeleteMessageResponse>;
20219
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>;
21877
+ }
20220
21878
  declare class PostImportService {
20221
21879
  readonly httpRequest: BaseHttpRequest;
20222
21880
  constructor(httpRequest: BaseHttpRequest);
@@ -20288,6 +21946,7 @@ declare class Client {
20288
21946
  readonly slack: SlackService;
20289
21947
  readonly socialAccount: SocialAccountService;
20290
21948
  readonly team: TeamService;
21949
+ readonly tiktok: TiktokService;
20291
21950
  readonly twitter: TwitterService;
20292
21951
  readonly upload: UploadService;
20293
21952
  readonly youtube: YoutubeService;
@@ -20354,4 +22013,4 @@ declare class Bundlesocial extends Client {
20354
22013
  constructor(apiKey: string, options?: OpenAPIConfig);
20355
22014
  }
20356
22015
 
20357
- export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
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 };