bundlesocial 2.49.0 → 2.51.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 +619 -1
- package/dist/index.d.ts +619 -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;
|
|
@@ -1442,6 +1446,46 @@ type UploadFinalizeLargeUploadResponse = {
|
|
|
1442
1446
|
createdAt: string | null;
|
|
1443
1447
|
updatedAt: string | null;
|
|
1444
1448
|
};
|
|
1449
|
+
type PostGetReconnectSocialAccountCandidatesData = {
|
|
1450
|
+
limit?: number | null;
|
|
1451
|
+
offset?: number | null;
|
|
1452
|
+
teamId: string;
|
|
1453
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1454
|
+
};
|
|
1455
|
+
type PostGetReconnectSocialAccountCandidatesResponse = {
|
|
1456
|
+
items: Array<{
|
|
1457
|
+
id: string;
|
|
1458
|
+
title: string;
|
|
1459
|
+
postDate: string | null;
|
|
1460
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
1461
|
+
createdAt: string | null;
|
|
1462
|
+
updatedAt: string | null;
|
|
1463
|
+
}>;
|
|
1464
|
+
total: number;
|
|
1465
|
+
};
|
|
1466
|
+
type PostReconnectSocialAccountData = {
|
|
1467
|
+
/**
|
|
1468
|
+
* Body
|
|
1469
|
+
*/
|
|
1470
|
+
requestBody?: {
|
|
1471
|
+
teamId: string;
|
|
1472
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1473
|
+
postIds?: Array<(string)>;
|
|
1474
|
+
};
|
|
1475
|
+
};
|
|
1476
|
+
type PostReconnectSocialAccountResponse = {
|
|
1477
|
+
total: number;
|
|
1478
|
+
succeeded: number;
|
|
1479
|
+
failed: number;
|
|
1480
|
+
results: Array<{
|
|
1481
|
+
postId: string;
|
|
1482
|
+
title?: string | null;
|
|
1483
|
+
success: boolean;
|
|
1484
|
+
statusBefore?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
1485
|
+
statusAfter?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
1486
|
+
message?: string;
|
|
1487
|
+
}>;
|
|
1488
|
+
};
|
|
1445
1489
|
type PostGetData = {
|
|
1446
1490
|
id: string;
|
|
1447
1491
|
};
|
|
@@ -1554,6 +1598,23 @@ type PostGetResponse = {
|
|
|
1554
1598
|
trialParams?: {
|
|
1555
1599
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
1556
1600
|
} | null;
|
|
1601
|
+
/**
|
|
1602
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
1603
|
+
*/
|
|
1604
|
+
musicSoundInfo?: {
|
|
1605
|
+
/**
|
|
1606
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
1607
|
+
*/
|
|
1608
|
+
musicSoundId: string;
|
|
1609
|
+
/**
|
|
1610
|
+
* Audio volume (0-100).
|
|
1611
|
+
*/
|
|
1612
|
+
musicSoundVolume?: number | null;
|
|
1613
|
+
/**
|
|
1614
|
+
* Background volume of the original video sound (0-100).
|
|
1615
|
+
*/
|
|
1616
|
+
videoOriginalSoundVolume?: number | null;
|
|
1617
|
+
} | null;
|
|
1557
1618
|
} | null;
|
|
1558
1619
|
THREADS?: {
|
|
1559
1620
|
text?: string | null;
|
|
@@ -2226,6 +2287,23 @@ type PostUpdateData = {
|
|
|
2226
2287
|
trialParams?: {
|
|
2227
2288
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
2228
2289
|
} | null;
|
|
2290
|
+
/**
|
|
2291
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
2292
|
+
*/
|
|
2293
|
+
musicSoundInfo?: {
|
|
2294
|
+
/**
|
|
2295
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
2296
|
+
*/
|
|
2297
|
+
musicSoundId: string;
|
|
2298
|
+
/**
|
|
2299
|
+
* Audio volume (0-100).
|
|
2300
|
+
*/
|
|
2301
|
+
musicSoundVolume?: number | null;
|
|
2302
|
+
/**
|
|
2303
|
+
* Background volume of the original video sound (0-100).
|
|
2304
|
+
*/
|
|
2305
|
+
videoOriginalSoundVolume?: number | null;
|
|
2306
|
+
} | null;
|
|
2229
2307
|
} | null;
|
|
2230
2308
|
THREADS?: {
|
|
2231
2309
|
text?: string | null;
|
|
@@ -2581,6 +2659,23 @@ type PostUpdateResponse = {
|
|
|
2581
2659
|
trialParams?: {
|
|
2582
2660
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
2583
2661
|
} | null;
|
|
2662
|
+
/**
|
|
2663
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
2664
|
+
*/
|
|
2665
|
+
musicSoundInfo?: {
|
|
2666
|
+
/**
|
|
2667
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
2668
|
+
*/
|
|
2669
|
+
musicSoundId: string;
|
|
2670
|
+
/**
|
|
2671
|
+
* Audio volume (0-100).
|
|
2672
|
+
*/
|
|
2673
|
+
musicSoundVolume?: number | null;
|
|
2674
|
+
/**
|
|
2675
|
+
* Background volume of the original video sound (0-100).
|
|
2676
|
+
*/
|
|
2677
|
+
videoOriginalSoundVolume?: number | null;
|
|
2678
|
+
} | null;
|
|
2584
2679
|
} | null;
|
|
2585
2680
|
THREADS?: {
|
|
2586
2681
|
text?: string | null;
|
|
@@ -3179,6 +3274,23 @@ type PostDeleteResponse = {
|
|
|
3179
3274
|
trialParams?: {
|
|
3180
3275
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
3181
3276
|
} | null;
|
|
3277
|
+
/**
|
|
3278
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
3279
|
+
*/
|
|
3280
|
+
musicSoundInfo?: {
|
|
3281
|
+
/**
|
|
3282
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
3283
|
+
*/
|
|
3284
|
+
musicSoundId: string;
|
|
3285
|
+
/**
|
|
3286
|
+
* Audio volume (0-100).
|
|
3287
|
+
*/
|
|
3288
|
+
musicSoundVolume?: number | null;
|
|
3289
|
+
/**
|
|
3290
|
+
* Background volume of the original video sound (0-100).
|
|
3291
|
+
*/
|
|
3292
|
+
videoOriginalSoundVolume?: number | null;
|
|
3293
|
+
} | null;
|
|
3182
3294
|
} | null;
|
|
3183
3295
|
THREADS?: {
|
|
3184
3296
|
text?: string | null;
|
|
@@ -3787,6 +3899,23 @@ type PostGetListResponse = {
|
|
|
3787
3899
|
trialParams?: {
|
|
3788
3900
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
3789
3901
|
} | null;
|
|
3902
|
+
/**
|
|
3903
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
3904
|
+
*/
|
|
3905
|
+
musicSoundInfo?: {
|
|
3906
|
+
/**
|
|
3907
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
3908
|
+
*/
|
|
3909
|
+
musicSoundId: string;
|
|
3910
|
+
/**
|
|
3911
|
+
* Audio volume (0-100).
|
|
3912
|
+
*/
|
|
3913
|
+
musicSoundVolume?: number | null;
|
|
3914
|
+
/**
|
|
3915
|
+
* Background volume of the original video sound (0-100).
|
|
3916
|
+
*/
|
|
3917
|
+
videoOriginalSoundVolume?: number | null;
|
|
3918
|
+
} | null;
|
|
3790
3919
|
} | null;
|
|
3791
3920
|
THREADS?: {
|
|
3792
3921
|
text?: string | null;
|
|
@@ -4461,6 +4590,23 @@ type PostCreateData = {
|
|
|
4461
4590
|
trialParams?: {
|
|
4462
4591
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
4463
4592
|
} | null;
|
|
4593
|
+
/**
|
|
4594
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
4595
|
+
*/
|
|
4596
|
+
musicSoundInfo?: {
|
|
4597
|
+
/**
|
|
4598
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
4599
|
+
*/
|
|
4600
|
+
musicSoundId: string;
|
|
4601
|
+
/**
|
|
4602
|
+
* Audio volume (0-100).
|
|
4603
|
+
*/
|
|
4604
|
+
musicSoundVolume?: number | null;
|
|
4605
|
+
/**
|
|
4606
|
+
* Background volume of the original video sound (0-100).
|
|
4607
|
+
*/
|
|
4608
|
+
videoOriginalSoundVolume?: number | null;
|
|
4609
|
+
} | null;
|
|
4464
4610
|
} | null;
|
|
4465
4611
|
THREADS?: {
|
|
4466
4612
|
text?: string | null;
|
|
@@ -4816,6 +4962,23 @@ type PostCreateResponse = {
|
|
|
4816
4962
|
trialParams?: {
|
|
4817
4963
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
4818
4964
|
} | null;
|
|
4965
|
+
/**
|
|
4966
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
4967
|
+
*/
|
|
4968
|
+
musicSoundInfo?: {
|
|
4969
|
+
/**
|
|
4970
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
4971
|
+
*/
|
|
4972
|
+
musicSoundId: string;
|
|
4973
|
+
/**
|
|
4974
|
+
* Audio volume (0-100).
|
|
4975
|
+
*/
|
|
4976
|
+
musicSoundVolume?: number | null;
|
|
4977
|
+
/**
|
|
4978
|
+
* Background volume of the original video sound (0-100).
|
|
4979
|
+
*/
|
|
4980
|
+
videoOriginalSoundVolume?: number | null;
|
|
4981
|
+
} | null;
|
|
4819
4982
|
} | null;
|
|
4820
4983
|
THREADS?: {
|
|
4821
4984
|
text?: string | null;
|
|
@@ -5414,6 +5577,23 @@ type PostRetryResponse = {
|
|
|
5414
5577
|
trialParams?: {
|
|
5415
5578
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
5416
5579
|
} | null;
|
|
5580
|
+
/**
|
|
5581
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
5582
|
+
*/
|
|
5583
|
+
musicSoundInfo?: {
|
|
5584
|
+
/**
|
|
5585
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
5586
|
+
*/
|
|
5587
|
+
musicSoundId: string;
|
|
5588
|
+
/**
|
|
5589
|
+
* Audio volume (0-100).
|
|
5590
|
+
*/
|
|
5591
|
+
musicSoundVolume?: number | null;
|
|
5592
|
+
/**
|
|
5593
|
+
* Background volume of the original video sound (0-100).
|
|
5594
|
+
*/
|
|
5595
|
+
videoOriginalSoundVolume?: number | null;
|
|
5596
|
+
} | null;
|
|
5417
5597
|
} | null;
|
|
5418
5598
|
THREADS?: {
|
|
5419
5599
|
text?: string | null;
|
|
@@ -6078,6 +6258,23 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6078
6258
|
trialParams?: {
|
|
6079
6259
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
6080
6260
|
} | null;
|
|
6261
|
+
/**
|
|
6262
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
6263
|
+
*/
|
|
6264
|
+
musicSoundInfo?: {
|
|
6265
|
+
/**
|
|
6266
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
6267
|
+
*/
|
|
6268
|
+
musicSoundId: string;
|
|
6269
|
+
/**
|
|
6270
|
+
* Audio volume (0-100).
|
|
6271
|
+
*/
|
|
6272
|
+
musicSoundVolume?: number | null;
|
|
6273
|
+
/**
|
|
6274
|
+
* Background volume of the original video sound (0-100).
|
|
6275
|
+
*/
|
|
6276
|
+
videoOriginalSoundVolume?: number | null;
|
|
6277
|
+
} | null;
|
|
6081
6278
|
} | null;
|
|
6082
6279
|
THREADS?: {
|
|
6083
6280
|
text?: string | null;
|
|
@@ -6775,6 +6972,23 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6775
6972
|
trialParams?: {
|
|
6776
6973
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
6777
6974
|
} | null;
|
|
6975
|
+
/**
|
|
6976
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
6977
|
+
*/
|
|
6978
|
+
musicSoundInfo?: {
|
|
6979
|
+
/**
|
|
6980
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
6981
|
+
*/
|
|
6982
|
+
musicSoundId: string;
|
|
6983
|
+
/**
|
|
6984
|
+
* Audio volume (0-100).
|
|
6985
|
+
*/
|
|
6986
|
+
musicSoundVolume?: number | null;
|
|
6987
|
+
/**
|
|
6988
|
+
* Background volume of the original video sound (0-100).
|
|
6989
|
+
*/
|
|
6990
|
+
videoOriginalSoundVolume?: number | null;
|
|
6991
|
+
} | null;
|
|
6778
6992
|
} | null;
|
|
6779
6993
|
THREADS?: {
|
|
6780
6994
|
text?: string | null;
|
|
@@ -10229,6 +10443,31 @@ type MiscInstagramSearchLocationsResponse = {
|
|
|
10229
10443
|
} | null;
|
|
10230
10444
|
}>;
|
|
10231
10445
|
};
|
|
10446
|
+
type MiscInstagramSearchAudioData = {
|
|
10447
|
+
/**
|
|
10448
|
+
* The type of Instagram audio to search for.
|
|
10449
|
+
*/
|
|
10450
|
+
audioType: 'original_sound' | 'music';
|
|
10451
|
+
/**
|
|
10452
|
+
* Optional keyword search query.
|
|
10453
|
+
*/
|
|
10454
|
+
searchQuery?: string;
|
|
10455
|
+
teamId: string;
|
|
10456
|
+
};
|
|
10457
|
+
type MiscInstagramSearchAudioResponse = {
|
|
10458
|
+
audio?: Array<{
|
|
10459
|
+
audio_id: string;
|
|
10460
|
+
cover_artwork_thumbnail_uri?: string | null;
|
|
10461
|
+
cover_artwork_thumbnail_url?: string | null;
|
|
10462
|
+
display_artist?: string | null;
|
|
10463
|
+
duration_in_ms?: number | null;
|
|
10464
|
+
audio_type: 'original_sound' | 'music';
|
|
10465
|
+
title?: string | null;
|
|
10466
|
+
download_url?: string | null;
|
|
10467
|
+
ig_username?: string | null;
|
|
10468
|
+
profile_picture_url?: string | null;
|
|
10469
|
+
}>;
|
|
10470
|
+
};
|
|
10232
10471
|
type MiscInstagramDeleteCommentData = {
|
|
10233
10472
|
/**
|
|
10234
10473
|
* Body
|
|
@@ -11338,6 +11577,10 @@ type $OpenApiTs = {
|
|
|
11338
11577
|
stripePriceId: string;
|
|
11339
11578
|
tier: 'PRO' | 'BUSINESS';
|
|
11340
11579
|
billingInterval: 'MONTHLY' | 'YEARLY';
|
|
11580
|
+
isCustomPrice: boolean;
|
|
11581
|
+
customPriceLabel?: string | null;
|
|
11582
|
+
customUnitAmount?: number | null;
|
|
11583
|
+
customCurrency?: string | null;
|
|
11341
11584
|
cancelAtPeriodEnd: boolean;
|
|
11342
11585
|
created: string | null;
|
|
11343
11586
|
currentPeriodStart: string | null;
|
|
@@ -13949,6 +14192,144 @@ type $OpenApiTs = {
|
|
|
13949
14192
|
};
|
|
13950
14193
|
};
|
|
13951
14194
|
};
|
|
14195
|
+
'/api/v1/post/reconnect-social-account/candidates': {
|
|
14196
|
+
get: {
|
|
14197
|
+
req: PostGetReconnectSocialAccountCandidatesData;
|
|
14198
|
+
res: {
|
|
14199
|
+
/**
|
|
14200
|
+
* 200
|
|
14201
|
+
*/
|
|
14202
|
+
200: {
|
|
14203
|
+
items: Array<{
|
|
14204
|
+
id: string;
|
|
14205
|
+
title: string;
|
|
14206
|
+
postDate: string | null;
|
|
14207
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
14208
|
+
createdAt: string | null;
|
|
14209
|
+
updatedAt: string | null;
|
|
14210
|
+
}>;
|
|
14211
|
+
total: number;
|
|
14212
|
+
};
|
|
14213
|
+
/**
|
|
14214
|
+
* 400
|
|
14215
|
+
*/
|
|
14216
|
+
400: {
|
|
14217
|
+
statusCode?: number | null;
|
|
14218
|
+
message: string;
|
|
14219
|
+
issues?: Array<{
|
|
14220
|
+
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;
|
|
14221
|
+
message: string;
|
|
14222
|
+
path?: Array<(string | number)> | null;
|
|
14223
|
+
}> | null;
|
|
14224
|
+
};
|
|
14225
|
+
/**
|
|
14226
|
+
* 401
|
|
14227
|
+
*/
|
|
14228
|
+
401: {
|
|
14229
|
+
statusCode?: number | null;
|
|
14230
|
+
message: string;
|
|
14231
|
+
};
|
|
14232
|
+
/**
|
|
14233
|
+
* 403
|
|
14234
|
+
*/
|
|
14235
|
+
403: {
|
|
14236
|
+
statusCode?: number | null;
|
|
14237
|
+
message: string;
|
|
14238
|
+
};
|
|
14239
|
+
/**
|
|
14240
|
+
* 404
|
|
14241
|
+
*/
|
|
14242
|
+
404: {
|
|
14243
|
+
statusCode?: number | null;
|
|
14244
|
+
message: string;
|
|
14245
|
+
};
|
|
14246
|
+
/**
|
|
14247
|
+
* 429
|
|
14248
|
+
*/
|
|
14249
|
+
429: {
|
|
14250
|
+
statusCode?: number | null;
|
|
14251
|
+
message: string;
|
|
14252
|
+
};
|
|
14253
|
+
/**
|
|
14254
|
+
* 500
|
|
14255
|
+
*/
|
|
14256
|
+
500: {
|
|
14257
|
+
statusCode?: number | null;
|
|
14258
|
+
message: string;
|
|
14259
|
+
};
|
|
14260
|
+
};
|
|
14261
|
+
};
|
|
14262
|
+
};
|
|
14263
|
+
'/api/v1/post/reconnect-social-account': {
|
|
14264
|
+
post: {
|
|
14265
|
+
req: PostReconnectSocialAccountData;
|
|
14266
|
+
res: {
|
|
14267
|
+
/**
|
|
14268
|
+
* 200
|
|
14269
|
+
*/
|
|
14270
|
+
200: {
|
|
14271
|
+
total: number;
|
|
14272
|
+
succeeded: number;
|
|
14273
|
+
failed: number;
|
|
14274
|
+
results: Array<{
|
|
14275
|
+
postId: string;
|
|
14276
|
+
title?: string | null;
|
|
14277
|
+
success: boolean;
|
|
14278
|
+
statusBefore?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
14279
|
+
statusAfter?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
14280
|
+
message?: string;
|
|
14281
|
+
}>;
|
|
14282
|
+
};
|
|
14283
|
+
/**
|
|
14284
|
+
* 400
|
|
14285
|
+
*/
|
|
14286
|
+
400: {
|
|
14287
|
+
statusCode?: number | null;
|
|
14288
|
+
message: string;
|
|
14289
|
+
issues?: Array<{
|
|
14290
|
+
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;
|
|
14291
|
+
message: string;
|
|
14292
|
+
path?: Array<(string | number)> | null;
|
|
14293
|
+
}> | null;
|
|
14294
|
+
};
|
|
14295
|
+
/**
|
|
14296
|
+
* 401
|
|
14297
|
+
*/
|
|
14298
|
+
401: {
|
|
14299
|
+
statusCode?: number | null;
|
|
14300
|
+
message: string;
|
|
14301
|
+
};
|
|
14302
|
+
/**
|
|
14303
|
+
* 403
|
|
14304
|
+
*/
|
|
14305
|
+
403: {
|
|
14306
|
+
statusCode?: number | null;
|
|
14307
|
+
message: string;
|
|
14308
|
+
};
|
|
14309
|
+
/**
|
|
14310
|
+
* 404
|
|
14311
|
+
*/
|
|
14312
|
+
404: {
|
|
14313
|
+
statusCode?: number | null;
|
|
14314
|
+
message: string;
|
|
14315
|
+
};
|
|
14316
|
+
/**
|
|
14317
|
+
* 429
|
|
14318
|
+
*/
|
|
14319
|
+
429: {
|
|
14320
|
+
statusCode?: number | null;
|
|
14321
|
+
message: string;
|
|
14322
|
+
};
|
|
14323
|
+
/**
|
|
14324
|
+
* 500
|
|
14325
|
+
*/
|
|
14326
|
+
500: {
|
|
14327
|
+
statusCode?: number | null;
|
|
14328
|
+
message: string;
|
|
14329
|
+
};
|
|
14330
|
+
};
|
|
14331
|
+
};
|
|
14332
|
+
};
|
|
13952
14333
|
'/api/v1/post/{id}': {
|
|
13953
14334
|
get: {
|
|
13954
14335
|
req: PostGetData;
|
|
@@ -14065,6 +14446,23 @@ type $OpenApiTs = {
|
|
|
14065
14446
|
trialParams?: {
|
|
14066
14447
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
14067
14448
|
} | null;
|
|
14449
|
+
/**
|
|
14450
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
14451
|
+
*/
|
|
14452
|
+
musicSoundInfo?: {
|
|
14453
|
+
/**
|
|
14454
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
14455
|
+
*/
|
|
14456
|
+
musicSoundId: string;
|
|
14457
|
+
/**
|
|
14458
|
+
* Audio volume (0-100).
|
|
14459
|
+
*/
|
|
14460
|
+
musicSoundVolume?: number | null;
|
|
14461
|
+
/**
|
|
14462
|
+
* Background volume of the original video sound (0-100).
|
|
14463
|
+
*/
|
|
14464
|
+
videoOriginalSoundVolume?: number | null;
|
|
14465
|
+
} | null;
|
|
14068
14466
|
} | null;
|
|
14069
14467
|
THREADS?: {
|
|
14070
14468
|
text?: string | null;
|
|
@@ -14790,6 +15188,23 @@ type $OpenApiTs = {
|
|
|
14790
15188
|
trialParams?: {
|
|
14791
15189
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
14792
15190
|
} | null;
|
|
15191
|
+
/**
|
|
15192
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
15193
|
+
*/
|
|
15194
|
+
musicSoundInfo?: {
|
|
15195
|
+
/**
|
|
15196
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
15197
|
+
*/
|
|
15198
|
+
musicSoundId: string;
|
|
15199
|
+
/**
|
|
15200
|
+
* Audio volume (0-100).
|
|
15201
|
+
*/
|
|
15202
|
+
musicSoundVolume?: number | null;
|
|
15203
|
+
/**
|
|
15204
|
+
* Background volume of the original video sound (0-100).
|
|
15205
|
+
*/
|
|
15206
|
+
videoOriginalSoundVolume?: number | null;
|
|
15207
|
+
} | null;
|
|
14793
15208
|
} | null;
|
|
14794
15209
|
THREADS?: {
|
|
14795
15210
|
text?: string | null;
|
|
@@ -15440,6 +15855,23 @@ type $OpenApiTs = {
|
|
|
15440
15855
|
trialParams?: {
|
|
15441
15856
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
15442
15857
|
} | null;
|
|
15858
|
+
/**
|
|
15859
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
15860
|
+
*/
|
|
15861
|
+
musicSoundInfo?: {
|
|
15862
|
+
/**
|
|
15863
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
15864
|
+
*/
|
|
15865
|
+
musicSoundId: string;
|
|
15866
|
+
/**
|
|
15867
|
+
* Audio volume (0-100).
|
|
15868
|
+
*/
|
|
15869
|
+
musicSoundVolume?: number | null;
|
|
15870
|
+
/**
|
|
15871
|
+
* Background volume of the original video sound (0-100).
|
|
15872
|
+
*/
|
|
15873
|
+
videoOriginalSoundVolume?: number | null;
|
|
15874
|
+
} | null;
|
|
15443
15875
|
} | null;
|
|
15444
15876
|
THREADS?: {
|
|
15445
15877
|
text?: string | null;
|
|
@@ -16093,6 +16525,23 @@ type $OpenApiTs = {
|
|
|
16093
16525
|
trialParams?: {
|
|
16094
16526
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
16095
16527
|
} | null;
|
|
16528
|
+
/**
|
|
16529
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
16530
|
+
*/
|
|
16531
|
+
musicSoundInfo?: {
|
|
16532
|
+
/**
|
|
16533
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
16534
|
+
*/
|
|
16535
|
+
musicSoundId: string;
|
|
16536
|
+
/**
|
|
16537
|
+
* Audio volume (0-100).
|
|
16538
|
+
*/
|
|
16539
|
+
musicSoundVolume?: number | null;
|
|
16540
|
+
/**
|
|
16541
|
+
* Background volume of the original video sound (0-100).
|
|
16542
|
+
*/
|
|
16543
|
+
videoOriginalSoundVolume?: number | null;
|
|
16544
|
+
} | null;
|
|
16096
16545
|
} | null;
|
|
16097
16546
|
THREADS?: {
|
|
16098
16547
|
text?: string | null;
|
|
@@ -16820,6 +17269,23 @@ type $OpenApiTs = {
|
|
|
16820
17269
|
trialParams?: {
|
|
16821
17270
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
16822
17271
|
} | null;
|
|
17272
|
+
/**
|
|
17273
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
17274
|
+
*/
|
|
17275
|
+
musicSoundInfo?: {
|
|
17276
|
+
/**
|
|
17277
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
17278
|
+
*/
|
|
17279
|
+
musicSoundId: string;
|
|
17280
|
+
/**
|
|
17281
|
+
* Audio volume (0-100).
|
|
17282
|
+
*/
|
|
17283
|
+
musicSoundVolume?: number | null;
|
|
17284
|
+
/**
|
|
17285
|
+
* Background volume of the original video sound (0-100).
|
|
17286
|
+
*/
|
|
17287
|
+
videoOriginalSoundVolume?: number | null;
|
|
17288
|
+
} | null;
|
|
16823
17289
|
} | null;
|
|
16824
17290
|
THREADS?: {
|
|
16825
17291
|
text?: string | null;
|
|
@@ -17472,6 +17938,23 @@ type $OpenApiTs = {
|
|
|
17472
17938
|
trialParams?: {
|
|
17473
17939
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
17474
17940
|
} | null;
|
|
17941
|
+
/**
|
|
17942
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
17943
|
+
*/
|
|
17944
|
+
musicSoundInfo?: {
|
|
17945
|
+
/**
|
|
17946
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
17947
|
+
*/
|
|
17948
|
+
musicSoundId: string;
|
|
17949
|
+
/**
|
|
17950
|
+
* Audio volume (0-100).
|
|
17951
|
+
*/
|
|
17952
|
+
musicSoundVolume?: number | null;
|
|
17953
|
+
/**
|
|
17954
|
+
* Background volume of the original video sound (0-100).
|
|
17955
|
+
*/
|
|
17956
|
+
videoOriginalSoundVolume?: number | null;
|
|
17957
|
+
} | null;
|
|
17475
17958
|
} | null;
|
|
17476
17959
|
THREADS?: {
|
|
17477
17960
|
text?: string | null;
|
|
@@ -18241,6 +18724,23 @@ type $OpenApiTs = {
|
|
|
18241
18724
|
trialParams?: {
|
|
18242
18725
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
18243
18726
|
} | null;
|
|
18727
|
+
/**
|
|
18728
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
18729
|
+
*/
|
|
18730
|
+
musicSoundInfo?: {
|
|
18731
|
+
/**
|
|
18732
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
18733
|
+
*/
|
|
18734
|
+
musicSoundId: string;
|
|
18735
|
+
/**
|
|
18736
|
+
* Audio volume (0-100).
|
|
18737
|
+
*/
|
|
18738
|
+
musicSoundVolume?: number | null;
|
|
18739
|
+
/**
|
|
18740
|
+
* Background volume of the original video sound (0-100).
|
|
18741
|
+
*/
|
|
18742
|
+
videoOriginalSoundVolume?: number | null;
|
|
18743
|
+
} | null;
|
|
18244
18744
|
} | null;
|
|
18245
18745
|
THREADS?: {
|
|
18246
18746
|
text?: string | null;
|
|
@@ -19043,6 +19543,23 @@ type $OpenApiTs = {
|
|
|
19043
19543
|
trialParams?: {
|
|
19044
19544
|
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
19045
19545
|
} | null;
|
|
19546
|
+
/**
|
|
19547
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
19548
|
+
*/
|
|
19549
|
+
musicSoundInfo?: {
|
|
19550
|
+
/**
|
|
19551
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
19552
|
+
*/
|
|
19553
|
+
musicSoundId: string;
|
|
19554
|
+
/**
|
|
19555
|
+
* Audio volume (0-100).
|
|
19556
|
+
*/
|
|
19557
|
+
musicSoundVolume?: number | null;
|
|
19558
|
+
/**
|
|
19559
|
+
* Background volume of the original video sound (0-100).
|
|
19560
|
+
*/
|
|
19561
|
+
videoOriginalSoundVolume?: number | null;
|
|
19562
|
+
} | null;
|
|
19046
19563
|
} | null;
|
|
19047
19564
|
THREADS?: {
|
|
19048
19565
|
text?: string | null;
|
|
@@ -25457,6 +25974,77 @@ type $OpenApiTs = {
|
|
|
25457
25974
|
};
|
|
25458
25975
|
};
|
|
25459
25976
|
};
|
|
25977
|
+
'/api/v1/misc/instagram/audio': {
|
|
25978
|
+
get: {
|
|
25979
|
+
req: MiscInstagramSearchAudioData;
|
|
25980
|
+
res: {
|
|
25981
|
+
/**
|
|
25982
|
+
* 200
|
|
25983
|
+
*/
|
|
25984
|
+
200: {
|
|
25985
|
+
audio?: Array<{
|
|
25986
|
+
audio_id: string;
|
|
25987
|
+
cover_artwork_thumbnail_uri?: string | null;
|
|
25988
|
+
cover_artwork_thumbnail_url?: string | null;
|
|
25989
|
+
display_artist?: string | null;
|
|
25990
|
+
duration_in_ms?: number | null;
|
|
25991
|
+
audio_type: 'original_sound' | 'music';
|
|
25992
|
+
title?: string | null;
|
|
25993
|
+
download_url?: string | null;
|
|
25994
|
+
ig_username?: string | null;
|
|
25995
|
+
profile_picture_url?: string | null;
|
|
25996
|
+
}>;
|
|
25997
|
+
};
|
|
25998
|
+
/**
|
|
25999
|
+
* 400
|
|
26000
|
+
*/
|
|
26001
|
+
400: {
|
|
26002
|
+
statusCode?: number | null;
|
|
26003
|
+
message: string;
|
|
26004
|
+
issues?: Array<{
|
|
26005
|
+
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;
|
|
26006
|
+
message: string;
|
|
26007
|
+
path?: Array<(string | number)> | null;
|
|
26008
|
+
}> | null;
|
|
26009
|
+
};
|
|
26010
|
+
/**
|
|
26011
|
+
* 401
|
|
26012
|
+
*/
|
|
26013
|
+
401: {
|
|
26014
|
+
statusCode?: number | null;
|
|
26015
|
+
message: string;
|
|
26016
|
+
};
|
|
26017
|
+
/**
|
|
26018
|
+
* 403
|
|
26019
|
+
*/
|
|
26020
|
+
403: {
|
|
26021
|
+
statusCode?: number | null;
|
|
26022
|
+
message: string;
|
|
26023
|
+
};
|
|
26024
|
+
/**
|
|
26025
|
+
* 404
|
|
26026
|
+
*/
|
|
26027
|
+
404: {
|
|
26028
|
+
statusCode?: number | null;
|
|
26029
|
+
message: string;
|
|
26030
|
+
};
|
|
26031
|
+
/**
|
|
26032
|
+
* 429
|
|
26033
|
+
*/
|
|
26034
|
+
429: {
|
|
26035
|
+
statusCode?: number | null;
|
|
26036
|
+
message: string;
|
|
26037
|
+
};
|
|
26038
|
+
/**
|
|
26039
|
+
* 500
|
|
26040
|
+
*/
|
|
26041
|
+
500: {
|
|
26042
|
+
statusCode?: number | null;
|
|
26043
|
+
message: string;
|
|
26044
|
+
};
|
|
26045
|
+
};
|
|
26046
|
+
};
|
|
26047
|
+
};
|
|
25460
26048
|
'/api/v1/misc/instagram/comment': {
|
|
25461
26049
|
delete: {
|
|
25462
26050
|
req: MiscInstagramDeleteCommentData;
|
|
@@ -28452,6 +29040,25 @@ declare class UploadService {
|
|
|
28452
29040
|
declare class PostService {
|
|
28453
29041
|
readonly httpRequest: BaseHttpRequest;
|
|
28454
29042
|
constructor(httpRequest: BaseHttpRequest);
|
|
29043
|
+
/**
|
|
29044
|
+
* Get posts that can be reconnected to a social account
|
|
29045
|
+
* @param data The data for the request.
|
|
29046
|
+
* @param data.teamId
|
|
29047
|
+
* @param data.type
|
|
29048
|
+
* @param data.offset
|
|
29049
|
+
* @param data.limit
|
|
29050
|
+
* @returns unknown 200
|
|
29051
|
+
* @throws ApiError
|
|
29052
|
+
*/
|
|
29053
|
+
postGetReconnectSocialAccountCandidates(data: PostGetReconnectSocialAccountCandidatesData): CancelablePromise<PostGetReconnectSocialAccountCandidatesResponse>;
|
|
29054
|
+
/**
|
|
29055
|
+
* Reconnect social account to matching posts
|
|
29056
|
+
* @param data The data for the request.
|
|
29057
|
+
* @param data.requestBody Body
|
|
29058
|
+
* @returns unknown 200
|
|
29059
|
+
* @throws ApiError
|
|
29060
|
+
*/
|
|
29061
|
+
postReconnectSocialAccount(data?: PostReconnectSocialAccountData): CancelablePromise<PostReconnectSocialAccountResponse>;
|
|
28455
29062
|
/**
|
|
28456
29063
|
* Get post
|
|
28457
29064
|
* @param data The data for the request.
|
|
@@ -29179,6 +29786,17 @@ declare class MiscService {
|
|
|
29179
29786
|
* @throws ApiError
|
|
29180
29787
|
*/
|
|
29181
29788
|
miscInstagramSearchLocations(data: MiscInstagramSearchLocationsData): CancelablePromise<MiscInstagramSearchLocationsResponse>;
|
|
29789
|
+
/**
|
|
29790
|
+
* Search Instagram audio assets
|
|
29791
|
+
* Searches Instagram music or original sounds that can be attached to Reels. Only works for Instagram accounts connected via Facebook Login.
|
|
29792
|
+
* @param data The data for the request.
|
|
29793
|
+
* @param data.teamId
|
|
29794
|
+
* @param data.audioType The type of Instagram audio to search for.
|
|
29795
|
+
* @param data.searchQuery Optional keyword search query.
|
|
29796
|
+
* @returns unknown 200
|
|
29797
|
+
* @throws ApiError
|
|
29798
|
+
*/
|
|
29799
|
+
miscInstagramSearchAudio(data: MiscInstagramSearchAudioData): CancelablePromise<MiscInstagramSearchAudioResponse>;
|
|
29182
29800
|
/**
|
|
29183
29801
|
* Delete an Instagram comment
|
|
29184
29802
|
* Permanently delete a published Instagram comment.
|
|
@@ -29616,4 +30234,4 @@ declare class Bundlesocial extends Client {
|
|
|
29616
30234
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
29617
30235
|
}
|
|
29618
30236
|
|
|
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 };
|
|
30237
|
+
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, PostGetReconnectSocialAccountCandidatesData, PostGetReconnectSocialAccountCandidatesResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostReconnectSocialAccountData, PostReconnectSocialAccountResponse, 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 };
|