@vendasta/social-posts 5.38.0 → 5.39.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.
Files changed (27) hide show
  1. package/esm2020/lib/_internal/campaign.api.service.mjs +11 -2
  2. package/esm2020/lib/_internal/enums/api-v2.enum.mjs +29 -26
  3. package/esm2020/lib/_internal/enums/index.mjs +2 -2
  4. package/esm2020/lib/_internal/interfaces/api-v2.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/campaign.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/social-post-v2.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/objects/api-v2.mjs +8 -2
  9. package/esm2020/lib/_internal/objects/campaign.mjs +80 -1
  10. package/esm2020/lib/_internal/objects/index.mjs +2 -2
  11. package/esm2020/lib/_internal/objects/social-post-v2.mjs +4 -1
  12. package/fesm2015/vendasta-social-posts.mjs +135 -36
  13. package/fesm2015/vendasta-social-posts.mjs.map +1 -1
  14. package/fesm2020/vendasta-social-posts.mjs +135 -36
  15. package/fesm2020/vendasta-social-posts.mjs.map +1 -1
  16. package/lib/_internal/campaign.api.service.d.ts +4 -2
  17. package/lib/_internal/enums/api-v2.enum.d.ts +26 -23
  18. package/lib/_internal/enums/index.d.ts +1 -1
  19. package/lib/_internal/interfaces/api-v2.interface.d.ts +3 -1
  20. package/lib/_internal/interfaces/campaign.interface.d.ts +14 -0
  21. package/lib/_internal/interfaces/index.d.ts +1 -1
  22. package/lib/_internal/interfaces/social-post-v2.interface.d.ts +1 -0
  23. package/lib/_internal/objects/api-v2.d.ts +3 -1
  24. package/lib/_internal/objects/campaign.d.ts +23 -0
  25. package/lib/_internal/objects/index.d.ts +1 -1
  26. package/lib/_internal/objects/social-post-v2.d.ts +1 -0
  27. package/package.json +1 -1
@@ -97,7 +97,7 @@ var MessageLength;
97
97
  MessageLength[MessageLength["SHORT_FORM"] = 0] = "SHORT_FORM";
98
98
  MessageLength[MessageLength["LONG_FORM"] = 1] = "LONG_FORM";
99
99
  })(MessageLength || (MessageLength = {}));
100
- var PostType$1;
100
+ var PostType;
101
101
  (function (PostType) {
102
102
  PostType[PostType["POST_TYPE_INVALID"] = 0] = "POST_TYPE_INVALID";
103
103
  PostType[PostType["POST_TYPE_IMAGE"] = 1] = "POST_TYPE_IMAGE";
@@ -107,7 +107,7 @@ var PostType$1;
107
107
  PostType[PostType["POST_TYPE_CAROUSEL"] = 5] = "POST_TYPE_CAROUSEL";
108
108
  PostType[PostType["POST_TYPE_STORIES"] = 6] = "POST_TYPE_STORIES";
109
109
  PostType[PostType["POST_TYPE_TEXT"] = 7] = "POST_TYPE_TEXT";
110
- })(PostType$1 || (PostType$1 = {}));
110
+ })(PostType || (PostType = {}));
111
111
  var PostingStatus;
112
112
  (function (PostingStatus) {
113
113
  PostingStatus[PostingStatus["POSTING_IN_PROGRESS"] = 0] = "POSTING_IN_PROGRESS";
@@ -220,34 +220,37 @@ var GenerateType;
220
220
  })(GenerateType || (GenerateType = {}));
221
221
  var Network;
222
222
  (function (Network) {
223
- Network[Network["FACEBOOK"] = 0] = "FACEBOOK";
224
- Network[Network["INSTAGRAM"] = 1] = "INSTAGRAM";
225
- Network[Network["LINKEDIN"] = 2] = "LINKEDIN";
226
- Network[Network["TWITTER"] = 3] = "TWITTER";
227
- Network[Network["GMB"] = 4] = "GMB";
228
- Network[Network["TIKOTOK"] = 5] = "TIKOTOK";
229
- Network[Network["YOUTUBE"] = 6] = "YOUTUBE";
230
- Network[Network["CUSTOM_FEED"] = 7] = "CUSTOM_FEED";
231
- Network[Network["WORDPRESS"] = 8] = "WORDPRESS";
223
+ Network[Network["INVALID_NETWORK"] = 0] = "INVALID_NETWORK";
224
+ Network[Network["FACEBOOK"] = 1] = "FACEBOOK";
225
+ Network[Network["INSTAGRAM"] = 2] = "INSTAGRAM";
226
+ Network[Network["LINKEDIN"] = 3] = "LINKEDIN";
227
+ Network[Network["TWITTER"] = 4] = "TWITTER";
228
+ Network[Network["GMB"] = 5] = "GMB";
229
+ Network[Network["TIKTOK"] = 6] = "TIKTOK";
230
+ Network[Network["YOUTUBE"] = 7] = "YOUTUBE";
231
+ Network[Network["CUSTOM_FEED"] = 8] = "CUSTOM_FEED";
232
+ Network[Network["WORDPRESS"] = 9] = "WORDPRESS";
232
233
  })(Network || (Network = {}));
