@vendasta/social-posts 5.43.2 → 5.44.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.
@@ -5156,6 +5156,49 @@ class GetCommonAiInstructionsResponse {
5156
5156
  return toReturn;
5157
5157
  }
5158
5158
  }
5159
+ class GetMediaMetadataFromURLRequest {
5160
+ static fromProto(proto) {
5161
+ let m = new GetMediaMetadataFromURLRequest();
5162
+ m = Object.assign(m, proto);
5163
+ return m;
5164
+ }
5165
+ constructor(kwargs) {
5166
+ if (!kwargs) {
5167
+ return;
5168
+ }
5169
+ Object.assign(this, kwargs);
5170
+ }
5171
+ toApiJson() {
5172
+ const toReturn = {};
5173
+ if (typeof this.url !== 'undefined') {
5174
+ toReturn['url'] = this.url;
5175
+ }
5176
+ return toReturn;
5177
+ }
5178
+ }
5179
+ class GetMediaMetadataFromURLResponse {
5180
+ static fromProto(proto) {
5181
+ let m = new GetMediaMetadataFromURLResponse();
5182
+ m = Object.assign(m, proto);
5183
+ return m;
5184
+ }
5185
+ constructor(kwargs) {
5186
+ if (!kwargs) {
5187
+ return;
5188
+ }
5189
+ Object.assign(this, kwargs);
5190
+ }
5191
+ toApiJson() {
5192
+ const toReturn = {};
5193
+ if (typeof this.blobType !== 'undefined') {
5194
+ toReturn['blobType'] = this.blobType;
5195
+ }
5196
+ if (typeof this.finalUrl !== 'undefined') {
5197
+ toReturn['finalUrl'] = this.finalUrl;
5198
+ }
5199
+ return toReturn;
5200
+ }
5201
+ }
5159
5202
  class ImageBlob {
5160
5203
  static fromProto(proto) {
5161
5204
  let m = new ImageBlob();
@@ -5393,6 +5436,49 @@ class ListCuratedContentResponse {
5393
5436
  return toReturn;
5394
5437
  }
5395
5438
  }
5439
+ class ListPostableSocialServiceRequest {
5440
+ static fromProto(proto) {
5441
+ let m = new ListPostableSocialServiceRequest();
5442
+ m = Object.assign(m, proto);
5443
+ return m;
5444
+ }
5445
+ constructor(kwargs) {
5446
+ if (!kwargs) {
5447
+ return;
5448
+ }
5449
+ Object.assign(this, kwargs);
5450
+ }
5451
+ toApiJson() {
5452
+ const toReturn = {};
5453
+ if (typeof this.businessId !== 'undefined') {
5454
+ toReturn['businessId'] = this.businessId;
5455
+ }
5456
+ return toReturn;
5457
+ }
5458
+ }
5459
+ class ListPostableSocialServiceResponse {
5460
+ static fromProto(proto) {
5461
+ let m = new ListPostableSocialServiceResponse();
5462
+ m = Object.assign(m, proto);
5463
+ if (proto.postableSocialService) {
5464
+ m.postableSocialService = proto.postableSocialService.map(SocialService.fromProto);
5465
+ }
5466
+ return m;
5467
+ }
5468
+ constructor(kwargs) {
5469
+ if (!kwargs) {
5470
+ return;
5471
+ }
5472
+ Object.assign(this, kwargs);
5473
+ }
5474
+ toApiJson() {
5475
+ const toReturn = {};
5476
+ if (typeof this.postableSocialService !== 'undefined' && this.postableSocialService !== null) {
5477
+ toReturn['postableSocialService'] = 'toApiJson' in this.postableSocialService ? this.postableSocialService.toApiJson() : this.postableSocialService;
5478
+ }
5479
+ return toReturn;
5480
+ }
5481
+ }
5396
5482
  class ListUnsplashImagesRequest {
5397
5483
  static fromProto(proto) {
5398
5484
  let m = new ListUnsplashImagesRequest();
@@ -5550,12 +5636,12 @@ class MultiResponse {
5550
5636
  return toReturn;
5551
5637
  }
5552
5638
  }
5553
- class GeneratePostsResponsePost {
5639
+ class Post {
5554
5640
  static fromProto(proto) {
5555
- let m = new GeneratePostsResponsePost();
5641
+ let m = new Post();
5556
5642
  m = Object.assign(m, proto);
5557
- if (proto.imageResponse) {
5558
- m.imageResponse = GeneratePostsResponseImageResponse.fromProto(proto.imageResponse);
5643
+ if (proto.postContent) {
5644
+ m.postContent = proto.postContent.map(PostContent.fromProto);
5559
5645
  }
5560
5646
  return m;
5561
5647
  }
@@ -5567,21 +5653,21 @@ class GeneratePostsResponsePost {
5567
5653
  }
5568
5654
  toApiJson() {
5569
5655
  const toReturn = {};
5570
- if (typeof this.text !== 'undefined') {
5571
- toReturn['text'] = this.text;
5656
+ if (typeof this.topic !== 'undefined') {
5657
+ toReturn['topic'] = this.topic;
5572
5658
  }
5573
- if (typeof this.imageResponse !== 'undefined' && this.imageResponse !== null) {
5574
- toReturn['imageResponse'] = 'toApiJson' in this.imageResponse ? this.imageResponse.toApiJson() : this.imageResponse;
5659
+ if (typeof this.postContent !== 'undefined' && this.postContent !== null) {
5660
+ toReturn['postContent'] = 'toApiJson' in this.postContent ? this.postContent.toApiJson() : this.postContent;
5575
5661
  }
5576
5662
  return toReturn;
5577
5663
  }
5578
5664
  }
5579
- class Post {
5665
+ class GeneratePostsResponsePost {
5580
5666
  static fromProto(proto) {
5581
- let m = new Post();
5667
+ let m = new GeneratePostsResponsePost();
5582
5668
  m = Object.assign(m, proto);
5583
- if (proto.postContent) {
5584
- m.postContent = proto.postContent.map(PostContent.fromProto);
5669
+ if (proto.imageResponse) {
5670
+ m.imageResponse = GeneratePostsResponseImageResponse.fromProto(proto.imageResponse);
5585
5671
  }
5586
5672
  return m;
5587
5673
  }
@@ -5593,11 +5679,11 @@ class Post {
5593
5679
  }
5594
5680
  toApiJson() {
5595
5681
  const toReturn = {};
5596
- if (typeof this.topic !== 'undefined') {
5597
- toReturn['topic'] = this.topic;
5682
+ if (typeof this.text !== 'undefined') {
5683
+ toReturn['text'] = this.text;
5598
5684
  }
5599
- if (typeof this.postContent !== 'undefined' && this.postContent !== null) {
5600
- toReturn['postContent'] = 'toApiJson' in this.postContent ? this.postContent.toApiJson() : this.postContent;
5685
+ if (typeof this.imageResponse !== 'undefined' && this.imageResponse !== null) {
5686
+ toReturn['imageResponse'] = 'toApiJson' in this.imageResponse ? this.imageResponse.toApiJson() : this.imageResponse;
5601
5687
  }
5602
5688
  return toReturn;
5603
5689
  }
@@ -5799,6 +5885,74 @@ class SocialPostResponse {
5799
5885
  return toReturn;
5800
5886
  }
5801
5887
  }
5888
+ class SocialService {
5889
+ static fromProto(proto) {
5890
+ let m = new SocialService();
5891
+ m = Object.assign(m, proto);
5892
+ return m;
5893
+ }
5894
+ constructor(kwargs) {
5895
+ if (!kwargs) {
5896
+ return;
5897
+ }
5898
+ Object.assign(this, kwargs);
5899
+ }
5900
+ toApiJson() {
5901
+ const toReturn = {};
5902
+ if (typeof this.ssid !== 'undefined') {
5903
+ toReturn['ssid'] = this.ssid;
5904
+ }
5905
+ if (typeof this.spid !== 'undefined') {
5906
+ toReturn['spid'] = this.spid;
5907
+ }
5908
+ if (typeof this.accountGroupId !== 'undefined') {
5909
+ toReturn['accountGroupId'] = this.accountGroupId;
5910
+ }
5911
+ if (typeof this.isAuthenticated !== 'undefined') {
5912
+ toReturn['isAuthenticated'] = this.isAuthenticated;
5913
+ }
5914
+ if (typeof this.profileUrl !== 'undefined') {
5915
+ toReturn['profileUrl'] = this.profileUrl;
5916
+ }
5917
+ if (typeof this.profileImageUrl !== 'undefined') {
5918
+ toReturn['profileImageUrl'] = this.profileImageUrl;
5919
+ }
5920
+ if (typeof this.serviceType !== 'undefined') {
5921
+ toReturn['serviceType'] = this.serviceType;
5922
+ }
5923
+ if (typeof this.socialProfileId !== 'undefined') {
5924
+ toReturn['socialProfileId'] = this.socialProfileId;
5925
+ }
5926
+ if (typeof this.isSyncing !== 'undefined') {
5927
+ toReturn['isSyncing'] = this.isSyncing;
5928
+ }
5929
+ if (typeof this.clientTags !== 'undefined') {
5930
+ toReturn['clientTags'] = this.clientTags;
5931
+ }
5932
+ if (typeof this.serviceId !== 'undefined') {
5933
+ toReturn['serviceId'] = this.serviceId;
5934
+ }
5935
+ if (typeof this.isDisabledFlag !== 'undefined') {
5936
+ toReturn['isDisabledFlag'] = this.isDisabledFlag;
5937
+ }
5938
+ if (typeof this.socialTokenBroken !== 'undefined') {
5939
+ toReturn['socialTokenBroken'] = this.socialTokenBroken;
5940
+ }
5941
+ if (typeof this.name !== 'undefined') {
5942
+ toReturn['name'] = this.name;
5943
+ }
5944
+ if (typeof this.fullName !== 'undefined') {
5945
+ toReturn['fullName'] = this.fullName;
5946
+ }
5947
+ if (typeof this.collectPostsFlag !== 'undefined') {
5948
+ toReturn['collectPostsFlag'] = this.collectPostsFlag;
5949
+ }
5950
+ if (typeof this.collectStatsFlag !== 'undefined') {
5951
+ toReturn['collectStatsFlag'] = this.collectStatsFlag;
5952
+ }
5953
+ return toReturn;
5954
+ }
5955
+ }
5802
5956
  class TitleGeneration {
5803
5957
  static fromProto(proto) {
5804
5958
  let m = new TitleGeneration();
@@ -8284,6 +8438,16 @@ class SocialPostsV2ApiService {
8284
8438
  const request = (r.toApiJson) ? r : new RepostSocialPostRequest(r);
8285
8439
  return this.http.post(this._host + "/socialposts.v2.SocialPostsV2/RepostSocialPost", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
8286
8440
  }
8441
+ listPostableSocialServices(r) {
8442
+ const request = (r.toApiJson) ? r : new ListPostableSocialServiceRequest(r);
8443
+ return this.http.post(this._host + "/socialposts.v2.SocialPostsV2/ListPostableSocialServices", request.toApiJson(), this.apiOptions())
8444
+ .pipe(map(resp => ListPostableSocialServiceResponse.fromProto(resp)));
8445
+ }
8446
+ getMediaMetadataFromUrl(r) {
8447
+ const request = (r.toApiJson) ? r : new GetMediaMetadataFromURLRequest(r);
8448
+ return this.http.post(this._host + "/socialposts.v2.SocialPostsV2/GetMediaMetadataFromURL", request.toApiJson(), this.apiOptions())
8449
+ .pipe(map(resp => GetMediaMetadataFromURLResponse.fromProto(resp)));
8450
+ }
8287
8451
  }
8288
8452
  SocialPostsV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
8289
8453
  SocialPostsV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, providedIn: 'root' });
@@ -8786,6 +8950,14 @@ class SocialPostsV2Service {
8786
8950
  const repostRequest = new RepostSocialPostRequest({ socialPostId: socialPostId, accountGroupId: businessId });
8787
8951
  return this.socialpostV2ApiService.repostSocialPost(repostRequest);
8788
8952
  }
8953
+ listPostableSocialServices(businessId) {
8954
+ const listPostableSocialServiceRequest = new ListPostableSocialServiceRequest({ businessId: businessId });
8955
+ return this.socialpostV2ApiService.listPostableSocialServices(listPostableSocialServiceRequest);
8956
+ }
8957
+ getMediaMetadataFromUrl(url) {
8958
+ const urlRequest = new GetMediaMetadataFromURLRequest({ url: url });
8959
+ return this.socialpostV2ApiService.getMediaMetadataFromUrl(urlRequest);
8960
+ }
8789
8961
  }
8790
8962
  SocialPostsV2Service.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2Service, deps: [{ token: SocialPostsV2ApiService }], target: i0.ɵɵFactoryTarget.Injectable });
8791
8963
  SocialPostsV2Service.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2Service, providedIn: 'root' });
@@ -8979,5 +9151,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8979
9151
  * Generated bundle index. Do not edit.
8980
9152
  */
8981
9153
 
8982
- export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, Author$1 as Author, AuthorsRequest, AuthorsResponse, BlogConnection, BlogConnectionService, BlogImage, BlogPost, BlogPostCampaign, BlogPostCustomization, BlogPostsService, BlogVideo, BulkCreateMultilocationPostRequest, BulkCreateMultilocationPostResponse, BulkPostStatus, BulkUploadMultilocation, CallToAction, CallToActionCallToActionType, Campaign, CampaignService, Category$1 as Category, CategoryRequest, CategoryResponse, ChatBotService, ChatBotV2Service, ChatMessage, Collection, ContentGenerationService, ContentLength, CreateBlogConnectionRequest, CreateBlogConnectionResponse, CreateCampaignRequest, CreateCampaignResponse, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, CuratedContentPost, DateRangeFilter, DeleteBlogConnectionRequest, DeleteBlogPostRequest, DeleteCampaignRequest, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, EndChatRequest, Error, Event, FacebookPostStats, FetchLibraryImagesRequest, FetchLibraryImagesResponse, FieldMask, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GenerateContentMetaDataRequest, GenerateContentMetaDataResponse, GeneratePostCampaignRequest, GeneratePostCampaignResponse, GeneratePostsRequest, GeneratePostsResponse, GeneratePostsResponseImageResponse, GeneratePostsResponsePost, GenerateType, GetBlogConnectionRequest, GetBlogConnectionResponse, GetCampaignRequest, GetCampaignResponse, GetCommonAiInstructionsRequest, GetCommonAiInstructionsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiBlogPostsRequest, GetMultiBlogPostsResponse, GetMultiCampaignsRequest, GetMultiCampaignsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, HashTagsService, Hashtag, Image, ImageBlob, ImageCreated, ImageResponse, ImageUrl, KeywordGeneration, KeywordList, LinkV2, Links, ListBlogConnectionRequest, ListBlogConnectionResponse, ListCuratedContentRequest, ListCuratedContentResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, ListUnsplashImagesRequest, ListUnsplashImagesResponse, Location, MCPOptions, MLPostCategory, MLPostState, Media, MediaEntry, MediaProperty, MediaType, MediaUploadRequest, MediaUploadResponse, MessageLength, MetaData, MetadataV2, MultiResponse, MultilocationPost, MultilocationPostApiService, MultilocationPostError, MultilocationPostsService, MultilocationServices, Network, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PartnerListScheduledSocialPostsRequestFilters, Photo, PixabayImage, PixabayImageService, Post, PostAction, PostActionV2, PostCategory, PostContent, PostContentV2, PostCustomization, PostCustomizationV2, PostData, PostEvent, PostEventV2, PostMediaV2, PostPerformanceApiService, PostPerformanceService, PostStatusV2, PostTemplate, PostTemplatesService, PostType, PostTypeV2, PostingStatus, PostsGeneration, PublishPostRequest, PublishPostResponse, RemoveFromMultilocationPostRequest, RemoveReason, ReplaceHashtagsRequest, RepostBlogPostRequest, RepostSocialPostRequest, Response, Role, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SendMessageRequest, SendMessageResponse, SendMessageV2Request, SendMessageV2Response, Social, SocialCampaign, SocialPost, SocialPostData, SocialPostDeletionStatus, SocialPostOutput, SocialPostRequest, SocialPostResponse, SocialPostService, SocialPostStats, SocialPostV2, SocialPostsService, SocialPostsV2Service, Source, StartChatRequest, StartChatResponse, StatusRequest, StatusResponse, SubAncestry, SuggestMessageRequest, SuggestMessageResponse, Tags, TemplateType, TenorGif, TenorGifMediaMapEntry, TenorGifsService, TenorMediaObject, TikTokCustomization, TikTokCustomizationV2, TitleGeneration, Tone, TwitterPostStats, UnsplashImageService, UpdateBlogConnectionRequest, UpdateBlogPostRequest, UpdateCampaignIdRequest, UpdateCampaignRequest, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, UploadedMedia, Urls, User, UserLink, WordpressPluginService, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
9154
+ export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, Author$1 as Author, AuthorsRequest, AuthorsResponse, BlogConnection, BlogConnectionService, BlogImage, BlogPost, BlogPostCampaign, BlogPostCustomization, BlogPostsService, BlogVideo, BulkCreateMultilocationPostRequest, BulkCreateMultilocationPostResponse, BulkPostStatus, BulkUploadMultilocation, CallToAction, CallToActionCallToActionType, Campaign, CampaignService, Category$1 as Category, CategoryRequest, CategoryResponse, ChatBotService, ChatBotV2Service, ChatMessage, Collection, ContentGenerationService, ContentLength, CreateBlogConnectionRequest, CreateBlogConnectionResponse, CreateCampaignRequest, CreateCampaignResponse, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, CuratedContentPost, DateRangeFilter, DeleteBlogConnectionRequest, DeleteBlogPostRequest, DeleteCampaignRequest, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, EndChatRequest, Error, Event, FacebookPostStats, FetchLibraryImagesRequest, FetchLibraryImagesResponse, FieldMask, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GenerateContentMetaDataRequest, GenerateContentMetaDataResponse, GeneratePostCampaignRequest, GeneratePostCampaignResponse, GeneratePostsRequest, GeneratePostsResponse, GeneratePostsResponseImageResponse, GeneratePostsResponsePost, GenerateType, GetBlogConnectionRequest, GetBlogConnectionResponse, GetCampaignRequest, GetCampaignResponse, GetCommonAiInstructionsRequest, GetCommonAiInstructionsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMediaMetadataFromURLRequest, GetMediaMetadataFromURLResponse, GetMultiBlogPostsRequest, GetMultiBlogPostsResponse, GetMultiCampaignsRequest, GetMultiCampaignsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, HashTagsService, Hashtag, Image, ImageBlob, ImageCreated, ImageResponse, ImageUrl, KeywordGeneration, KeywordList, LinkV2, Links, ListBlogConnectionRequest, ListBlogConnectionResponse, ListCuratedContentRequest, ListCuratedContentResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListPostableSocialServiceRequest, ListPostableSocialServiceResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, ListUnsplashImagesRequest, ListUnsplashImagesResponse, Location, MCPOptions, MLPostCategory, MLPostState, Media, MediaEntry, MediaProperty, MediaType, MediaUploadRequest, MediaUploadResponse, MessageLength, MetaData, MetadataV2, MultiResponse, MultilocationPost, MultilocationPostApiService, MultilocationPostError, MultilocationPostsService, MultilocationServices, Network, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PartnerListScheduledSocialPostsRequestFilters, Photo, PixabayImage, PixabayImageService, Post, PostAction, PostActionV2, PostCategory, PostContent, PostContentV2, PostCustomization, PostCustomizationV2, PostData, PostEvent, PostEventV2, PostMediaV2, PostPerformanceApiService, PostPerformanceService, PostStatusV2, PostTemplate, PostTemplatesService, PostType, PostTypeV2, PostingStatus, PostsGeneration, PublishPostRequest, PublishPostResponse, RemoveFromMultilocationPostRequest, RemoveReason, ReplaceHashtagsRequest, RepostBlogPostRequest, RepostSocialPostRequest, Response, Role, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SendMessageRequest, SendMessageResponse, SendMessageV2Request, SendMessageV2Response, Social, SocialCampaign, SocialPost, SocialPostData, SocialPostDeletionStatus, SocialPostOutput, SocialPostRequest, SocialPostResponse, SocialPostService, SocialPostStats, SocialPostV2, SocialPostsService, SocialPostsV2Service, SocialService, Source, StartChatRequest, StartChatResponse, StatusRequest, StatusResponse, SubAncestry, SuggestMessageRequest, SuggestMessageResponse, Tags, TemplateType, TenorGif, TenorGifMediaMapEntry, TenorGifsService, TenorMediaObject, TikTokCustomization, TikTokCustomizationV2, TitleGeneration, Tone, TwitterPostStats, UnsplashImageService, UpdateBlogConnectionRequest, UpdateBlogPostRequest, UpdateCampaignIdRequest, UpdateCampaignRequest, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, UploadedMedia, Urls, User, UserLink, WordpressPluginService, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
8983
9155
  //# sourceMappingURL=vendasta-social-posts.mjs.map