bundlesocial 2.48.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 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;
@@ -723,6 +727,9 @@ type SocialAccountConnectData = {
723
727
  requestBody?: {
724
728
  type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
725
729
  teamId: string;
730
+ /**
731
+ * Client-provided return URL. After the OAuth flow completes (success or error), the user will be redirected here with success/error query params appended. Must be a well-formed http/https URL.
732
+ */
726
733
  redirectUrl: string;
727
734
  /**
728
735
  * Mastodon or Bluesky only
@@ -1402,7 +1409,7 @@ type UploadInitLargeUploadData = {
1402
1409
  requestBody?: {
1403
1410
  teamId?: string | null;
1404
1411
  fileName: string;
1405
- mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'image/gif' | 'video/mp4' | 'application/pdf';
1412
+ mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'image/gif' | 'video/mp4' | 'video/quicktime' | 'application/pdf';
1406
1413
  };
1407
1414
  };
1408
1415
  type UploadInitLargeUploadResponse = {
@@ -1551,6 +1558,23 @@ type PostGetResponse = {
1551
1558
  trialParams?: {
1552
1559
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
1553
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;
1554
1578
  } | null;
1555
1579
  THREADS?: {
1556
1580
  text?: string | null;
@@ -2223,6 +2247,23 @@ type PostUpdateData = {
2223
2247
  trialParams?: {
2224
2248
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
2225
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;
2226
2267
  } | null;
2227
2268
  THREADS?: {
2228
2269
  text?: string | null;
@@ -2578,6 +2619,23 @@ type PostUpdateResponse = {
2578
2619
  trialParams?: {
2579
2620
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
2580
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;
2581
2639
  } | null;
2582
2640
  THREADS?: {
2583
2641
  text?: string | null;
@@ -3176,6 +3234,23 @@ type PostDeleteResponse = {
3176
3234
  trialParams?: {
3177
3235
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
3178
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;
3179
3254
  } | null;
3180
3255
  THREADS?: {
3181
3256
  text?: string | null;
@@ -3784,6 +3859,23 @@ type PostGetListResponse = {
3784
3859
  trialParams?: {
3785
3860
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
3786
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;
3787
3879
  } | null;
3788
3880
  THREADS?: {
3789
3881
  text?: string | null;
@@ -4458,6 +4550,23 @@ type PostCreateData = {
4458
4550
  trialParams?: {
4459
4551
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
4460
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;
4461
4570
  } | null;
4462
4571
  THREADS?: {
4463
4572
  text?: string | null;
@@ -4813,6 +4922,23 @@ type PostCreateResponse = {
4813
4922
  trialParams?: {
4814
4923
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
4815
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;
4816
4942
  } | null;
4817
4943
  THREADS?: {
4818
4944
  text?: string | null;
@@ -5411,6 +5537,23 @@ type PostRetryResponse = {
5411
5537
  trialParams?: {
5412
5538
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
5413
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;
5414
5557
  } | null;
5415
5558
  THREADS?: {
5416
5559
  text?: string | null;
@@ -6075,6 +6218,23 @@ type AnalyticsGetPostAnalyticsResponse = {
6075
6218
  trialParams?: {
6076
6219
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
6077
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;
6078
6238
  } | null;
6079
6239
  THREADS?: {
6080
6240
  text?: string | null;
@@ -6772,6 +6932,23 @@ type AnalyticsGetPostAnalyticsRawResponse = {
6772
6932
  trialParams?: {
6773
6933
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
6774
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;
6775
6952
  } | null;
6776
6953
  THREADS?: {
6777
6954
  text?: string | null;
@@ -7458,6 +7635,29 @@ type CommentImportGetFetchedCommentsResponse = {
7458
7635
  text?: string | null;
7459
7636
  likesCount: number;
7460
7637
  repliesCount: number;
7638
+ platformData?: {
7639
+ canDelete?: boolean | null;
7640
+ canHide?: boolean | null;
7641
+ canLike?: boolean | null;
7642
+ canModerate?: boolean | null;
7643
+ hidden?: boolean | null;
7644
+ likedByMe?: boolean | null;
7645
+ reactionsCount?: number | null;
7646
+ reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
7647
+ owner?: boolean | null;
7648
+ hideStatus?: string | null;
7649
+ moderationStatus?: string | null;
7650
+ approvalStatus?: string | null;
7651
+ status?: string | null;
7652
+ attachmentType?: string | null;
7653
+ attachmentUrl?: string | null;
7654
+ cid?: string | null;
7655
+ origin?: 'platform' | 'bundle' | null;
7656
+ bundleCommentId?: string | null;
7657
+ displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
7658
+ disabledReason?: string | null;
7659
+ [key: string]: (unknown | boolean | number | string | null) | undefined;
7660
+ };
7461
7661
  publishedAt?: string | null;
7462
7662
  createdAt: string | null;
7463
7663
  updatedAt: string | null;
@@ -7465,6 +7665,67 @@ type CommentImportGetFetchedCommentsResponse = {
7465
7665
  }>;
7466
7666
  total: number;
7467
7667
  };
7668
+ type CommentImportActionFetchedCommentData = {
7669
+ commentId: string;
7670
+ /**
7671
+ * Body
7672
+ */
7673
+ requestBody?: {
7674
+ teamId: string;
7675
+ action: 'DELETE' | 'HIDE' | 'UNHIDE' | 'LIKE' | 'UNLIKE' | 'APPROVE' | 'REJECT';
7676
+ reason?: string;
7677
+ banAuthor?: boolean;
7678
+ };
7679
+ };
7680
+ type CommentImportActionFetchedCommentResponse = {
7681
+ success: boolean;
7682
+ item: {
7683
+ id: string;
7684
+ teamId: string;
7685
+ organizationId?: string | null;
7686
+ postId: string;
7687
+ socialAccountId: string;
7688
+ importId: string;
7689
+ platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7690
+ externalId: string;
7691
+ externalParentId?: string | null;
7692
+ externalPostId?: string | null;
7693
+ authorName?: string | null;
7694
+ authorExternalId?: string | null;
7695
+ authorProfileUrl?: string | null;
7696
+ authorAvatarUrl?: string | null;
7697
+ text?: string | null;
7698
+ likesCount: number;
7699
+ repliesCount: number;
7700
+ platformData?: {
7701
+ canDelete?: boolean | null;
7702
+ canHide?: boolean | null;
7703
+ canLike?: boolean | null;
7704
+ canModerate?: boolean | null;
7705
+ hidden?: boolean | null;
7706
+ likedByMe?: boolean | null;
7707
+ reactionsCount?: number | null;
7708
+ reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
7709
+ owner?: boolean | null;
7710
+ hideStatus?: string | null;
7711
+ moderationStatus?: string | null;
7712
+ approvalStatus?: string | null;
7713
+ status?: string | null;
7714
+ attachmentType?: string | null;
7715
+ attachmentUrl?: string | null;
7716
+ cid?: string | null;
7717
+ origin?: 'platform' | 'bundle' | null;
7718
+ bundleCommentId?: string | null;
7719
+ displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
7720
+ disabledReason?: string | null;
7721
+ [key: string]: (unknown | boolean | number | string | null) | undefined;
7722
+ };
7723
+ publishedAt?: string | null;
7724
+ createdAt: string | null;
7725
+ updatedAt: string | null;
7726
+ deletedAt?: string | null;
7727
+ };
7728
+ };
7468
7729
  type CommentImportGetByIdData = {
7469
7730
  importId: string;
7470
7731
  };
@@ -10142,6 +10403,31 @@ type MiscInstagramSearchLocationsResponse = {
10142
10403
  } | null;
10143
10404
  }>;
