bundlesocial 2.48.0 → 2.49.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
@@ -723,6 +723,9 @@ type SocialAccountConnectData = {
723
723
  requestBody?: {
724
724
  type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
725
725
  teamId: string;
726
+ /**
727
+ * 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.
728
+ */
726
729
  redirectUrl: string;
727
730
  /**
728
731
  * Mastodon or Bluesky only
@@ -1402,7 +1405,7 @@ type UploadInitLargeUploadData = {
1402
1405
  requestBody?: {
1403
1406
  teamId?: string | null;
1404
1407
  fileName: string;
1405
- mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'image/gif' | 'video/mp4' | 'application/pdf';
1408
+ mimeType: 'image/jpg' | 'image/jpeg' | 'image/png' | 'image/gif' | 'video/mp4' | 'video/quicktime' | 'application/pdf';
1406
1409
  };
1407
1410
  };
1408
1411
  type UploadInitLargeUploadResponse = {
@@ -7458,6 +7461,29 @@ type CommentImportGetFetchedCommentsResponse = {
7458
7461
  text?: string | null;
7459
7462
  likesCount: number;
7460
7463
  repliesCount: number;
7464
+ platformData?: {
7465
+ canDelete?: boolean | null;
7466
+ canHide?: boolean | null;
7467
+ canLike?: boolean | null;
7468
+ canModerate?: boolean | null;
7469
+ hidden?: boolean | null;
7470
+ likedByMe?: boolean | null;
7471
+ reactionsCount?: number | null;
7472
+ reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
7473
+ owner?: boolean | null;
7474
+ hideStatus?: string | null;
7475
+ moderationStatus?: string | null;
7476
+ approvalStatus?: string | null;
7477
+ status?: string | null;
7478
+ attachmentType?: string | null;
7479
+ attachmentUrl?: string | null;
7480
+ cid?: string | null;
7481
+ origin?: 'platform' | 'bundle' | null;
7482
+ bundleCommentId?: string | null;
7483
+ displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
7484
+ disabledReason?: string | null;
7485
+ [key: string]: (unknown | boolean | number | string | null) | undefined;
7486
+ };
7461
7487
  publishedAt?: string | null;
7462
7488
  createdAt: string | null;
7463
7489
  updatedAt: string | null;
@@ -7465,6 +7491,67 @@ type CommentImportGetFetchedCommentsResponse = {
7465
7491
  }>;
7466
7492
  total: number;
7467
7493
  };
7494
+ type CommentImportActionFetchedCommentData = {
7495
+ commentId: string;
7496
+ /**
7497
+ * Body
7498
+ */
7499
+ requestBody?: {
7500
+ teamId: string;
7501
+ action: 'DELETE' | 'HIDE' | 'UNHIDE' | 'LIKE' | 'UNLIKE' | 'APPROVE' | 'REJECT';
7502
+ reason?: string;
7503
+ banAuthor?: boolean;
7504
+ };
7505
+ };
7506
+ type CommentImportActionFetchedCommentResponse = {
7507
+ success: boolean;
7508
+ item: {
7509
+ id: string;
7510
+ teamId: string;
7511
+ organizationId?: string | null;
7512
+ postId: string;
7513
+ socialAccountId: string;
7514
+ importId: string;
7515
+ platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
7516
+ externalId: string;
7517
+ externalParentId?: string | null;
7518
+ externalPostId?: string | null;
7519
+ authorName?: string | null;
7520
+ authorExternalId?: string | null;
7521
+ authorProfileUrl?: string | null;
7522
+ authorAvatarUrl?: string | null;
7523
+ text?: string | null;
7524
+ likesCount: number;
7525
+ repliesCount: number;
7526
+ platformData?: {
7527
+ canDelete?: boolean | null;
7528
+ canHide?: boolean | null;
7529
+ canLike?: boolean | null;
7530
+ canModerate?: boolean | null;
7531
+ hidden?: boolean | null;
7532
+ likedByMe?: boolean | null;
7533
+ reactionsCount?: number | null;
7534
+ reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
7535
+ owner?: boolean | null;
7536
+ hideStatus?: string | null;
7537
+ moderationStatus?: string | null;
7538
+ approvalStatus?: string | null;
7539
+ status?: string | null;
7540
+ attachmentType?: string | null;
7541
+ attachmentUrl?: string | null;
7542
+ cid?: string | null;
7543
+ origin?: 'platform' | 'bundle' | null;
7544
+ bundleCommentId?: string | null;
7545
+ displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
7546
+ disabledReason?: string | null;
7547
+ [key: string]: (unknown | boolean | number | string | null) | undefined;
7548
+ };
7549
+ publishedAt?: string | null;
7550
+ createdAt: string | null;
7551
+ updatedAt: string | null;
7552
+ deletedAt?: string | null;
7553
+ };
7554
+ };
7468
7555
  type CommentImportGetByIdData = {
7469
7556
  importId: string;
7470
7557
  };
@@ -10157,6 +10244,26 @@ type MiscInstagramDeleteCommentData = {
10157
10244
  type MiscInstagramDeleteCommentResponse = {
10158
10245
  success: boolean;
10159
10246
  };
10247
+ type MiscFacebookGetTokenDebugData = {
10248
+ teamId: string;
10249
+ };
10250
+ type MiscFacebookGetTokenDebugResponse = {
10251
+ type?: 'USER' | 'PAGE';
10252
+ application?: string;
10253
+ data_access_expires_at?: number;
10254
+ is_valid: boolean;
10255
+ issued_at?: number;
10256
+ scopes: Array<(string)>;
10257
+ granular_scopes: Array<{
10258
+ scope: string;
10259
+ target_ids?: Array<(string)>;
10260
+ }>;
10261
+ error?: {
10262
+ code: number;
10263
+ message: string;
10264
+ subcode?: number;
10265
+ };
10266
+ };
10160
10267
  type MiscFacebookImportRecommendationsData = {
10161
10268
  /**
10162
10269
  * Body
@@ -19919,6 +20026,29 @@ type $OpenApiTs = {
19919
20026
  text?: string | null;
19920
20027
  likesCount: number;
19921
20028
  repliesCount: number;
20029
+ platformData?: {
20030
+ canDelete?: boolean | null;
20031
+ canHide?: boolean | null;
20032
+ canLike?: boolean | null;
20033
+ canModerate?: boolean | null;
20034
+ hidden?: boolean | null;
20035
+ likedByMe?: boolean | null;
20036
+ reactionsCount?: number | null;
20037
+ reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
20038
+ owner?: boolean | null;
20039
+ hideStatus?: string | null;
20040
+ moderationStatus?: string | null;
20041
+ approvalStatus?: string | null;
20042
+ status?: string | null;
20043
+ attachmentType?: string | null;
20044
+ attachmentUrl?: string | null;
20045
+ cid?: string | null;
20046
+ origin?: 'platform' | 'bundle' | null;
20047
+ bundleCommentId?: string | null;
20048
+ displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
20049
+ disabledReason?: string | null;
20050
+ [key: string]: (unknown | boolean | number | string | null) | undefined;
20051
+ };
19922
20052
  publishedAt?: string | null;
19923
20053
  createdAt: string | null;
19924
20054
  updatedAt: string | null;
@@ -19976,6 +20106,112 @@ type $OpenApiTs = {
19976
20106
  };
19977
20107
  };
19978
20108
  };
20109
+ '/api/v1/comment/import/comments/{commentId}/action': {
20110
+ post: {
20111
+ req: CommentImportActionFetchedCommentData;
20112
+ res: {
20113
+ /**
20114
+ * 200
20115
+ */
20116
+ 200: {
20117
+ success: boolean;
20118
+ item: {
20119
+ id: string;
20120
+ teamId: string;
20121
+ organizationId?: string | null;
20122
+ postId: string;
20123
+ socialAccountId: string;
20124
+ importId: string;
20125
+ platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
20126
+ externalId: string;
20127
+ externalParentId?: string | null;
20128
+ externalPostId?: string | null;
20129
+ authorName?: string | null;
20130
+ authorExternalId?: string | null;
20131
+ authorProfileUrl?: string | null;
20132
+ authorAvatarUrl?: string | null;
20133
+ text?: string | null;
20134
+ likesCount: number;
20135
+ repliesCount: number;
20136
+ platformData?: {
20137
+ canDelete?: boolean | null;
20138
+ canHide?: boolean | null;
20139
+ canLike?: boolean | null;
20140
+ canModerate?: boolean | null;
20141
+ hidden?: boolean | null;
20142
+ likedByMe?: boolean | null;
20143
+ reactionsCount?: number | null;
20144
+ reactionType?: 'LIKE' | 'LOVE' | 'WOW' | 'HAHA' | 'SAD' | 'ANGRY' | null;
20145
+ owner?: boolean | null;
20146
+ hideStatus?: string | null;
20147
+ moderationStatus?: string | null;
20148
+ approvalStatus?: string | null;
20149
+ status?: string | null;
20150
+ attachmentType?: string | null;
20151
+ attachmentUrl?: string | null;
20152
+ cid?: string | null;
20153
+ origin?: 'platform' | 'bundle' | null;
20154
+ bundleCommentId?: string | null;
20155
+ displayState?: 'active' | 'thread_deleted' | 'platform_missing' | null;
20156
+ disabledReason?: string | null;
20157
+ [key: string]: (unknown | boolean | number | string | null) | undefined;
20158
+ };
20159
+ publishedAt?: string | null;
20160
+ createdAt: string | null;
20161
+ updatedAt: string | null;
20162
+ deletedAt?: string | null;
20163
+ };
20164
+ };
20165
+ /**
20166
+ * 400
20167
+ */
20168
+ 400: {
20169
+ statusCode?: number | null;
20170
+ message: string;
20171
+ issues?: Array<{
20172
+ 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;
20173
+ message: string;
20174
+ path?: Array<(string | number)> | null;
20175
+ }> | null;
20176
+ };
20177
+ /**
20178
+ * 401
20179
+ */
20180
+ 401: {
20181
+ statusCode?: number | null;
20182
+ message: string;
20183
+ };
20184
+ /**
20185
+ * 403
20186
+ */
20187
+ 403: {
20188
+ statusCode?: number | null;
20189
+ message: string;
20190
+ };
20191
+ /**
20192
+ * 404
20193
+ */
20194
+ 404: {
20195
+ statusCode?: number | null;
20196
+ message: string;
20197
+ };
20198
+ /**
20199
+ * 429
20200
+ */
20201
+ 429: {
20202
+ statusCode?: number | null;
20203
+ message: string;
20204
+ };
20205
+ /**
20206
+ * 500
20207
+ */
20208
+ 500: {
20209
+ statusCode?: number | null;
20210
+ message: string;
20211
+ };
20212
+ };
20213
+ };
20214
+ };
19979
20215
  '/api/v1/comment/import/{importId}': {
19980
20216
  get: {
19981
20217
  req: CommentImportGetByIdData;
@@ -25281,6 +25517,80 @@ type $OpenApiTs = {
25281
25517
  };
25282
25518
  };
25283
25519
  };