233
- var PostType;
234
- (function (PostType) {
235
- PostType[PostType["DRAFT"] = 0] = "DRAFT";
236
- PostType[PostType["SCHEDULED"] = 1] = "SCHEDULED";
237
- PostType[PostType["PUBLISHED"] = 2] = "PUBLISHED";
238
- })(PostType || (PostType = {}));
234
+ var PostCategory;
235
+ (function (PostCategory) {
236
+ PostCategory[PostCategory["INVALID_CATEGORY"] = 0] = "INVALID_CATEGORY";
237
+ PostCategory[PostCategory["DRAFT"] = 1] = "DRAFT";
238
+ PostCategory[PostCategory["SCHEDULED"] = 2] = "SCHEDULED";
239
+ PostCategory[PostCategory["PUBLISHED"] = 3] = "PUBLISHED";
240
+ })(PostCategory || (PostCategory = {}));
239
241
  var Tone;
240
242
  (function (Tone) {
241
- Tone[Tone["DEFAULT"] = 0] = "DEFAULT";
242
- Tone[Tone["FRIENDLY"] = 1] = "FRIENDLY";
243
- Tone[Tone["LUXURIOUS"] = 2] = "LUXURIOUS";
244
- Tone[Tone["PROFESSIONAL"] = 3] = "PROFESSIONAL";
245
- Tone[Tone["RELAXED"] = 4] = "RELAXED";
246
- Tone[Tone["BOLD"] = 5] = "BOLD";
247
- Tone[Tone["ADVENTUROUS"] = 6] = "ADVENTUROUS";
248
- Tone[Tone["WITTY"] = 7] = "WITTY";
249
- Tone[Tone["PERSUASIVE"] = 8] = "PERSUASIVE";
250
- Tone[Tone["EMPATHETIC"] = 9] = "EMPATHETIC";
243
+ Tone[Tone["INVALID_TONE"] = 0] = "INVALID_TONE";
244
+ Tone[Tone["DEFAULT"] = 1] = "DEFAULT";
245
+ Tone[Tone["FRIENDLY"] = 2] = "FRIENDLY";
246
+ Tone[Tone["LUXURIOUS"] = 3] = "LUXURIOUS";
247
+ Tone[Tone["PROFESSIONAL"] = 4] = "PROFESSIONAL";
248
+ Tone[Tone["RELAXED"] = 5] = "RELAXED";
249
+ Tone[Tone["BOLD"] = 6] = "BOLD";
250
+ Tone[Tone["ADVENTUROUS"] = 7] = "ADVENTUROUS";
251
+ Tone[Tone["WITTY"] = 8] = "WITTY";
252
+ Tone[Tone["PERSUASIVE"] = 9] = "PERSUASIVE";
253
+ Tone[Tone["EMPATHETIC"] = 10] = "EMPATHETIC";
251
254
  })(Tone || (Tone = {}));
252
255
 
253
256
  // *********************************
@@ -537,7 +540,7 @@ class PostTemplate {
537
540
  m.metaData = proto.metaData.map(MetaData.fromProto);
538
541
  }
539
542
  if (proto.postType) {
540
- m.postType = enumStringToValue$f(PostType$1, proto.postType);
543
+ m.postType = enumStringToValue$f(PostType, proto.postType);
541
544
  }