10144
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
+ };
10145
10431
  type MiscInstagramDeleteCommentData = {
10146
10432
  /**
10147
10433
  * Body
@@ -10157,6 +10443,26 @@ type MiscInstagramDeleteCommentData = {
10157
10443
  type MiscInstagramDeleteCommentResponse = {
10158
10444
  success: boolean;
10159
10445
  };
10446
+ type MiscFacebookGetTokenDebugData = {
10447
+ teamId: string;
10448
+ };
10449
+ type MiscFacebookGetTokenDebugResponse = {
10450
+ type?: 'USER' | 'PAGE';
10451
+ application?: string;
10452
+ data_access_expires_at?: number;
10453
+ is_valid: boolean;
10454
+ issued_at?: number;
10455
+ scopes: Array<(string)>;
10456
+ granular_scopes: Array<{
10457
+ scope: string;
10458
+ target_ids?: Array<(string)>;
10459
+ }>;
10460
+ error?: {
10461
+ code: number;
10462
+ message: string;
10463
+ subcode?: number;
10464
+ };
10465
+ };
10160
10466
  type MiscFacebookImportRecommendationsData = {
10161
10467
  /**
10162
10468
  * Body
@@ -11231,6 +11537,10 @@ type $OpenApiTs = {
11231
11537
  stripePriceId: string;
11232
11538
  tier: 'PRO' | 'BUSINESS';
11233
11539
  billingInterval: 'MONTHLY' | 'YEARLY';
11540
+ isCustomPrice: boolean;
11541
+ customPriceLabel?: string | null;
11542
+ customUnitAmount?: number | null;
11543
+ customCurrency?: string | null;
11234
11544
  cancelAtPeriodEnd: boolean;
11235
11545
  created: string | null;
11236
11546
  currentPeriodStart: string | null;
@@ -13958,6 +14268,23 @@ type $OpenApiTs = {
13958
14268
  trialParams?: {
13959
14269
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
13960
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;
13961
14288
  } | null;
13962
14289
  THREADS?: {
13963
14290
  text?: string | null;
@@ -14683,6 +15010,23 @@ type $OpenApiTs = {
14683
15010
  trialParams?: {
14684
15011
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
14685
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;
14686
15030
  } | null;
14687
15031
  THREADS?: {
14688
15032
  text?: string | null;
@@ -15333,6 +15677,23 @@ type $OpenApiTs = {
15333
15677
  trialParams?: {
15334
15678
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
15335
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;
15336
15697
  } | null;
15337
15698
  THREADS?: {
15338
15699
  text?: string | null;
@@ -15986,6 +16347,23 @@ type $OpenApiTs = {
15986
16347
  trialParams?: {
15987
16348
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
15988
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;
15989
16367
  } | null;
15990
16368
  THREADS?: {
15991
16369
  text?: string | null;
@@ -16713,12 +17091,29 @@ type $OpenApiTs = {
16713
17091
  trialParams?: {
16714
17092
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
16715
17093
  } | null;
16716
- } | null;
16717
- THREADS?: {
16718
- text?: string | null;
16719
- uploadIds?: Array<(string)> | null;
16720
- mediaItems?: Array<{
16721
- uploadId: string;
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;
17111
+ } | null;
17112
+ THREADS?: {
17113
+ text?: string | null;
17114
+ uploadIds?: Array<(string)> | null;
17115
+ mediaItems?: Array<{
17116
+ uploadId: string;
16722
17117
  altText?: string | null;
16723
17118
  }> | null;
16724
17119
  } | null;
@@ -17365,6 +17760,23 @@ type $OpenApiTs = {
17365
17760
  trialParams?: {
17366
17761
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
17367
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;
17368
17780
  } | null;
17369
17781
  THREADS?: {
17370
17782
  text?: string | null;
@@ -18134,6 +18546,23 @@ type $OpenApiTs = {
18134
18546
  trialParams?: {
18135
18547
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
18136
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;
18137
18566
  } | null;
18138
18567
  THREADS?: {
18139
18568
  text?: string | null;
@@ -18936,6 +19365,23 @@ type $OpenApiTs = {
18936
19365
  trialParams?: {
18937
19366
  graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
18938
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;
18939
19385
  } | null;
18940
19386
  THREADS?: {
18941
19387
  text?: string | null;
@@ -19919,6 +20365,29 @@ type $OpenApiTs = {
19919
20365
  text?: string | null;
19920
20366
  likesCount: number;
19921
20367
  repliesCount: number;
20368
+ platformData?: {
20369
+ canDelete?: boolean | null;
20370
+ canHide?: boolean | null;
20371
+ canLike?: boolean | null;
20372
+ canModerate?: boolean | null;
20373
+ hidden?: boolean | null;
20374
+ likedByMe?: boolean | null;
20375
+ reactionsCount?: number | null;
20376
+ reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
20377
+ owner?: boolean | null;
20378
+ hideStatus?: string | null;
20379
+ moderationStatus?: string | null;
20380
+ approvalStatus?: string | null;
20381
+ status?: string | null;
20382
+ attachmentType?: string | null;
20383
+ attachmentUrl?: string | null;
20384
+ cid?: string | null;
20385
+ origin?: 'platform' | 'bundle' | null;
20386
+ bundleCommentId?: string | null;
20387
+ displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
20388
+ disabledReason?: string | null;
20389
+ [key: string]: (unknown | boolean | number | string | null) | undefined;
20390
+ };
19922
20391
  publishedAt?: string | null;
19923
20392
  createdAt: string | null;
19924
20393
  updatedAt: string | null;
@@ -19976,6 +20445,112 @@ type $OpenApiTs = {
19976
20445
  };
19977
20446
  };
19978
20447
  };
20448
+ '/api/v1/comment/import/comments/{commentId}/action': {
20449
+ post: {
20450
+ req: CommentImportActionFetchedCommentData;
20451
+ res: {
20452
+ /**
20453
+ * 200
20454
+ */
20455
+ 200: {
20456
+ success: boolean;
20457
+ item: {
20458
+ id: string;
20459
+ teamId: string;
20460
+ organizationId?: string | null;
20461
+ postId: string;
20462
+ socialAccountId: string;
20463
+ importId: string;
20464
+ platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
20465
+ externalId: string;
20466
+ externalParentId?: string | null;
20467
+ externalPostId?: string | null;
20468
+ authorName?: string | null;
20469
+ authorExternalId?: string | null;
20470
+ authorProfileUrl?: string | null;
20471
+ authorAvatarUrl?: string | null;
20472
+ text?: string | null;
20473
+ likesCount: number;
20474
+ repliesCount: number;
20475
+ platformData?: {
20476
+ canDelete?: boolean | null;
20477
+ canHide?: boolean | null;
20478
+ canLike?: boolean | null;
20479
+ canModerate?: boolean | null;
20480
+ hidden?: boolean | null;
20481
+ likedByMe?: boolean | null;
20482
+ reactionsCount?: number | null;
20483
+ reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
20484
+ owner?: boolean | null;
20485
+ hideStatus?: string | null;
20486
+ moderationStatus?: string | null;
20487
+ approvalStatus?: string | null;
20488
+ status?: string | null;
20489
+ attachmentType?: string | null;
20490
+ attachmentUrl?: string | null;
20491
+ cid?: string | null;
20492
+ origin?: 'platform' | 'bundle' | null;
20493
+ bundleCommentId?: string | null;
20494
+ displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
20495
+ disabledReason?: string | null;
20496
+ [key: string]: (unknown | boolean | number | string | null) | undefined;
20497
+ };
20498
+ publishedAt?: string | null;
20499
+ createdAt: string | null;
20500
+ updatedAt: string | null;
20501
+ deletedAt?: string | null;
20502
+ };
20503
+ };
20504
+ /**
20505
+ * 400
20506
+ */
20507
+ 400: {
20508
+ statusCode?: number | null;
20509
+ message: string;
20510
+ issues?: Array<{
20511
+ 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;
20512
+ message: string;
20513
+ path?: Array<(string | number)> | null;
20514
+ }> | null;
20515
+ };
20516
+ /**
20517
+ * 401
20518
+ */
20519
+ 401: {
20520
+ statusCode?: number | null;
20521
+ message: string;
20522
+ };
20523
+ /**
20524
+ * 403
20525
+ */
20526
+ 403: {
20527
+ statusCode?: number | null;
20528
+ message: string;
20529
+ };
20530
+ /**
20531
+ * 404
20532
+ */
20533
+ 404: {
20534
+ statusCode?: number | null;
20535
+ message: string;
20536
+ };
20537
+ /**
20538
+ * 429
20539
+ */
20540
+ 429: {
20541
+ statusCode?: number | null;
20542
+ message: string;
20543
+ };
20544
+ /**
20545
+ * 500
20546
+ */
20547
+ 500: {
20548
+ statusCode?: number | null;
20549
+ message: string;
20550
+ };
20551
+ };
20552
+ };
20553
+ };
19979
20554
  '/api/v1/comment/import/{importId}': {
19980
20555
  get: {
19981
20556
  req: CommentImportGetByIdData;
@@ -25221,6 +25796,77 @@ type $OpenApiTs = {
25221
25796
  };
25222
25797
  };
25223
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
+ };
25224
25870
  '/api/v1/misc/instagram/comment': {
25225
25871
  delete: {
25226
25872
  req: MiscInstagramDeleteCommentData;
@@ -25281,6 +25927,80 @@ type $OpenApiTs = {
25281
25927
  };
25282
25928
  };
25283
25929
  };