25520
+ '/api/v1/misc/facebook/token-debug': {
25521
+ get: {
25522
+ req: MiscFacebookGetTokenDebugData;
25523
+ res: {
25524
+ /**
25525
+ * 200
25526
+ */
25527
+ 200: {
25528
+ type?: 'USER' | 'PAGE';
25529
+ application?: string;
25530
+ data_access_expires_at?: number;
25531
+ is_valid: boolean;
25532
+ issued_at?: number;
25533
+ scopes: Array<(string)>;
25534
+ granular_scopes: Array<{
25535
+ scope: string;
25536
+ target_ids?: Array<(string)>;
25537
+ }>;
25538
+ error?: {
25539
+ code: number;
25540
+ message: string;
25541
+ subcode?: number;
25542
+ };
25543
+ };
25544
+ /**
25545
+ * 400
25546
+ */
25547
+ 400: {
25548
+ statusCode?: number | null;
25549
+ message: string;
25550
+ issues?: Array<{
25551
+ 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;
25552
+ message: string;
25553
+ path?: Array<(string | number)> | null;
25554
+ }> | null;
25555
+ };
25556
+ /**
25557
+ * 401
25558
+ */
25559
+ 401: {
25560
+ statusCode?: number | null;
25561
+ message: string;
25562
+ };
25563
+ /**
25564
+ * 403
25565
+ */
25566
+ 403: {
25567
+ statusCode?: number | null;
25568
+ message: string;
25569
+ };
25570
+ /**
25571
+ * 404
25572
+ */
25573
+ 404: {
25574
+ statusCode?: number | null;
25575
+ message: string;
25576
+ };
25577
+ /**
25578
+ * 429
25579
+ */
25580
+ 429: {
25581
+ statusCode?: number | null;
25582
+ message: string;
25583
+ };
25584
+ /**
25585
+ * 500
25586
+ */
25587
+ 500: {
25588
+ statusCode?: number | null;
25589
+ message: string;
25590
+ };
25591
+ };
25592
+ };
25593
+ };
25284
25594
  '/api/v1/misc/facebook/recommendations/import': {
25285
25595
  post: {
25286
25596
  req: MiscFacebookImportRecommendationsData;
@@ -28307,6 +28617,15 @@ declare class CommentService {
28307
28617
  * @throws ApiError
28308
28618
  */
28309
28619
  commentImportGetFetchedComments(data: CommentImportGetFetchedCommentsData): CancelablePromise<CommentImportGetFetchedCommentsResponse>;
28620
+ /**
28621
+ * Run an action on a fetched comment
28622
+ * @param data The data for the request.
28623
+ * @param data.commentId
28624
+ * @param data.requestBody Body
28625
+ * @returns unknown 200
28626
+ * @throws ApiError
28627
+ */
28628
+ commentImportActionFetchedComment(data: CommentImportActionFetchedCommentData): CancelablePromise<CommentImportActionFetchedCommentResponse>;
28310
28629
  /**
28311
28630
  * Get comment import by ID
28312
28631
  * @param data The data for the request.
@@ -28869,6 +29188,14 @@ declare class MiscService {
28869
29188
  * @throws ApiError
28870
29189
  */
28871
29190
  miscInstagramDeleteComment(data?: MiscInstagramDeleteCommentData): CancelablePromise<MiscInstagramDeleteCommentResponse>;
29191
+ /**
29192
+ * Get Facebook token debug details
29193
+ * @param data The data for the request.
29194
+ * @param data.teamId
29195
+ * @returns unknown 200
29196
+ * @throws ApiError
29197
+ */
29198
+ miscFacebookGetTokenDebug(data: MiscFacebookGetTokenDebugData): CancelablePromise<MiscFacebookGetTokenDebugResponse>;
28872
29199
  /**
28873
29200
  * Start a new Facebook recommendations import
28874
29201
  * @param data The data for the request.
@@ -29289,4 +29616,4 @@ declare class Bundlesocial extends Client {
29289
29616
  constructor(apiKey: string, options?: OpenAPIConfig);
29290
29617
  }
29291
29618
 
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 };
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 };