542
545
  if (proto.youtubeCustomization) {
543
546
  m.youtubeCustomization = YoutubeCustomization.fromProto(proto.youtubeCustomization);
@@ -620,7 +623,7 @@ class SSIDPostType {
620
623
  let m = new SSIDPostType();
621
624
  m = Object.assign(m, proto);
622
625
  if (proto.postType) {
623
- m.postType = enumStringToValue$f(PostType$1, proto.postType);
626
+ m.postType = enumStringToValue$f(PostType, proto.postType);
624
627
  }
625
628
  return m;
626
629
  }
@@ -705,7 +708,7 @@ class SocialPost {
705
708
  m.error = Error.fromProto(proto.error);
706
709
  }
707
710
  if (proto.postType) {
708
- m.postType = enumStringToValue$f(PostType$1, proto.postType);
711
+ m.postType = enumStringToValue$f(PostType, proto.postType);
709
712
  }
710
713
  if (proto.mediaEntries) {
711
714
  m.mediaEntries = proto.mediaEntries.map(MediaEntry.fromProto);
@@ -1642,7 +1645,7 @@ class CreatePostTemplateRequest {
1642
1645
  m.metaData = proto.metaData.map(MetaData.fromProto);
1643
1646
  }
1644
1647
  if (proto.postType) {
1645
- m.postType = enumStringToValue$a(PostType$1, proto.postType);
1648
+ m.postType = enumStringToValue$a(PostType, proto.postType);
1646
1649
  }
1647
1650
  if (proto.youtubeCustomization) {
1648
1651
  m.youtubeCustomization = YoutubeCustomization.fromProto(proto.youtubeCustomization);
@@ -3168,7 +3171,7 @@ class UpdatePostTemplateRequest {
3168
3171
  m.metaData = proto.metaData.map(MetaData.fromProto);
3169
3172
  }
3170
3173
  if (proto.postType) {
3171
- m.postType = enumStringToValue$a(PostType$1, proto.postType);
3174
+ m.postType = enumStringToValue$a(PostType, proto.postType);
3172
3175
  }
3173
3176
  if (proto.youtubeCustomization) {
3174
3177
  m.youtubeCustomization = YoutubeCustomization.fromProto(proto.youtubeCustomization);
@@ -3566,6 +3569,9 @@ class SocialPostV2 {
3566
3569
  if (typeof this.tiktokCustomization !== 'undefined' && this.tiktokCustomization !== null) {
3567
3570
  toReturn['tiktokCustomization'] = 'toApiJson' in this.tiktokCustomization ? this.tiktokCustomization.toApiJson() : this.tiktokCustomization;
3568
3571
  }
3572
+ if (typeof this.campaignId !== 'undefined') {
3573
+ toReturn['campaignId'] = this.campaignId;
3574
+ }
3569
3575
  return toReturn;
3570
3576
  }
3571
3577
  }
@@ -4236,7 +4242,7 @@ class BlogPostCampaign {
4236
4242
  let m = new BlogPostCampaign();
4237
4243
  m = Object.assign(m, proto);
4238
4244
  if (proto.blogPostType) {
4239
- m.blogPostType = enumStringToValue$5(PostType$1, proto.blogPostType);
4245
+ m.blogPostType = enumStringToValue$5(PostCategory, proto.blogPostType);
4240
4246
  }
4241
4247
  return m;
4242
4248
  }
@@ -4554,6 +4560,9 @@ class GenerateBlogPostCampaignRequest {
4554
4560
  if (typeof this.blogCampaign !== 'undefined' && this.blogCampaign !== null) {
4555
4561
  toReturn['blogCampaign'] = 'toApiJson' in this.blogCampaign ? this.blogCampaign.toApiJson() : this.blogCampaign;
4556
4562
  }
4563
+ if (typeof this.partnerId !== 'undefined') {
4564
+ toReturn['partnerId'] = this.partnerId;
4565
+ }
4557
4566
  return toReturn;
4558
4567
  }
4559
4568
  }
@@ -4667,6 +4676,9 @@ class GeneratePostCampaignRequest {
4667
4676
  if (typeof this.postGeneration !== 'undefined' && this.postGeneration !== null) {
4668
4677
  toReturn['postGeneration'] = 'toApiJson' in this.postGeneration ? this.postGeneration.toApiJson() : this.postGeneration;
4669
4678
  }
4679
+ if (typeof this.partnerId !== 'undefined') {
4680
+ toReturn['partnerId'] = this.partnerId;
4681
+ }
4670
4682
  return toReturn;
4671
4683
  }
4672
4684
  }
@@ -6960,6 +6972,84 @@ class GetCampaignResponse {
6960
6972
  return toReturn;
6961
6973
  }
6962
6974
  }