25930
+ '/api/v1/misc/facebook/token-debug': {
25931
+ get: {
25932
+ req: MiscFacebookGetTokenDebugData;
25933
+ res: {
25934
+ /**
25935
+ * 200
25936
+ */
25937
+ 200: {
25938
+ type?: 'USER' | 'PAGE';
25939
+ application?: string;
25940
+ data_access_expires_at?: number;
25941
+ is_valid: boolean;
25942
+ issued_at?: number;
25943
+ scopes: Array<(string)>;
25944
+ granular_scopes: Array<{
25945
+ scope: string;
25946
+ target_ids?: Array<(string)>;
25947
+ }>;
25948
+ error?: {
25949
+ code: number;
25950
+ message: string;
25951
+ subcode?: number;
25952
+ };
25953
+ };
25954
+ /**
25955
+ * 400
25956
+ */
25957
+ 400: {
25958
+ statusCode?: number | null;
25959
+ message: string;
25960
+ issues?: Array<{
25961
+ 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;
25962
+ message: string;
25963
+ path?: Array<(string | number)> | null;
25964
+ }> | null;
25965
+ };
25966
+ /**
25967
+ * 401
25968
+ */
25969
+ 401: {
25970
+ statusCode?: number | null;
25971
+ message: string;
25972
+ };
25973
+ /**
25974
+ * 403
25975
+ */
25976
+ 403: {
25977
+ statusCode?: number | null;
25978
+ message: string;
25979
+ };
25980
+ /**
25981
+ * 404
25982
+ */
25983
+ 404: {
25984
+ statusCode?: number | null;
25985
+ message: string;
25986
+ };
25987
+ /**
25988
+ * 429
25989
+ */
25990
+ 429: {
25991
+ statusCode?: number | null;
25992
+ message: string;
25993
+ };
25994
+ /**
25995
+ * 500
25996
+ */
25997
+ 500: {
25998
+ statusCode?: number | null;
25999
+ message: string;
26000
+ };
26001
+ };
26002
+ };
26003
+ };
25284
26004
  '/api/v1/misc/facebook/recommendations/import': {
25285
26005
  post: {
25286
26006
  req: MiscFacebookImportRecommendationsData;
@@ -28307,6 +29027,15 @@ declare class CommentService {
28307
29027
  * @throws ApiError
28308
29028
  */
28309
29029
  commentImportGetFetchedComments(data: CommentImportGetFetchedCommentsData): CancelablePromise<CommentImportGetFetchedCommentsResponse>;
29030
+ /**
29031
+ * Run an action on a fetched comment
29032
+ * @param data The data for the request.
29033
+ * @param data.commentId
29034
+ * @param data.requestBody Body
29035
+ * @returns unknown 200
29036
+ * @throws ApiError
29037
+ */
29038
+ commentImportActionFetchedComment(data: CommentImportActionFetchedCommentData): CancelablePromise<CommentImportActionFetchedCommentResponse>;
28310
29039
  /**
28311
29040
  * Get comment import by ID
28312
29041
  * @param data The data for the request.
@@ -28860,6 +29589,17 @@ declare class MiscService {
28860
29589
  * @throws ApiError
28861
29590
  */
28862
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>;
28863
29603
  /**
28864
29604
  * Delete an Instagram comment
28865
29605
  * Permanently delete a published Instagram comment.
@@ -28869,6 +29609,14 @@ declare class MiscService {
28869
29609
  * @throws ApiError
28870
29610
  */
28871
29611
  miscInstagramDeleteComment(data?: MiscInstagramDeleteCommentData): CancelablePromise<MiscInstagramDeleteCommentResponse>;
29612
+ /**
29613
+ * Get Facebook token debug details
29614
+ * @param data The data for the request.
29615
+ * @param data.teamId
29616
+ * @returns unknown 200
29617
+ * @throws ApiError
29618
+ */
29619
+ miscFacebookGetTokenDebug(data: MiscFacebookGetTokenDebugData): CancelablePromise<MiscFacebookGetTokenDebugResponse>;
28872
29620
  /**
28873
29621
  * Start a new Facebook recommendations import
28874
29622
  * @param data The data for the request.
@@ -29289,4 +30037,4 @@ declare class Bundlesocial extends Client {
29289
30037
  constructor(apiKey: string, options?: OpenAPIConfig);
29290
30038
  }
29291
30039
 
29292
- 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, 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, 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 };