bundlesocial 2.49.0 → 2.50.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 +422 -1
- package/dist/index.d.ts +422 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -218,6 +218,10 @@ type OrganizationGetOrganizationResponse = {
|
|
|
218
218
|
stripePriceId: string;
|
|
219
219
|
tier: 'PRO' | 'BUSINESS';
|
|
220
220
|
billingInterval: 'MONTHLY' | 'YEARLY';
|
|
221
|
+
isCustomPrice: boolean;
|
|
222
|
+
customPriceLabel?: string | null;
|
|
223
|
+
customUnitAmount?: number | null;
|
|
224
|
+
customCurrency?: string | null;
|
|
221
225
|
cancelAtPeriodEnd: boolean;
|
|
222
226
|
created: string | null;
|
|
223
227
|
currentPeriodStart: string | null;
|
|
@@ -1554,6 +1558,23 @@ type PostGetResponse = {
|
|
|
1554
1558
|
trialParams?: {
|
|
1555
1559
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
1556
1560
|
} | null;
|
|
1561
|
+
/**
|
|
1562
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
1563
|
+
*/
|
|
1564
|
+
musicSoundInfo?: {
|
|
1565
|
+
/**
|
|
1566
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
1567
|
+
*/
|
|
1568
|
+
musicSoundId: string;
|
|
1569
|
+
/**
|
|
1570
|
+
* Audio volume (0-100).
|
|
1571
|
+
*/
|
|
1572
|
+
musicSoundVolume?: number | null;
|
|
1573
|
+
/**
|
|
1574
|
+
* Background volume of the original video sound (0-100).
|
|
1575
|
+
*/
|
|
1576
|
+
videoOriginalSoundVolume?: number | null;
|
|
1577
|
+
} | null;
|
|
1557
1578
|
} | null;
|
|
1558
1579
|
THREADS?: {
|
|
1559
1580
|
text?: string | null;
|
|
@@ -2226,6 +2247,23 @@ type PostUpdateData = {
|
|
|
2226
2247
|
trialParams?: {
|
|
2227
2248
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
2228
2249
|
} | null;
|
|
2250
|
+
/**
|
|
2251
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
2252
|
+
*/
|
|
2253
|
+
musicSoundInfo?: {
|
|
2254
|
+
/**
|
|
2255
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
2256
|
+
*/
|
|
2257
|
+
musicSoundId: string;
|
|
2258
|
+
/**
|
|
2259
|
+
* Audio volume (0-100).
|
|
2260
|
+
*/
|
|
2261
|
+
musicSoundVolume?: number | null;
|
|
2262
|
+
/**
|
|
2263
|
+
* Background volume of the original video sound (0-100).
|
|
2264
|
+
*/
|
|
2265
|
+
videoOriginalSoundVolume?: number | null;
|
|
2266
|
+
} | null;
|
|
2229
2267
|
} | null;
|
|
2230
2268
|
THREADS?: {
|
|
2231
2269
|
text?: string | null;
|
|
@@ -2581,6 +2619,23 @@ type PostUpdateResponse = {
|
|
|
2581
2619
|
trialParams?: {
|
|
2582
2620
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
2583
2621
|
} | null;
|
|
2622
|
+
/**
|
|
2623
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
2624
|
+
*/
|
|
2625
|
+
musicSoundInfo?: {
|
|
2626
|
+
/**
|
|
2627
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
2628
|
+
*/
|
|
2629
|
+
musicSoundId: string;
|
|
2630
|
+
/**
|
|
2631
|
+
* Audio volume (0-100).
|
|
2632
|
+
*/
|
|
2633
|
+
musicSoundVolume?: number | null;
|
|
2634
|
+
/**
|
|
2635
|
+
* Background volume of the original video sound (0-100).
|
|
2636
|
+
*/
|
|
2637
|
+
videoOriginalSoundVolume?: number | null;
|
|
2638
|
+
} | null;
|
|
2584
2639
|
} | null;
|
|
2585
2640
|
THREADS?: {
|
|
2586
2641
|
text?: string | null;
|
|
@@ -3179,6 +3234,23 @@ type PostDeleteResponse = {
|
|
|
3179
3234
|
trialParams?: {
|
|
3180
3235
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
3181
3236
|
} | null;
|
|
3237
|
+
/**
|
|
3238
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
3239
|
+
*/
|
|
3240
|
+
musicSoundInfo?: {
|
|
3241
|
+
/**
|
|
3242
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
3243
|
+
*/
|
|
3244
|
+
musicSoundId: string;
|
|
3245
|
+
/**
|
|
3246
|
+
* Audio volume (0-100).
|
|
3247
|
+
*/
|
|
3248
|
+
musicSoundVolume?: number | null;
|
|
3249
|
+
/**
|
|
3250
|
+
* Background volume of the original video sound (0-100).
|
|
3251
|
+
*/
|
|
3252
|
+
videoOriginalSoundVolume?: number | null;
|
|
3253
|
+
} | null;
|
|
3182
3254
|
} | null;
|
|
3183
3255
|
THREADS?: {
|
|
3184
3256
|
text?: string | null;
|
|
@@ -3787,6 +3859,23 @@ type PostGetListResponse = {
|
|
|
3787
3859
|
trialParams?: {
|
|
3788
3860
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
3789
3861
|
} | null;
|
|
3862
|
+
/**
|
|
3863
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
3864
|
+
*/
|
|
3865
|
+
musicSoundInfo?: {
|
|
3866
|
+
/**
|
|
3867
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
3868
|
+
*/
|
|
3869
|
+
musicSoundId: string;
|
|
3870
|
+
/**
|
|
3871
|
+
* Audio volume (0-100).
|
|
3872
|
+
*/
|
|
3873
|
+
musicSoundVolume?: number | null;
|
|
3874
|
+
/**
|
|
3875
|
+
* Background volume of the original video sound (0-100).
|
|
3876
|
+
*/
|
|
3877
|
+
videoOriginalSoundVolume?: number | null;
|
|
3878
|
+
} | null;
|
|
3790
3879
|
} | null;
|
|
3791
3880
|
THREADS?: {
|
|
3792
3881
|
text?: string | null;
|
|
@@ -4461,6 +4550,23 @@ type PostCreateData = {
|
|
|
4461
4550
|
trialParams?: {
|
|
4462
4551
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
4463
4552
|
} | null;
|
|
4553
|
+
/**
|
|
4554
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
4555
|
+
*/
|
|
4556
|
+
musicSoundInfo?: {
|
|
4557
|
+
/**
|
|
4558
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
4559
|
+
*/
|
|
4560
|
+
musicSoundId: string;
|
|
4561
|
+
/**
|
|
4562
|
+
* Audio volume (0-100).
|
|
4563
|
+
*/
|
|
4564
|
+
musicSoundVolume?: number | null;
|
|
4565
|
+
/**
|
|
4566
|
+
* Background volume of the original video sound (0-100).
|
|
4567
|
+
*/
|
|
4568
|
+
videoOriginalSoundVolume?: number | null;
|
|
4569
|
+
} | null;
|
|
4464
4570
|
} | null;
|
|
4465
4571
|
THREADS?: {
|
|
4466
4572
|
text?: string | null;
|
|
@@ -4816,6 +4922,23 @@ type PostCreateResponse = {
|
|
|
4816
4922
|
trialParams?: {
|
|
4817
4923
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
4818
4924
|
} | null;
|
|
4925
|
+
/**
|
|
4926
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
4927
|
+
*/
|
|
4928
|
+
musicSoundInfo?: {
|
|
4929
|
+
/**
|
|
4930
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
4931
|
+
*/
|
|
4932
|
+
musicSoundId: string;
|
|
4933
|
+
/**
|
|
4934
|
+
* Audio volume (0-100).
|
|
4935
|
+
*/
|
|
4936
|
+
musicSoundVolume?: number | null;
|
|
4937
|
+
/**
|
|
4938
|
+
* Background volume of the original video sound (0-100).
|
|
4939
|
+
*/
|
|
4940
|
+
videoOriginalSoundVolume?: number | null;
|
|
4941
|
+
} | null;
|
|
4819
4942
|
} | null;
|
|
4820
4943
|
THREADS?: {
|
|
4821
4944
|
text?: string | null;
|
|
@@ -5414,6 +5537,23 @@ type PostRetryResponse = {
|
|
|
5414
5537
|
trialParams?: {
|
|
5415
5538
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
5416
5539
|
} | null;
|
|
5540
|
+
/**
|
|
5541
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
5542
|
+
*/
|
|
5543
|
+
musicSoundInfo?: {
|
|
5544
|
+
/**
|
|
5545
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
5546
|
+
*/
|
|
5547
|
+
musicSoundId: string;
|
|
5548
|
+
/**
|
|
5549
|
+
* Audio volume (0-100).
|
|
5550
|
+
*/
|
|
5551
|
+
musicSoundVolume?: number | null;
|
|
5552
|
+
/**
|
|
5553
|
+
* Background volume of the original video sound (0-100).
|
|
5554
|
+
*/
|
|
5555
|
+
videoOriginalSoundVolume?: number | null;
|
|
5556
|
+
} | null;
|
|
5417
5557
|
} | null;
|
|
5418
5558
|
THREADS?: {
|
|
5419
5559
|
text?: string | null;
|
|
@@ -6078,6 +6218,23 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6078
6218
|
trialParams?: {
|
|
6079
6219
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
6080
6220
|
} | null;
|
|
6221
|
+
/**
|
|
6222
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
6223
|
+
*/
|
|
6224
|
+
musicSoundInfo?: {
|
|
6225
|
+
/**
|
|
6226
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
6227
|
+
*/
|
|
6228
|
+
musicSoundId: string;
|
|
6229
|
+
/**
|
|
6230
|
+
* Audio volume (0-100).
|
|
6231
|
+
*/
|
|
6232
|
+
musicSoundVolume?: number | null;
|
|
6233
|
+
/**
|
|
6234
|
+
* Background volume of the original video sound (0-100).
|
|
6235
|
+
*/
|
|
6236
|
+
videoOriginalSoundVolume?: number | null;
|
|
6237
|
+
} | null;
|
|
6081
6238
|
} | null;
|
|
6082
6239
|
THREADS?: {
|
|
6083
6240
|
text?: string | null;
|
|
@@ -6775,6 +6932,23 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6775
6932
|
trialParams?: {
|
|
6776
6933
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
6777
6934
|
} | null;
|
|
6935
|
+
/**
|
|
6936
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
6937
|
+
*/
|
|
6938
|
+
musicSoundInfo?: {
|
|
6939
|
+
/**
|
|
6940
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
6941
|
+
*/
|
|
6942
|
+
musicSoundId: string;
|
|
6943
|
+
/**
|
|
6944
|
+
* Audio volume (0-100).
|
|
6945
|
+
*/
|
|
6946
|
+
musicSoundVolume?: number | null;
|
|
6947
|
+
/**
|
|
6948
|
+
* Background volume of the original video sound (0-100).
|
|
6949
|
+
*/
|
|
6950
|
+
videoOriginalSoundVolume?: number | null;
|
|
6951
|
+
} | null;
|
|
6778
6952
|
} | null;
|
|
6779
6953
|
THREADS?: {
|
|
6780
6954
|
text?: string | null;
|
|
@@ -10229,6 +10403,31 @@ type MiscInstagramSearchLocationsResponse = {
|
|
|
10229
10403
|
} | null;
|
|
10230
10404
|
}>;
|
|
10231
10405
|
};
|
|
10406
|
+
type MiscInstagramSearchAudioData = {
|
|
10407
|
+
/**
|
|
10408
|
+
* The type of Instagram audio to search for.
|
|
10409
|
+
*/
|
|
10410
|
+
audioType: 'original_sound' | 'music';
|
|
10411
|
+
/**
|
|
10412
|
+
* Optional keyword search query.
|
|
10413
|
+
*/
|
|
10414
|
+
searchQuery?: string;
|
|
10415
|
+
teamId: string;
|
|
10416
|
+
};
|
|
10417
|
+
type MiscInstagramSearchAudioResponse = {
|
|
10418
|
+
audio?: Array<{
|
|
10419
|
+
audio_id: string;
|
|
10420
|
+
cover_artwork_thumbnail_uri?: string | null;
|
|
10421
|
+
cover_artwork_thumbnail_url?: string | null;
|
|
10422
|
+
display_artist?: string | null;
|
|
10423
|
+
duration_in_ms?: number | null;
|
|
10424
|
+
audio_type: 'original_sound' | 'music';
|
|
10425
|
+
title?: string | null;
|
|
10426
|
+
download_url?: string | null;
|
|
10427
|
+
ig_username?: string | null;
|
|
10428
|
+
profile_picture_url?: string | null;
|
|
10429
|
+
}>;
|
|
10430
|
+
};
|
|
10232
10431
|
type MiscInstagramDeleteCommentData = {
|
|
10233
10432
|
/**
|
|
10234
10433
|
* Body
|
|
@@ -11338,6 +11537,10 @@ type $OpenApiTs = {
|
|
|
11338
11537
|
stripePriceId: string;
|
|
11339
11538
|
tier: 'PRO' | 'BUSINESS';
|
|
11340
11539
|
billingInterval: 'MONTHLY' | 'YEARLY';
|
|
11540
|
+
isCustomPrice: boolean;
|
|
11541
|
+
customPriceLabel?: string | null;
|
|
11542
|
+
customUnitAmount?: number | null;
|
|
11543
|
+
customCurrency?: string | null;
|
|
11341
11544
|
cancelAtPeriodEnd: boolean;
|
|
11342
11545
|
created: string | null;
|
|
11343
11546
|
currentPeriodStart: string | null;
|
|
@@ -14065,6 +14268,23 @@ type $OpenApiTs = {
|
|
|
14065
14268
|
trialParams?: {
|
|
14066
14269
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
14067
14270
|
} | null;
|
|
14271
|
+
/**
|
|
14272
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
14273
|
+
*/
|
|
14274
|
+
musicSoundInfo?: {
|
|
14275
|
+
/**
|
|
14276
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
14277
|
+
*/
|
|
14278
|
+
musicSoundId: string;
|
|
14279
|
+
/**
|
|
14280
|
+
* Audio volume (0-100).
|
|
14281
|
+
*/
|
|
14282
|
+
musicSoundVolume?: number | null;
|
|
14283
|
+
/**
|
|
14284
|
+
* Background volume of the original video sound (0-100).
|
|
14285
|
+
*/
|
|
14286
|
+
videoOriginalSoundVolume?: number | null;
|
|
14287
|
+
} | null;
|
|
14068
14288
|
} | null;
|
|
14069
14289
|
THREADS?: {
|
|
14070
14290
|
text?: string | null;
|
|
@@ -14790,6 +15010,23 @@ type $OpenApiTs = {
|
|
|
14790
15010
|
trialParams?: {
|
|
14791
15011
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
14792
15012
|
} | null;
|
|
15013
|
+
/**
|
|
15014
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
15015
|
+
*/
|
|
15016
|
+
musicSoundInfo?: {
|
|
15017
|
+
/**
|
|
15018
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
15019
|
+
*/
|
|
15020
|
+
musicSoundId: string;
|
|
15021
|
+
/**
|
|
15022
|
+
* Audio volume (0-100).
|
|
15023
|
+
*/
|
|
15024
|
+
musicSoundVolume?: number | null;
|
|
15025
|
+
/**
|
|
15026
|
+
* Background volume of the original video sound (0-100).
|
|
15027
|
+
*/
|
|
15028
|
+
videoOriginalSoundVolume?: number | null;
|
|
15029
|
+
} | null;
|
|
14793
15030
|
} | null;
|
|
14794
15031
|
THREADS?: {
|
|
14795
15032
|
text?: string | null;
|
|
@@ -15440,6 +15677,23 @@ type $OpenApiTs = {
|
|
|
15440
15677
|
trialParams?: {
|
|
15441
15678
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
15442
15679
|
} | null;
|
|
15680
|
+
/**
|
|
15681
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
15682
|
+
*/
|
|
15683
|
+
musicSoundInfo?: {
|
|
15684
|
+
/**
|
|
15685
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
15686
|
+
*/
|
|
15687
|
+
musicSoundId: string;
|
|
15688
|
+
/**
|
|
15689
|
+
* Audio volume (0-100).
|
|
15690
|
+
*/
|
|
15691
|
+
musicSoundVolume?: number | null;
|
|
15692
|
+
/**
|
|
15693
|
+
* Background volume of the original video sound (0-100).
|
|
15694
|
+
*/
|
|
15695
|
+
videoOriginalSoundVolume?: number | null;
|
|
15696
|
+
} | null;
|
|
15443
15697
|
} | null;
|
|
15444
15698
|
THREADS?: {
|
|
15445
15699
|
text?: string | null;
|
|
@@ -16093,6 +16347,23 @@ type $OpenApiTs = {
|
|
|
16093
16347
|
trialParams?: {
|
|
16094
16348
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
16095
16349
|
} | null;
|
|
16350
|
+
/**
|
|
16351
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
16352
|
+
*/
|
|
16353
|
+
musicSoundInfo?: {
|
|
16354
|
+
/**
|
|
16355
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
16356
|
+
*/
|
|
16357
|
+
musicSoundId: string;
|
|
16358
|
+
/**
|
|
16359
|
+
* Audio volume (0-100).
|
|
16360
|
+
*/
|
|
16361
|
+
musicSoundVolume?: number | null;
|
|
16362
|
+
/**
|
|
16363
|
+
* Background volume of the original video sound (0-100).
|
|
16364
|
+
*/
|
|
16365
|
+
videoOriginalSoundVolume?: number | null;
|
|
16366
|
+
} | null;
|
|
16096
16367
|
} | null;
|
|
16097
16368
|
THREADS?: {
|
|
16098
16369
|
text?: string | null;
|
|
@@ -16820,6 +17091,23 @@ type $OpenApiTs = {
|
|
|
16820
17091
|
trialParams?: {
|
|
16821
17092
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
16822
17093
|
} | null;
|
|
17094
|
+
/**
|
|
17095
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
17096
|
+
*/
|
|
17097
|
+
musicSoundInfo?: {
|
|
17098
|
+
/**
|
|
17099
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
17100
|
+
*/
|
|
17101
|
+
musicSoundId: string;
|
|
17102
|
+
/**
|
|
17103
|
+
* Audio volume (0-100).
|
|
17104
|
+
*/
|
|
17105
|
+
musicSoundVolume?: number | null;
|
|
17106
|
+
/**
|
|
17107
|
+
* Background volume of the original video sound (0-100).
|
|
17108
|
+
*/
|
|
17109
|
+
videoOriginalSoundVolume?: number | null;
|
|
17110
|
+
} | null;
|
|
16823
17111
|
} | null;
|
|
16824
17112
|
THREADS?: {
|
|
16825
17113
|
text?: string | null;
|
|
@@ -17472,6 +17760,23 @@ type $OpenApiTs = {
|
|
|
17472
17760
|
trialParams?: {
|
|
17473
17761
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
17474
17762
|
} | null;
|
|
17763
|
+
/**
|
|
17764
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
17765
|
+
*/
|
|
17766
|
+
musicSoundInfo?: {
|
|
17767
|
+
/**
|
|
17768
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
17769
|
+
*/
|
|
17770
|
+
musicSoundId: string;
|
|
17771
|
+
/**
|
|
17772
|
+
* Audio volume (0-100).
|
|
17773
|
+
*/
|
|
17774
|
+
musicSoundVolume?: number | null;
|
|
17775
|
+
/**
|
|
17776
|
+
* Background volume of the original video sound (0-100).
|
|
17777
|
+
*/
|
|
17778
|
+
videoOriginalSoundVolume?: number | null;
|
|
17779
|
+
} | null;
|
|
17475
17780
|
} | null;
|
|
17476
17781
|
THREADS?: {
|
|
17477
17782
|
text?: string | null;
|
|
@@ -18241,6 +18546,23 @@ type $OpenApiTs = {
|
|
|
18241
18546
|
trialParams?: {
|
|
18242
18547
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
18243
18548
|
} | null;
|
|
18549
|
+
/**
|
|
18550
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
18551
|
+
*/
|
|
18552
|
+
musicSoundInfo?: {
|
|
18553
|
+
/**
|
|
18554
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
18555
|
+
*/
|
|
18556
|
+
musicSoundId: string;
|
|
18557
|
+
/**
|
|
18558
|
+
* Audio volume (0-100).
|
|
18559
|
+
*/
|
|
18560
|
+
musicSoundVolume?: number | null;
|
|
18561
|
+
/**
|
|
18562
|
+
* Background volume of the original video sound (0-100).
|
|
18563
|
+
*/
|
|
18564
|
+
videoOriginalSoundVolume?: number | null;
|
|
18565
|
+
} | null;
|
|
18244
18566
|
} | null;
|
|
18245
18567
|
THREADS?: {
|
|
18246
18568
|
text?: string | null;
|
|
@@ -19043,6 +19365,23 @@ type $OpenApiTs = {
|
|
|
19043
19365
|
trialParams?: {
|
|
19044
19366
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
19045
19367
|
} | null;
|
|
19368
|
+
/**
|
|
19369
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
19370
|
+
*/
|
|
19371
|
+
musicSoundInfo?: {
|
|
19372
|
+
/**
|
|
19373
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
19374
|
+
*/
|
|
19375
|
+
musicSoundId: string;
|
|
19376
|
+
/**
|
|
19377
|
+
* Audio volume (0-100).
|
|
19378
|
+
*/
|
|
19379
|
+
musicSoundVolume?: number | null;
|
|
19380
|
+
/**
|
|
19381
|
+
* Background volume of the original video sound (0-100).
|
|
19382
|
+
*/
|
|
19383
|
+
videoOriginalSoundVolume?: number | null;
|
|
19384
|
+
} | null;
|
|
19046
19385
|
} | null;
|
|
19047
19386
|
THREADS?: {
|
|
19048
19387
|
text?: string | null;
|
|
@@ -25457,6 +25796,77 @@ type $OpenApiTs = {
|
|
|
25457
25796
|
};
|
|
25458
25797
|
};
|
|
25459
25798
|
};
|
|
25799
|
+
'/api/v1/misc/instagram/audio': {
|
|
25800
|
+
get: {
|
|
25801
|
+
req: MiscInstagramSearchAudioData;
|
|
25802
|
+
res: {
|
|
25803
|
+
/**
|
|
25804
|
+
* 200
|
|
25805
|
+
*/
|
|
25806
|
+
200: {
|
|
25807
|
+
audio?: Array<{
|
|
25808
|
+
audio_id: string;
|
|
25809
|
+
cover_artwork_thumbnail_uri?: string | null;
|
|
25810
|
+
cover_artwork_thumbnail_url?: string | null;
|
|
25811
|
+
display_artist?: string | null;
|
|
25812
|
+
duration_in_ms?: number | null;
|
|
25813
|
+
audio_type: 'original_sound' | 'music';
|
|
25814
|
+
title?: string | null;
|
|
25815
|
+
download_url?: string | null;
|
|
25816
|
+
ig_username?: string | null;
|
|
25817
|
+
profile_picture_url?: string | null;
|
|
25818
|
+
}>;
|
|
25819
|
+
};
|
|
25820
|
+
/**
|
|
25821
|
+
* 400
|
|
25822
|
+
*/
|
|
25823
|
+
400: {
|
|
25824
|
+
statusCode?: number | null;
|
|
25825
|
+
message: string;
|
|
25826
|
+
issues?: Array<{
|
|
25827
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
25828
|
+
message: string;
|
|
25829
|
+
path?: Array<(string | number)> | null;
|
|
25830
|
+
}> | null;
|
|
25831
|
+
};
|
|
25832
|
+
/**
|
|
25833
|
+
* 401
|
|
25834
|
+
*/
|
|
25835
|
+
401: {
|
|
25836
|
+
statusCode?: number | null;
|
|
25837
|
+
message: string;
|
|
25838
|
+
};
|
|
25839
|
+
/**
|
|
25840
|
+
* 403
|
|
25841
|
+
*/
|
|
25842
|
+
403: {
|
|
25843
|
+
statusCode?: number | null;
|
|
25844
|
+
message: string;
|
|
25845
|
+
};
|
|
25846
|
+
/**
|
|
25847
|
+
* 404
|
|
25848
|
+
*/
|
|
25849
|
+
404: {
|
|
25850
|
+
statusCode?: number | null;
|
|
25851
|
+
message: string;
|
|
25852
|
+
};
|
|
25853
|
+
/**
|
|
25854
|
+
* 429
|
|
25855
|
+
*/
|
|
25856
|
+
429: {
|
|
25857
|
+
statusCode?: number | null;
|
|
25858
|
+
message: string;
|
|
25859
|
+
};
|
|
25860
|
+
/**
|
|
25861
|
+
* 500
|
|
25862
|
+
*/
|
|
25863
|
+
500: {
|
|
25864
|
+
statusCode?: number | null;
|
|
25865
|
+
message: string;
|
|
25866
|
+
};
|
|
25867
|
+
};
|
|
25868
|
+
};
|
|
25869
|
+
};
|
|
25460
25870
|
'/api/v1/misc/instagram/comment': {
|
|
25461
25871
|
delete: {
|
|
25462
25872
|
req: MiscInstagramDeleteCommentData;
|
|
@@ -29179,6 +29589,17 @@ declare class MiscService {
|
|
|
29179
29589
|
* @throws ApiError
|
|
29180
29590
|
*/
|
|
29181
29591
|
miscInstagramSearchLocations(data: MiscInstagramSearchLocationsData): CancelablePromise<MiscInstagramSearchLocationsResponse>;
|
|
29592
|
+
/**
|
|
29593
|
+
* Search Instagram audio assets
|
|
29594
|
+
* Searches Instagram music or original sounds that can be attached to Reels. Only works for Instagram accounts connected via Facebook Login.
|
|
29595
|
+
* @param data The data for the request.
|
|
29596
|
+
* @param data.teamId
|
|
29597
|
+
* @param data.audioType The type of Instagram audio to search for.
|
|
29598
|
+
* @param data.searchQuery Optional keyword search query.
|
|
29599
|
+
* @returns unknown 200
|
|
29600
|
+
* @throws ApiError
|
|
29601
|
+
*/
|
|
29602
|
+
miscInstagramSearchAudio(data: MiscInstagramSearchAudioData): CancelablePromise<MiscInstagramSearchAudioResponse>;
|
|
29182
29603
|
/**
|
|
29183
29604
|
* Delete an Instagram comment
|
|
29184
29605
|
* Permanently delete a published Instagram comment.
|
|
@@ -29616,4 +30037,4 @@ declare class Bundlesocial extends Client {
|
|
|
29616
30037
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
29617
30038
|
}
|
|
29618
30039
|
|
|
29619
|
-
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, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchLocationsData, MiscInstagramSearchLocationsResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeleteCommentData, MiscLinkedinDeleteCommentResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditCommentData, MiscLinkedinEditCommentResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteCommentData, MiscMastodonDeleteCommentResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditCommentData, MiscMastodonEditCommentResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeleteCommentData, MiscRedditDeleteCommentResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditCommentData, MiscRedditEditCommentResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokDeleteCommentData, MiscTiktokDeleteCommentResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteCommentData, MiscYoutubeDeleteCommentResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditCommentData, MiscYoutubeEditCommentResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetCommentsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountConnectionCheckData, SocialAccountConnectionCheckResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountGetByTypeData, SocialAccountGetByTypeResponse, SocialAccountProfileRefreshData, SocialAccountProfileRefreshResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateFromUrlData, UploadCreateFromUrlResponse, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|
|
30040
|
+
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, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchAudioData, MiscInstagramSearchAudioResponse, MiscInstagramSearchLocationsData, MiscInstagramSearchLocationsResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeleteCommentData, MiscLinkedinDeleteCommentResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditCommentData, MiscLinkedinEditCommentResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteCommentData, MiscMastodonDeleteCommentResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditCommentData, MiscMastodonEditCommentResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeleteCommentData, MiscRedditDeleteCommentResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditCommentData, MiscRedditEditCommentResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokDeleteCommentData, MiscTiktokDeleteCommentResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteCommentData, MiscYoutubeDeleteCommentResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditCommentData, MiscYoutubeEditCommentResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetCommentsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountConnectionCheckData, SocialAccountConnectionCheckResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountGetByTypeData, SocialAccountGetByTypeResponse, SocialAccountProfileRefreshData, SocialAccountProfileRefreshResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateFromUrlData, UploadCreateFromUrlResponse, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|