6975
+ class GetMultiCampaignsRequest {
6976
+ static fromProto(proto) {
6977
+ let m = new GetMultiCampaignsRequest();
6978
+ m = Object.assign(m, proto);
6979
+ return m;
6980
+ }
6981
+ constructor(kwargs) {
6982
+ if (!kwargs) {
6983
+ return;
6984
+ }
6985
+ Object.assign(this, kwargs);
6986
+ }
6987
+ toApiJson() {
6988
+ const toReturn = {};
6989
+ if (typeof this.businessId !== 'undefined') {
6990
+ toReturn['businessId'] = this.businessId;
6991
+ }
6992
+ if (typeof this.campaignId !== 'undefined') {
6993
+ toReturn['campaignId'] = this.campaignId;
6994
+ }
6995
+ return toReturn;
6996
+ }
6997
+ }
6998
+ class GetMultiCampaignsResponse {
6999
+ static fromProto(proto) {
7000
+ let m = new GetMultiCampaignsResponse();
7001
+ m = Object.assign(m, proto);
7002
+ if (proto.campaigns) {
7003
+ m.campaigns = proto.campaigns.map(Campaign.fromProto);
7004
+ }
7005
+ return m;
7006
+ }
7007
+ constructor(kwargs) {
7008
+ if (!kwargs) {
7009
+ return;
7010
+ }
7011
+ Object.assign(this, kwargs);
7012
+ }
7013
+ toApiJson() {
7014
+ const toReturn = {};
7015
+ if (typeof this.campaigns !== 'undefined' && this.campaigns !== null) {
7016
+ toReturn['campaigns'] = 'toApiJson' in this.campaigns ? this.campaigns.toApiJson() : this.campaigns;
7017
+ }
7018
+ return toReturn;
7019
+ }
7020
+ }
7021
+ class UpdateCampaignIdRequest {
7022
+ static fromProto(proto) {
7023
+ let m = new UpdateCampaignIdRequest();
7024
+ m = Object.assign(m, proto);
7025
+ if (proto.type) {
7026
+ m.type = enumStringToValue(PostCategory, proto.type);
7027
+ }
7028
+ return m;
7029
+ }
7030
+ constructor(kwargs) {
7031
+ if (!kwargs) {
7032
+ return;
7033
+ }
7034
+ Object.assign(this, kwargs);
7035
+ }
7036
+ toApiJson() {
7037
+ const toReturn = {};
7038
+ if (typeof this.campaignId !== 'undefined') {
7039
+ toReturn['campaignId'] = this.campaignId;
7040
+ }
7041
+ if (typeof this.businessId !== 'undefined') {
7042
+ toReturn['businessId'] = this.businessId;
7043
+ }
7044
+ if (typeof this.blogPostId !== 'undefined') {
7045
+ toReturn['blogPostId'] = this.blogPostId;
7046
+ }
7047
+ if (typeof this.type !== 'undefined') {
7048
+ toReturn['type'] = this.type;
7049
+ }
7050
+ return toReturn;
7051
+ }
7052
+ }
6963
7053
  class UpdateCampaignRequest {
6964
7054
  static fromProto(proto) {
6965
7055
  let m = new UpdateCampaignRequest();
@@ -7309,6 +7399,15 @@ class CampaignApiService {
7309
7399
  const request = (r.toApiJson) ? r : new DeleteCampaignRequest(r);
7310
7400
  return this.http.post(this._host + "/socialposts.v2.CampaignService/Delete", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
7311
7401
  }
7402
+ getMulti(r) {
7403
+ const request = (r.toApiJson) ? r : new GetMultiCampaignsRequest(r);
7404
+ return this.http.post(this._host + "/socialposts.v2.CampaignService/GetMulti", request.toApiJson(), this.apiOptions())
7405
+ .pipe(map(resp => GetMultiCampaignsResponse.fromProto(resp)));
7406
+ }
7407
+ updateCampaignId(r) {
7408
+ const request = (r.toApiJson) ? r : new UpdateCampaignIdRequest(r);
7409
+ return this.http.post(this._host + "/socialposts.v2.CampaignService/UpdateCampaignId", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
7410
+ }
7312
7411
  }
7313
7412
  CampaignApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7314
7413
  CampaignApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignApiService, providedIn: 'root' });
@@ -7974,7 +8073,7 @@ class PostTemplatesService {
7974
8073
  previews: previews,
7975
8074
  options: options,
7976
8075
  videoUrl: videoUrl,
7977
- postType: postType || PostType$1.POST_TYPE_INVALID,
8076
+ postType: postType || PostType.POST_TYPE_INVALID,
7978
8077
  mediaEntries: mediaEntries,
7979
8078
  metaData: metadata,
7980
8079
  youtubeCustomization: youtubeCustomization,
@@ -7994,7 +8093,7 @@ class PostTemplatesService {
7994
8093
  previews: previews,
7995
8094
  options: options,
7996
8095
  videoUrl: videoUrl,
7997
- postType: postType || PostType$1.POST_TYPE_INVALID,
8096
+ postType: postType || PostType.POST_TYPE_INVALID,
7998
8097
  mediaEntries: mediaEntries,
7999
8098
  metaData: metadata,
8000
8099
  youtubeCustomization: youtubeCustomization,
@@ -8467,5 +8566,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8467
8566
  * Generated bundle index. Do not edit.
8468
8567
  */
8469
8568
 
8470
- export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, Author, AuthorsRequest, AuthorsResponse, BlogConnection, BlogConnectionService, BlogImage, BlogPost, BlogPostCampaign, BlogPostCustomization, BlogPostsService, BlogVideo, CallToAction, CallToActionCallToActionType, Campaign, 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, FieldMask, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest, GenerateBlogPostCampaignResponse, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GenerateContentMetaDataRequest, GenerateContentMetaDataResponse, GeneratePostCampaignRequest, GeneratePostCampaignResponse, GeneratePostsRequest, GeneratePostsResponse, GeneratePostsResponsePost, GenerateType, GetBlogConnectionRequest, GetBlogConnectionResponse, GetCampaignRequest, GetCampaignResponse, GetCommonAiInstructionsRequest, GetCommonAiInstructionsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiBlogPostsRequest, GetMultiBlogPostsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, HashTagsService, Hashtag, Image, ImageBlob, ImageCreated, ImageUrl, KeywordGeneration, KeywordList, LinkV2, Links, ListBlogConnectionRequest, ListBlogConnectionResponse, ListCuratedContentRequest, ListCuratedContentResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, ListUnsplashImagesRequest, ListUnsplashImagesResponse, Location, Media, MediaEntry, MediaProperty, MediaType, MediaUploadRequest, MediaUploadResponse, MessageLength, MetaData, MetadataV2, MultiResponse, MultilocationPost, MultilocationPostApiService, MultilocationPostError, MultilocationPostsService, Network, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PartnerListScheduledSocialPostsRequestFilters, Photo, PixabayImage, PixabayImageService, PostAction, PostActionV2, PostContent, PostContentV2, PostCustomization, PostCustomizationV2, PostData, PostEvent, PostEventV2, PostList, PostMediaV2, PostPerformanceApiService, PostPerformanceService, PostStatusV2, PostTemplate, PostTemplatesService, PostType$1 as PostType, PostTypeV2, PostingStatus, Posts, PostsGeneration, PublishPostRequest, PublishPostResponse, RemoveFromMultilocationPostRequest, RemoveReason, ReplaceHashtagsRequest, RepostBlogPostRequest, RepostSocialPostRequest, Response, Role, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SendMessageRequest, SendMessageResponse, SendMessageV2Request, SendMessageV2Response, SinglePost, Social, 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, UpdateCampaignRequest, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, UploadedMedia, Urls, User, UserLink, WordpressPluginService, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
8569
+ export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, Author, AuthorsRequest, AuthorsResponse, BlogConnection, BlogConnectionService, BlogImage, BlogPost, BlogPostCampaign, BlogPostCustomization, BlogPostsService, BlogVideo, CallToAction, CallToActionCallToActionType, Campaign, 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, FieldMask, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest, GenerateBlogPostCampaignResponse, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GenerateContentMetaDataRequest, GenerateContentMetaDataResponse, GeneratePostCampaignRequest, GeneratePostCampaignResponse, GeneratePostsRequest, GeneratePostsResponse, 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, ImageUrl, KeywordGeneration, KeywordList, LinkV2, Links, ListBlogConnectionRequest, ListBlogConnectionResponse, ListCuratedContentRequest, ListCuratedContentResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, ListUnsplashImagesRequest, ListUnsplashImagesResponse, Location, Media, MediaEntry, MediaProperty, MediaType, MediaUploadRequest, MediaUploadResponse, MessageLength, MetaData, MetadataV2, MultiResponse, MultilocationPost, MultilocationPostApiService, MultilocationPostError, MultilocationPostsService, Network, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PartnerListScheduledSocialPostsRequestFilters, Photo, PixabayImage, PixabayImageService, PostAction, PostActionV2, PostCategory, PostContent, PostContentV2, PostCustomization, PostCustomizationV2, PostData, PostEvent, PostEventV2, PostList, PostMediaV2, PostPerformanceApiService, PostPerformanceService, PostStatusV2, PostTemplate, PostTemplatesService, PostType, PostTypeV2, PostingStatus, Posts, PostsGeneration, PublishPostRequest, PublishPostResponse, RemoveFromMultilocationPostRequest, RemoveReason, ReplaceHashtagsRequest, RepostBlogPostRequest, RepostSocialPostRequest, Response, Role, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SendMessageRequest, SendMessageResponse, SendMessageV2Request, SendMessageV2Response, SinglePost, Social, 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 };
8471
8570
  //# sourceMappingURL=vendasta-social-posts.mjs.map