bundlesocial 2.55.0 → 2.56.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.ts CHANGED
@@ -1868,6 +1868,10 @@ type PostGetByReferenceKeyResponse = {
1868
1868
  * Card description for the external link card
1869
1869
  */
1870
1870
  externalDescription?: string | null;
1871
+ /**
1872
+ * This should be URL to publicly available image uploaded to bundle.social account.
1873
+ */
1874
+ thumbnail?: string | null;
1871
1875
  /**
1872
1876
  * Alt text for the video embed.
1873
1877
  */
@@ -2567,6 +2571,10 @@ type PostGetResponse = {
2567
2571
  * Card description for the external link card
2568
2572
  */
2569
2573
  externalDescription?: string | null;
2574
+ /**
2575
+ * This should be URL to publicly available image uploaded to bundle.social account.
2576
+ */
2577
+ thumbnail?: string | null;
2570
2578
  /**
2571
2579
  * Alt text for the video embed.
2572
2580
  */
@@ -3265,6 +3273,10 @@ type PostUpdateData = {
3265
3273
  * Card description for the external link card
3266
3274
  */
3267
3275
  externalDescription?: string | null;
3276
+ /**
3277
+ * This should be URL to publicly available image uploaded to bundle.social account.
3278
+ */
3279
+ thumbnail?: string | null;
3268
3280
  /**
3269
3281
  * Alt text for the video embed.
3270
3282
  */
@@ -3646,6 +3658,10 @@ type PostUpdateResponse = {
3646
3658
  * Card description for the external link card
3647
3659
  */
3648
3660
  externalDescription?: string | null;
3661
+ /**
3662
+ * This should be URL to publicly available image uploaded to bundle.social account.
3663
+ */
3664
+ thumbnail?: string | null;
3649
3665
  /**
3650
3666
  * Alt text for the video embed.
3651
3667
  */
@@ -4270,6 +4286,10 @@ type PostDeleteResponse = {
4270
4286
  * Card description for the external link card
4271
4287
  */
4272
4288
  externalDescription?: string | null;
4289
+ /**
4290
+ * This should be URL to publicly available image uploaded to bundle.social account.
4291
+ */
4292
+ thumbnail?: string | null;
4273
4293
  /**
4274
4294
  * Alt text for the video embed.
4275
4295
  */
@@ -4904,6 +4924,10 @@ type PostGetListResponse = {
4904
4924
  * Card description for the external link card
4905
4925
  */
4906
4926
  externalDescription?: string | null;
4927
+ /**
4928
+ * This should be URL to publicly available image uploaded to bundle.social account.
4929
+ */
4930
+ thumbnail?: string | null;
4907
4931
  /**
4908
4932
  * Alt text for the video embed.
4909
4933
  */
@@ -5604,6 +5628,10 @@ type PostCreateData = {
5604
5628
  * Card description for the external link card
5605
5629
  */
5606
5630
  externalDescription?: string | null;
5631
+ /**
5632
+ * This should be URL to publicly available image uploaded to bundle.social account.
5633
+ */
5634
+ thumbnail?: string | null;
5607
5635
  /**
5608
5636
  * Alt text for the video embed.
5609
5637
  */
@@ -5985,6 +6013,10 @@ type PostCreateResponse = {
5985
6013
  * Card description for the external link card
5986
6014
  */
5987
6015
  externalDescription?: string | null;
6016
+ /**
6017
+ * This should be URL to publicly available image uploaded to bundle.social account.
6018
+ */
6019
+ thumbnail?: string | null;
5988
6020
  /**
5989
6021
  * Alt text for the video embed.
5990
6022
  */
@@ -6609,6 +6641,10 @@ type PostRetryResponse = {
6609
6641
  * Card description for the external link card
6610
6642
  */
6611
6643
  externalDescription?: string | null;
6644
+ /**
6645
+ * This should be URL to publicly available image uploaded to bundle.social account.
6646
+ */
6647
+ thumbnail?: string | null;
6612
6648
  /**
6613
6649
  * Alt text for the video embed.
6614
6650
  */
@@ -7299,6 +7335,10 @@ type AnalyticsGetPostAnalyticsResponse = {
7299
7335
  * Card description for the external link card
7300
7336
  */
7301
7337
  externalDescription?: string | null;
7338
+ /**
7339
+ * This should be URL to publicly available image uploaded to bundle.social account.
7340
+ */
7341
+ thumbnail?: string | null;
7302
7342
  /**
7303
7343
  * Alt text for the video embed.
7304
7344
  */
@@ -8022,6 +8062,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
8022
8062
  * Card description for the external link card
8023
8063
  */
8024
8064
  externalDescription?: string | null;
8065
+ /**
8066
+ * This should be URL to publicly available image uploaded to bundle.social account.
8067
+ */
8068
+ thumbnail?: string | null;
8025
8069
  /**
8026
8070
  * Alt text for the video embed.
8027
8071
  */
@@ -10617,6 +10661,27 @@ type MiscLinkedinBuildCommentaryData = {
10617
10661
  type MiscLinkedinBuildCommentaryResponse = {
10618
10662
  commentary: string;
10619
10663
  };
10664
+ type MiscLinkedinResharePostData = {
10665
+ /**
10666
+ * Body
10667
+ */
10668
+ requestBody?: {
10669
+ teamId: string;
10670
+ /**
10671
+ * LinkedIn post URN to reshare
10672
+ */
10673
+ parentPostUrn: string;
10674
+ commentary: string;
10675
+ visibility?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
10676
+ disableReshare?: boolean | null;
10677
+ };
10678
+ };
10679
+ type MiscLinkedinResharePostResponse = {
10680
+ success: boolean;
10681
+ id: string;
10682
+ activity?: string | null;
10683
+ permalink?: string | null;
10684
+ };
10620
10685
  type MiscLinkedinEditPostData = {
10621
10686
  /**
10622
10687
  * Body
@@ -15831,6 +15896,10 @@ type $OpenApiTs = {
15831
15896
  * Card description for the external link card
15832
15897
  */
15833
15898
  externalDescription?: string | null;
15899
+ /**
15900
+ * This should be URL to publicly available image uploaded to bundle.social account.
15901
+ */
15902
+ thumbnail?: string | null;
15834
15903
  /**
15835
15904
  * Alt text for the video embed.
15836
15905
  */
@@ -16584,6 +16653,10 @@ type $OpenApiTs = {
16584
16653
  * Card description for the external link card
16585
16654
  */
16586
16655
  externalDescription?: string | null;
16656
+ /**
16657
+ * This should be URL to publicly available image uploaded to bundle.social account.
16658
+ */
16659
+ thumbnail?: string | null;
16587
16660
  /**
16588
16661
  * Alt text for the video embed.
16589
16662
  */
@@ -17335,6 +17408,10 @@ type $OpenApiTs = {
17335
17408
  * Card description for the external link card
17336
17409
  */
17337
17410
  externalDescription?: string | null;
17411
+ /**
17412
+ * This should be URL to publicly available image uploaded to bundle.social account.
17413
+ */
17414
+ thumbnail?: string | null;
17338
17415
  /**
17339
17416
  * Alt text for the video embed.
17340
17417
  */
@@ -18018,6 +18095,10 @@ type $OpenApiTs = {
18018
18095
  * Card description for the external link card
18019
18096
  */
18020
18097
  externalDescription?: string | null;
18098
+ /**
18099
+ * This should be URL to publicly available image uploaded to bundle.social account.
18100
+ */
18101
+ thumbnail?: string | null;
18021
18102
  /**
18022
18103
  * Alt text for the video embed.
18023
18104
  */
@@ -18697,6 +18778,10 @@ type $OpenApiTs = {
18697
18778
  * Card description for the external link card
18698
18779
  */
18699
18780
  externalDescription?: string | null;
18781
+ /**
18782
+ * This should be URL to publicly available image uploaded to bundle.social account.
18783
+ */
18784
+ thumbnail?: string | null;
18700
18785
  /**
18701
18786
  * Alt text for the video embed.
18702
18787
  */
@@ -19450,6 +19535,10 @@ type $OpenApiTs = {
19450
19535
  * Card description for the external link card
19451
19536
  */
19452
19537
  externalDescription?: string | null;
19538
+ /**
19539
+ * This should be URL to publicly available image uploaded to bundle.social account.
19540
+ */
19541
+ thumbnail?: string | null;
19453
19542
  /**
19454
19543
  * Alt text for the video embed.
19455
19544
  */
@@ -20135,6 +20224,10 @@ type $OpenApiTs = {
20135
20224
  * Card description for the external link card
20136
20225
  */
20137
20226
  externalDescription?: string | null;
20227
+ /**
20228
+ * This should be URL to publicly available image uploaded to bundle.social account.
20229
+ */
20230
+ thumbnail?: string | null;
20138
20231
  /**
20139
20232
  * Alt text for the video embed.
20140
20233
  */
@@ -20930,6 +21023,10 @@ type $OpenApiTs = {
20930
21023
  * Card description for the external link card
20931
21024
  */
20932
21025
  externalDescription?: string | null;
21026
+ /**
21027
+ * This should be URL to publicly available image uploaded to bundle.social account.
21028
+ */
21029
+ thumbnail?: string | null;
20933
21030
  /**
20934
21031
  * Alt text for the video embed.
20935
21032
  */
@@ -21758,6 +21855,10 @@ type $OpenApiTs = {
21758
21855
  * Card description for the external link card
21759
21856
  */
21760
21857
  externalDescription?: string | null;
21858
+ /**
21859
+ * This should be URL to publicly available image uploaded to bundle.social account.
21860
+ */
21861
+ thumbnail?: string | null;
21761
21862
  /**
21762
21863
  * Alt text for the video embed.
21763
21864
  */
@@ -25724,6 +25825,76 @@ type $OpenApiTs = {
25724
25825
  };
25725
25826
  };
25726
25827
  };
25828
+ '/api/v1/misc/linkedin/post/reshare': {
25829
+ post: {
25830
+ req: MiscLinkedinResharePostData;
25831
+ res: {
25832
+ /**
25833
+ * 200
25834
+ */
25835
+ 200: {
25836
+ success: boolean;
25837
+ id: string;
25838
+ activity?: string | null;
25839
+ permalink?: string | null;
25840
+ };
25841
+ /**
25842
+ * 400
25843
+ */
25844
+ 400: {
25845
+ statusCode?: number | null;
25846
+ message: string;
25847
+ issues?: Array<{
25848
+ 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;
25849
+ message: string;
25850
+ path?: Array<(string | number)> | null;
25851
+ }> | null;
25852
+ };
25853
+ /**
25854
+ * 401
25855
+ */
25856
+ 401: {
25857
+ statusCode?: number | null;
25858
+ message: string;
25859
+ };
25860
+ /**
25861
+ * 403
25862
+ */
25863
+ 403: {
25864
+ statusCode?: number | null;
25865
+ message: string;
25866
+ };
25867
+ /**
25868
+ * 404
25869
+ */
25870
+ 404: {
25871
+ statusCode?: number | null;
25872
+ message: string;
25873
+ };
25874
+ /**
25875
+ * 422
25876
+ */
25877
+ 422: {
25878
+ statusCode?: number | null;
25879
+ message: string;
25880
+ };
25881
+ /**
25882
+ * 429
25883
+ */
25884
+ 429: {
25885
+ statusCode?: number | null;
25886
+ message: string;
25887
+ };
25888
+ /**
25889
+ * 500
25890
+ */
25891
+ 500: {
25892
+ statusCode?: number | null;
25893
+ message: string;
25894
+ };
25895
+ };
25896
+ };
25897
+ };
25727
25898
  '/api/v1/misc/linkedin/post': {
25728
25899
  patch: {
25729
25900
  req: MiscLinkedinEditPostData;
@@ -31740,6 +31911,15 @@ declare class MiscService {
31740
31911
  * @throws ApiError
31741
31912
  */
31742
31913
  miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
31914
+ /**
31915
+ * Reshare an existing LinkedIn post
31916
+ * Create a LinkedIn reshare as the currently selected LinkedIn channel.
31917
+ * @param data The data for the request.
31918
+ * @param data.requestBody Body
31919
+ * @returns unknown 200
31920
+ * @throws ApiError
31921
+ */
31922
+ miscLinkedinResharePost(data?: MiscLinkedinResharePostData): CancelablePromise<MiscLinkedinResharePostResponse>;
31743
31923
  /**
31744
31924
  * Edit an existing LinkedIn post
31745
31925
  * Update the text content of a published LinkedIn post.
@@ -32537,4 +32717,4 @@ declare class Bundlesocial extends Client {
32537
32717
  constructor(apiKey: string, options?: OpenAPIConfig);
32538
32718
  }
32539
32719
 
32540
- 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, OrganizationGetDailyLimitsUsageData, OrganizationGetDailyLimitsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetByReferenceKeyData, PostGetByReferenceKeyResponse, 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 };
32720
+ 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, MiscLinkedinResharePostData, MiscLinkedinResharePostResponse, 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, OrganizationGetDailyLimitsUsageData, OrganizationGetDailyLimitsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetByReferenceKeyData, PostGetByReferenceKeyResponse, 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 };