bundlesocial 2.51.0 → 2.52.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
@@ -964,6 +964,10 @@ type SocialAccountCreatePortalLinkData = {
964
964
  teamId: string;
965
965
  redirectUrl?: string;
966
966
  socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
967
+ /**
968
+ * Mastodon or Bluesky only
969
+ */
970
+ serverUrl?: string;
967
971
  /**
968
972
  * Optional. If true, portal will request provider-specific anti-auto-login behavior where supported.
969
973
  */
@@ -972,6 +976,10 @@ type SocialAccountCreatePortalLinkData = {
972
976
  * Optional. Instagram only. When true, direct Instagram connections on phones will try to force browser login to avoid the Instagram iOS app deep-link bug.
973
977
  */
974
978
  forceBrowserOAuth?: boolean;
979
+ /**
980
+ * Instagram only - connection method
981
+ */
982
+ instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM';
975
983
  /**
976
984
  * Optional. Facebook and Instagram only - when provided, portal skips business scope selection modal for Facebook login paths.
977
985
  */
@@ -9012,6 +9020,230 @@ type CommentCreateResponse = {
9012
9020
  updatedAt: string | null;
9013
9021
  deletedAt?: string | null;
9014
9022
  };
9023
+ type CommentRetryData = {
9024
+ id: string;
9025
+ };
9026
+ type CommentRetryResponse = {
9027
+ id: string;
9028
+ teamId: string;
9029
+ organizationId?: string | null;
9030
+ internalPostId: string;
9031
+ internalParentCommentId?: string | null;
9032
+ fetchedParentCommentId?: string | null;
9033
+ title: string;
9034
+ postDate: string | null;
9035
+ postedDate?: string | null;
9036
+ status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'RETRYING';
9037
+ data: {
9038
+ FACEBOOK?: {
9039
+ text?: string | null;
9040
+ } | null;
9041
+ INSTAGRAM?: {
9042
+ text?: string | null;
9043
+ } | null;
9044
+ THREADS?: {
9045
+ text?: string | null;
9046
+ } | null;
9047
+ TIKTOK?: {
9048
+ text?: string | null;
9049
+ } | null;
9050
+ LINKEDIN?: {
9051
+ text?: string | null;
9052
+ } | null;
9053
+ YOUTUBE?: {
9054
+ text?: string | null;
9055
+ } | null;
9056
+ REDDIT?: {
9057
+ text?: string | null;
9058
+ } | null;
9059
+ MASTODON?: {
9060
+ text?: string | null;
9061
+ } | null;
9062
+ DISCORD?: {
9063
+ text?: string | null;
9064
+ } | null;
9065
+ SLACK?: {
9066
+ text?: string | null;
9067
+ } | null;
9068
+ BLUESKY?: {
9069
+ text?: string | null;
9070
+ } | null;
9071
+ };
9072
+ error?: string | null;
9073
+ errors?: {
9074
+ FACEBOOK?: string | null;
9075
+ INSTAGRAM?: string | null;
9076
+ TIKTOK?: string | null;
9077
+ LINKEDIN?: string | null;
9078
+ REDDIT?: string | null;
9079
+ YOUTUBE?: string | null;
9080
+ MASTODON?: string | null;
9081
+ THREADS?: string | null;
9082
+ DISCORD?: string | null;
9083
+ SLACK?: string | null;
9084
+ BLUESKY?: string | null;
9085
+ } | null;
9086
+ errorsVerbose?: {
9087
+ FACEBOOK?: {
9088
+ code?: string | null;
9089
+ errorMessage?: string | null;
9090
+ isTransient?: boolean | null;
9091
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9092
+ httpStatus?: number | null;
9093
+ meta?: unknown;
9094
+ userFacingMessage?: string | null;
9095
+ } | null;
9096
+ INSTAGRAM?: {
9097
+ code?: string | null;
9098
+ errorMessage?: string | null;
9099
+ isTransient?: boolean | null;
9100
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9101
+ httpStatus?: number | null;
9102
+ meta?: unknown;
9103
+ userFacingMessage?: string | null;
9104
+ } | null;
9105
+ TIKTOK?: {
9106
+ code?: string | null;
9107
+ errorMessage?: string | null;
9108
+ isTransient?: boolean | null;
9109
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9110
+ httpStatus?: number | null;
9111
+ meta?: unknown;
9112
+ userFacingMessage?: string | null;
9113
+ } | null;
9114
+ LINKEDIN?: {
9115
+ code?: string | null;
9116
+ errorMessage?: string | null;
9117
+ isTransient?: boolean | null;
9118
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9119
+ httpStatus?: number | null;
9120
+ meta?: unknown;
9121
+ userFacingMessage?: string | null;
9122
+ } | null;
9123
+ REDDIT?: {
9124
+ code?: string | null;
9125
+ errorMessage?: string | null;
9126
+ isTransient?: boolean | null;
9127
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9128
+ httpStatus?: number | null;
9129
+ meta?: unknown;
9130
+ userFacingMessage?: string | null;
9131
+ } | null;
9132
+ YOUTUBE?: {
9133
+ code?: string | null;
9134
+ errorMessage?: string | null;
9135
+ isTransient?: boolean | null;
9136
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9137
+ httpStatus?: number | null;
9138
+ meta?: unknown;
9139
+ userFacingMessage?: string | null;
9140
+ } | null;
9141
+ MASTODON?: {
9142
+ code?: string | null;
9143
+ errorMessage?: string | null;
9144
+ isTransient?: boolean | null;
9145
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9146
+ httpStatus?: number | null;
9147
+ meta?: unknown;
9148
+ userFacingMessage?: string | null;
9149
+ } | null;
9150
+ THREADS?: {
9151
+ code?: string | null;
9152
+ errorMessage?: string | null;
9153
+ isTransient?: boolean | null;
9154
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9155
+ httpStatus?: number | null;
9156
+ meta?: unknown;
9157
+ userFacingMessage?: string | null;
9158
+ } | null;
9159
+ DISCORD?: {
9160
+ code?: string | null;
9161
+ errorMessage?: string | null;
9162
+ isTransient?: boolean | null;
9163
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9164
+ httpStatus?: number | null;
9165
+ meta?: unknown;
9166
+ userFacingMessage?: string | null;
9167
+ } | null;
9168
+ SLACK?: {
9169
+ code?: string | null;
9170
+ errorMessage?: string | null;
9171
+ isTransient?: boolean | null;
9172
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9173
+ httpStatus?: number | null;
9174
+ meta?: unknown;
9175
+ userFacingMessage?: string | null;
9176
+ } | null;
9177
+ BLUESKY?: {
9178
+ code?: string | null;
9179
+ errorMessage?: string | null;
9180
+ isTransient?: boolean | null;
9181
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
9182
+ httpStatus?: number | null;
9183
+ meta?: unknown;
9184
+ userFacingMessage?: string | null;
9185
+ } | null;
9186
+ } | null;
9187
+ externalData?: {
9188
+ FACEBOOK?: {
9189
+ id?: string | null;
9190
+ permalink?: string | null;
9191
+ } | null;
9192
+ INSTAGRAM?: {
9193
+ id?: string | null;
9194
+ permalink?: string | null;
9195
+ } | null;
9196
+ TIKTOK?: {
9197
+ id?: string | null;
9198
+ permalink?: string | null;
9199
+ } | null;
9200
+ LINKEDIN?: {
9201
+ id?: string | null;
9202
+ commentUrn?: string | null;
9203
+ permalink?: string | null;
9204
+ } | null;
9205
+ REDDIT?: {
9206
+ id?: string | null;
9207
+ permalink?: string | null;
9208
+ } | null;
9209
+ YOUTUBE?: {
9210
+ id?: string | null;
9211
+ permalink?: string | null;
9212
+ } | null;
9213
+ MASTODON?: {
9214
+ id?: string | null;
9215
+ permalink?: string | null;
9216
+ } | null;
9217
+ THREADS?: {
9218
+ id?: string | null;
9219
+ permalink?: string | null;
9220
+ } | null;
9221
+ DISCORD?: {
9222
+ id?: string | null;
9223
+ permalink?: string | null;
9224
+ } | null;
9225
+ SLACK?: {
9226
+ id?: string | null;
9227
+ permalink?: string | null;
9228
+ } | null;
9229
+ BLUESKY?: {
9230
+ id?: string | null;
9231
+ uri?: string | null;
9232
+ /**
9233
+ * Content ID of the created record
9234
+ */
9235
+ cid?: string | null;
9236
+ permalink?: string | null;
9237
+ /**
9238
+ * Author DID (owner of the record)
9239
+ */
9240
+ did?: string | null;
9241
+ } | null;
9242
+ } | null;
9243
+ createdAt: string | null;
9244
+ updatedAt: string | null;
9245
+ deletedAt?: string | null;
9246
+ };
9015
9247
  type MiscYoutubeSetThumbnailData = {
9016
9248
  /**
9017
9249
  * Body
@@ -22189,6 +22421,284 @@ type $OpenApiTs = {
22189
22421
  };
22190
22422
  };
22191
22423
  };
22424
+ '/api/v1/comment/{id}/retry': {
22425
+ post: {
22426
+ req: CommentRetryData;
22427
+ res: {
22428
+ /**
22429
+ * 200
22430
+ */
22431
+ 200: {
22432
+ id: string;
22433
+ teamId: string;
22434
+ organizationId?: string | null;
22435
+ internalPostId: string;
22436
+ internalParentCommentId?: string | null;
22437
+ fetchedParentCommentId?: string | null;
22438
+ title: string;
22439
+ postDate: string | null;
22440
+ postedDate?: string | null;
22441
+ status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'RETRYING';
22442
+ data: {
22443
+ FACEBOOK?: {
22444
+ text?: string | null;
22445
+ } | null;
22446
+ INSTAGRAM?: {
22447
+ text?: string | null;
22448
+ } | null;
22449
+ THREADS?: {
22450
+ text?: string | null;
22451
+ } | null;
22452
+ TIKTOK?: {
22453
+ text?: string | null;
22454
+ } | null;
22455
+ LINKEDIN?: {
22456
+ text?: string | null;
22457
+ } | null;
22458
+ YOUTUBE?: {
22459
+ text?: string | null;
22460
+ } | null;
22461
+ REDDIT?: {
22462
+ text?: string | null;
22463
+ } | null;
22464
+ MASTODON?: {
22465
+ text?: string | null;
22466
+ } | null;
22467
+ DISCORD?: {
22468
+ text?: string | null;
22469
+ } | null;
22470
+ SLACK?: {
22471
+ text?: string | null;
22472
+ } | null;
22473
+ BLUESKY?: {
22474
+ text?: string | null;
22475
+ } | null;
22476
+ };
22477
+ error?: string | null;
22478
+ errors?: {
22479
+ FACEBOOK?: string | null;
22480
+ INSTAGRAM?: string | null;
22481
+ TIKTOK?: string | null;
22482
+ LINKEDIN?: string | null;
22483
+ REDDIT?: string | null;
22484
+ YOUTUBE?: string | null;
22485
+ MASTODON?: string | null;
22486
+ THREADS?: string | null;
22487
+ DISCORD?: string | null;
22488
+ SLACK?: string | null;
22489
+ BLUESKY?: string | null;
22490
+ } | null;
22491
+ errorsVerbose?: {
22492
+ FACEBOOK?: {
22493
+ code?: string | null;
22494
+ errorMessage?: string | null;
22495
+ isTransient?: boolean | null;
22496
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22497
+ httpStatus?: number | null;
22498
+ meta?: unknown;
22499
+ userFacingMessage?: string | null;
22500
+ } | null;
22501
+ INSTAGRAM?: {
22502
+ code?: string | null;
22503
+ errorMessage?: string | null;
22504
+ isTransient?: boolean | null;
22505
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22506
+ httpStatus?: number | null;
22507
+ meta?: unknown;
22508
+ userFacingMessage?: string | null;
22509
+ } | null;
22510
+ TIKTOK?: {
22511
+ code?: string | null;
22512
+ errorMessage?: string | null;
22513
+ isTransient?: boolean | null;
22514
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22515
+ httpStatus?: number | null;
22516
+ meta?: unknown;
22517
+ userFacingMessage?: string | null;
22518
+ } | null;
22519
+ LINKEDIN?: {
22520
+ code?: string | null;
22521
+ errorMessage?: string | null;
22522
+ isTransient?: boolean | null;
22523
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22524
+ httpStatus?: number | null;
22525
+ meta?: unknown;
22526
+ userFacingMessage?: string | null;
22527
+ } | null;
22528
+ REDDIT?: {
22529
+ code?: string | null;
22530
+ errorMessage?: string | null;
22531
+ isTransient?: boolean | null;
22532
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22533
+ httpStatus?: number | null;
22534
+ meta?: unknown;
22535
+ userFacingMessage?: string | null;
22536
+ } | null;
22537
+ YOUTUBE?: {
22538
+ code?: string | null;
22539
+ errorMessage?: string | null;
22540
+ isTransient?: boolean | null;
22541
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22542
+ httpStatus?: number | null;
22543
+ meta?: unknown;
22544
+ userFacingMessage?: string | null;
22545
+ } | null;
22546
+ MASTODON?: {
22547
+ code?: string | null;
22548
+ errorMessage?: string | null;
22549
+ isTransient?: boolean | null;
22550
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22551
+ httpStatus?: number | null;
22552
+ meta?: unknown;
22553
+ userFacingMessage?: string | null;
22554
+ } | null;
22555
+ THREADS?: {
22556
+ code?: string | null;
22557
+ errorMessage?: string | null;
22558
+ isTransient?: boolean | null;
22559
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22560
+ httpStatus?: number | null;
22561
+ meta?: unknown;
22562
+ userFacingMessage?: string | null;
22563
+ } | null;
22564
+ DISCORD?: {
22565
+ code?: string | null;
22566
+ errorMessage?: string | null;
22567
+ isTransient?: boolean | null;
22568
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22569
+ httpStatus?: number | null;
22570
+ meta?: unknown;
22571
+ userFacingMessage?: string | null;
22572
+ } | null;
22573
+ SLACK?: {
22574
+ code?: string | null;
22575
+ errorMessage?: string | null;
22576
+ isTransient?: boolean | null;
22577
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22578
+ httpStatus?: number | null;
22579
+ meta?: unknown;
22580
+ userFacingMessage?: string | null;
22581
+ } | null;
22582
+ BLUESKY?: {
22583
+ code?: string | null;
22584
+ errorMessage?: string | null;
22585
+ isTransient?: boolean | null;
22586
+ retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
22587
+ httpStatus?: number | null;
22588
+ meta?: unknown;
22589
+ userFacingMessage?: string | null;
22590
+ } | null;
22591
+ } | null;
22592
+ externalData?: {
22593
+ FACEBOOK?: {
22594
+ id?: string | null;
22595
+ permalink?: string | null;
22596
+ } | null;
22597
+ INSTAGRAM?: {
22598
+ id?: string | null;
22599
+ permalink?: string | null;
22600
+ } | null;
22601
+ TIKTOK?: {
22602
+ id?: string | null;
22603
+ permalink?: string | null;
22604
+ } | null;
22605
+ LINKEDIN?: {
22606
+ id?: string | null;
22607
+ commentUrn?: string | null;
22608
+ permalink?: string | null;
22609
+ } | null;
22610
+ REDDIT?: {
22611
+ id?: string | null;
22612
+ permalink?: string | null;
22613
+ } | null;
22614
+ YOUTUBE?: {
22615
+ id?: string | null;
22616
+ permalink?: string | null;
22617
+ } | null;
22618
+ MASTODON?: {
22619
+ id?: string | null;
22620
+ permalink?: string | null;
22621
+ } | null;
22622
+ THREADS?: {
22623
+ id?: string | null;
22624
+ permalink?: string | null;
22625
+ } | null;
22626
+ DISCORD?: {
22627
+ id?: string | null;
22628
+ permalink?: string | null;
22629
+ } | null;
22630
+ SLACK?: {
22631
+ id?: string | null;
22632
+ permalink?: string | null;
22633
+ } | null;
22634
+ BLUESKY?: {
22635
+ id?: string | null;
22636
+ uri?: string | null;
22637
+ /**
22638
+ * Content ID of the created record
22639
+ */
22640
+ cid?: string | null;
22641
+ permalink?: string | null;
22642
+ /**
22643
+ * Author DID (owner of the record)
22644
+ */
22645
+ did?: string | null;
22646
+ } | null;
22647
+ } | null;
22648
+ createdAt: string | null;
22649
+ updatedAt: string | null;
22650
+ deletedAt?: string | null;
22651
+ };
22652
+ /**
22653
+ * 400
22654
+ */
22655
+ 400: {
22656
+ statusCode?: number | null;
22657
+ message: string;
22658
+ issues?: Array<{
22659
+ 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;
22660
+ message: string;
22661
+ path?: Array<(string | number)> | null;
22662
+ }> | null;
22663
+ };
22664
+ /**
22665
+ * 401
22666
+ */
22667
+ 401: {
22668
+ statusCode?: number | null;
22669
+ message: string;
22670
+ };
22671
+ /**
22672
+ * 403
22673
+ */
22674
+ 403: {
22675
+ statusCode?: number | null;
22676
+ message: string;
22677
+ };
22678
+ /**
22679
+ * 404
22680
+ */
22681
+ 404: {
22682
+ statusCode?: number | null;
22683
+ message: string;
22684
+ };
22685
+ /**
22686
+ * 429
22687
+ */
22688
+ 429: {
22689
+ statusCode?: number | null;
22690
+ message: string;
22691
+ };
22692
+ /**
22693
+ * 500
22694
+ */
22695
+ 500: {
22696
+ statusCode?: number | null;
22697
+ message: string;
22698
+ };
22699
+ };
22700
+ };
22701
+ };
22192
22702
  '/api/v1/misc/youtube/thumbnail': {
22193
22703
  post: {
22194
22704
  req: MiscYoutubeSetThumbnailData;
@@ -29290,6 +29800,14 @@ declare class CommentService {
29290
29800
  * @throws ApiError
29291
29801
  */
29292
29802
  commentCreate(data?: CommentCreateData): CancelablePromise<CommentCreateResponse>;
29803
+ /**
29804
+ * Retry comment
29805
+ * @param data The data for the request.
29806
+ * @param data.id
29807
+ * @returns unknown 200
29808
+ * @throws ApiError
29809
+ */
29810
+ commentRetry(data: CommentRetryData): CancelablePromise<CommentRetryResponse>;
29293
29811
  }
29294
29812
  declare class MiscService {
29295
29813
  readonly httpRequest: BaseHttpRequest;
@@ -30234,4 +30752,4 @@ declare class Bundlesocial extends Client {
30234
30752
  constructor(apiKey: string, options?: OpenAPIConfig);
30235
30753
  }
30236
30754
 
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 };
30755
+ 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, CommentRetryData, CommentRetryResponse, 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 };