@vendasta/social-posts 5.45.4 → 5.45.6

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/enums/index.mjs +2 -2
  2. package/esm2020/lib/_internal/enums/multilocation-post.enum.mjs +9 -1
  3. package/esm2020/lib/_internal/enums/social-post-v2.enum.mjs +3 -1
  4. package/esm2020/lib/_internal/enums/social-posts.enum.mjs +3 -1
  5. package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/multilocation-post.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/objects/api.mjs +29 -2
  9. package/esm2020/lib/_internal/objects/index.mjs +3 -3
  10. package/esm2020/lib/_internal/objects/multilocation-post.mjs +36 -1
  11. package/esm2020/lib/multilocation-posts.service.mjs +7 -5
  12. package/fesm2015/vendasta-social-posts.mjs +81 -5
  13. package/fesm2015/vendasta-social-posts.mjs.map +1 -1
  14. package/fesm2020/vendasta-social-posts.mjs +81 -5
  15. package/fesm2020/vendasta-social-posts.mjs.map +1 -1
  16. package/lib/_internal/enums/index.d.ts +1 -1
  17. package/lib/_internal/enums/multilocation-post.enum.d.ts +7 -0
  18. package/lib/_internal/enums/social-post-v2.enum.d.ts +3 -1
  19. package/lib/_internal/enums/social-posts.enum.d.ts +3 -1
  20. package/lib/_internal/interfaces/api.interface.d.ts +7 -1
  21. package/lib/_internal/interfaces/index.d.ts +2 -2
  22. package/lib/_internal/interfaces/multilocation-post.interface.d.ts +6 -0
  23. package/lib/_internal/objects/api.d.ts +7 -1
  24. package/lib/_internal/objects/index.d.ts +2 -2
  25. package/lib/_internal/objects/multilocation-post.d.ts +9 -0
  26. package/lib/multilocation-posts.service.d.ts +3 -3
  27. package/package.json +1 -1
@@ -114,6 +114,8 @@ var PostType;
114
114
  PostType[PostType["POST_TYPE_CAROUSEL"] = 5] = "POST_TYPE_CAROUSEL";
115
115
  PostType[PostType["POST_TYPE_STORIES"] = 6] = "POST_TYPE_STORIES";
116
116
  PostType[PostType["POST_TYPE_TEXT"] = 7] = "POST_TYPE_TEXT";
117
+ PostType[PostType["POST_TYPE_IMAGE_STORY"] = 8] = "POST_TYPE_IMAGE_STORY";
118
+ PostType[PostType["POST_TYPE_VIDEO_STORY"] = 9] = "POST_TYPE_VIDEO_STORY";
117
119
  })(PostType || (PostType = {}));
118
120
  var PostingStatus;
119
121
  (function (PostingStatus) {
@@ -155,6 +157,14 @@ var TemplateType;
155
157
  //
156
158
  // Enums.
157
159
  // *********************************
160
+ var CustomizationStatus;
161
+ (function (CustomizationStatus) {
162
+ CustomizationStatus[CustomizationStatus["INVALID"] = 0] = "INVALID";
163
+ CustomizationStatus[CustomizationStatus["DISABLED"] = 1] = "DISABLED";
164
+ CustomizationStatus[CustomizationStatus["PENDING"] = 2] = "PENDING";
165
+ CustomizationStatus[CustomizationStatus["COMPLETED"] = 3] = "COMPLETED";
166
+ CustomizationStatus[CustomizationStatus["FAILED"] = 4] = "FAILED";
167
+ })(CustomizationStatus || (CustomizationStatus = {}));
158
168
  var RemoveReason;
159
169
  (function (RemoveReason) {
160
170
  RemoveReason[RemoveReason["REMOVE_REASON_EDIT"] = 0] = "REMOVE_REASON_EDIT";
@@ -194,6 +204,8 @@ var PostTypeV2;
194
204
  PostTypeV2[PostTypeV2["POST_TYPE_MULTI_MEDIA"] = 4] = "POST_TYPE_MULTI_MEDIA";
195
205
  PostTypeV2[PostTypeV2["POST_TYPE_TEXT"] = 5] = "POST_TYPE_TEXT";
196
206
  PostTypeV2[PostTypeV2["POST_TYPE_STORIES"] = 6] = "POST_TYPE_STORIES";
207
+ PostTypeV2[PostTypeV2["POST_TYPE_IMAGE_STORY"] = 7] = "POST_TYPE_IMAGE_STORY";
208
+ PostTypeV2[PostTypeV2["POST_TYPE_VIDEO_STORY"] = 8] = "POST_TYPE_VIDEO_STORY";
197
209
  })(PostTypeV2 || (PostTypeV2 = {}));
198
210
  var YoutubeCustomizationV2PrivacyStatusV2;
199
211
  (function (YoutubeCustomizationV2PrivacyStatusV2) {
@@ -1139,6 +1151,9 @@ class MultilocationPost {
1139
1151
  if (proto.postState) {
1140
1152
  m.postState = enumStringToValue$f(MLPostState, proto.postState);
1141
1153
  }
1154
+ if (proto.postCustomizationByLocation) {
1155
+ m.postCustomizationByLocation = PostCustomizationByLocation.fromProto(proto.postCustomizationByLocation);
1156
+ }
1142
1157
  return m;
1143
1158
  }
1144
1159
  constructor(kwargs) {
@@ -1203,6 +1218,12 @@ class MultilocationPost {
1203
1218
  if (typeof this.postState !== 'undefined') {
1204
1219
  toReturn['postState'] = this.postState;
1205
1220
  }
1221
+ if (typeof this.postCustomizationByLocation !== 'undefined' && this.postCustomizationByLocation !== null) {
1222
+ toReturn['postCustomizationByLocation'] = 'toApiJson' in this.postCustomizationByLocation ? this.postCustomizationByLocation.toApiJson() : this.postCustomizationByLocation;
1223
+ }
1224
+ if (typeof this.partnerId !== 'undefined') {
1225
+ toReturn['partnerId'] = this.partnerId;
1226
+ }
1206
1227
  return toReturn;
1207
1228
  }
1208
1229
  }
@@ -1307,6 +1328,32 @@ class PostCustomization {
1307
1328
  return toReturn;
1308
1329
  }
1309
1330
  }
1331
+ class PostCustomizationByLocation {
1332
+ static fromProto(proto) {
1333
+ let m = new PostCustomizationByLocation();
1334
+ m = Object.assign(m, proto);
1335
+ if (proto.customizationStatus) {
1336
+ m.customizationStatus = enumStringToValue$f(CustomizationStatus, proto.customizationStatus);
1337
+ }
1338
+ return m;
1339
+ }
1340
+ constructor(kwargs) {
1341
+ if (!kwargs) {
1342
+ return;
1343
+ }
1344
+ Object.assign(this, kwargs);
1345
+ }
1346
+ toApiJson() {
1347
+ const toReturn = {};
1348
+ if (typeof this.isCustomizedByLocation !== 'undefined') {
1349
+ toReturn['isCustomizedByLocation'] = this.isCustomizedByLocation;
1350
+ }
1351
+ if (typeof this.customizationStatus !== 'undefined') {
1352
+ toReturn['customizationStatus'] = this.customizationStatus;
1353
+ }
1354
+ return toReturn;
1355
+ }
1356
+ }
1310
1357
  class PostEvent {
1311
1358
  static fromProto(proto) {
1312
1359
  let m = new PostEvent();
@@ -1784,6 +1831,9 @@ class BulkCreateMultilocationPostRequest {
1784
1831
  if (proto.request) {
1785
1832
  m.request = proto.request.map(BulkUploadMultilocation.fromProto);
1786
1833
  }
1834
+ if (proto.mlPosts) {
1835
+ m.mlPosts = proto.mlPosts.map(CreateMultilocationPostRequest.fromProto);
1836
+ }
1787
1837
  return m;
1788
1838
  }
1789
1839
  constructor(kwargs) {
@@ -1803,6 +1853,9 @@ class BulkCreateMultilocationPostRequest {
1803
1853
  if (typeof this.request !== 'undefined' && this.request !== null) {
1804
1854
  toReturn['request'] = 'toApiJson' in this.request ? this.request.toApiJson() : this.request;
1805
1855
  }
1856
+ if (typeof this.mlPosts !== 'undefined' && this.mlPosts !== null) {
1857
+ toReturn['mlPosts'] = 'toApiJson' in this.mlPosts ? this.mlPosts.toApiJson() : this.mlPosts;
1858
+ }
1806
1859
  return toReturn;
1807
1860
  }
1808
1861
  }
@@ -1860,6 +1913,9 @@ class CreateMultilocationPostRequest {
1860
1913
  if (proto.postCategory) {
1861
1914
  m.postCategory = MLPostCategory.fromProto(proto.postCategory);
1862
1915
  }
1916
+ if (proto.postCustomizationByLocation) {
1917
+ m.postCustomizationByLocation = PostCustomizationByLocation.fromProto(proto.postCustomizationByLocation);
1918
+ }
1863
1919
  return m;
1864
1920
  }
1865
1921
  constructor(kwargs) {
@@ -1912,6 +1968,15 @@ class CreateMultilocationPostRequest {
1912
1968
  if (typeof this.postCategory !== 'undefined' && this.postCategory !== null) {
1913
1969
  toReturn['postCategory'] = 'toApiJson' in this.postCategory ? this.postCategory.toApiJson() : this.postCategory;
1914
1970
  }
1971
+ if (typeof this.postCustomizationByLocation !== 'undefined' && this.postCustomizationByLocation !== null) {
1972
+ toReturn['postCustomizationByLocation'] = 'toApiJson' in this.postCustomizationByLocation ? this.postCustomizationByLocation.toApiJson() : this.postCustomizationByLocation;
1973
+ }
1974
+ if (typeof this.partnerId !== 'undefined') {
1975
+ toReturn['partnerId'] = this.partnerId;
1976
+ }
1977
+ if (typeof this.multilocationId !== 'undefined') {
1978
+ toReturn['multilocationId'] = this.multilocationId;
1979
+ }
1915
1980
  return toReturn;
1916
1981
  }
1917
1982
  }
@@ -2199,6 +2264,9 @@ class EditMultilocationPostRequest {
2199
2264
  if (proto.postCategory) {
2200
2265
  m.postCategory = MLPostCategory.fromProto(proto.postCategory);
2201
2266
  }
2267
+ if (proto.postCustomizationByLocation) {
2268
+ m.postCustomizationByLocation = PostCustomizationByLocation.fromProto(proto.postCustomizationByLocation);
2269
+ }
2202
2270
  return m;
2203
2271
  }
2204
2272
  constructor(kwargs) {
@@ -2263,6 +2331,12 @@ class EditMultilocationPostRequest {
2263
2331
  if (typeof this.postCategory !== 'undefined' && this.postCategory !== null) {
2264
2332
  toReturn['postCategory'] = 'toApiJson' in this.postCategory ? this.postCategory.toApiJson() : this.postCategory;
2265
2333
  }
2334
+ if (typeof this.postCustomizationByLocation !== 'undefined' && this.postCustomizationByLocation !== null) {
2335
+ toReturn['postCustomizationByLocation'] = 'toApiJson' in this.postCustomizationByLocation ? this.postCustomizationByLocation.toApiJson() : this.postCustomizationByLocation;
2336
+ }
2337
+ if (typeof this.partnerId !== 'undefined') {
2338
+ toReturn['partnerId'] = this.partnerId;
2339
+ }
2266
2340
  return toReturn;
2267
2341
  }
2268
2342
  }
@@ -8834,7 +8908,7 @@ class MultilocationPostsService {
8834
8908
  constructor(multilocationApiService) {
8835
8909
  this.multilocationApiService = multilocationApiService;
8836
8910
  }
8837
- createMultilocationPost(brandId, text, media, gifs, videos, scheduledDate, locations, mediaEntries, postCustomization, linkShortCode, metadata, postTypes, postCategory) {
8911
+ createMultilocationPost(brandId, text, media, gifs, videos, scheduledDate, locations, mediaEntries, postCustomization, linkShortCode, metadata, postTypes, postCategory, postCustomizationByLocation) {
8838
8912
  const req = new CreateMultilocationPostRequest({
8839
8913
  brandId: brandId,
8840
8914
  text: text,
@@ -8848,11 +8922,12 @@ class MultilocationPostsService {
8848
8922
  customization: postCustomization,
8849
8923
  linkShortCode: linkShortCode,
8850
8924
  postTypes: postTypes,
8851
- postCategory: postCategory
8925
+ postCategory: postCategory,
8926
+ postCustomizationByLocation: postCustomizationByLocation
8852
8927
  });
8853
8928
  return this.multilocationApiService.createMultilocationPost(req);
8854
8929
  }
8855
- editMultilocationPost(brandId, multilocationId, text, media, gifs, videos, scheduledDate, locations, fieldMask, mediaEntries, postCustomization, linkShortCode, metadata, postTypes, postCategory, newServices, deletedServices) {
8930
+ editMultilocationPost(brandId, multilocationId, text, media, gifs, videos, scheduledDate, locations, fieldMask, mediaEntries, postCustomization, linkShortCode, metadata, postTypes, postCategory, newServices, deletedServices, postCustomizationByLocation) {
8856
8931
  const req = new EditMultilocationPostRequest({
8857
8932
  brandId: brandId,
8858
8933
  multilocationId: multilocationId,
@@ -8870,7 +8945,8 @@ class MultilocationPostsService {
8870
8945
  postTypes: postTypes,
8871
8946
  postCategory: postCategory,
8872
8947
  newServices: newServices,
8873
- deletedServices: deletedServices
8948
+ deletedServices: deletedServices,
8949
+ postCustomizationByLocation: postCustomizationByLocation
8874
8950
  });
8875
8951
  return this.multilocationApiService.editMultilocationPost(req);
8876
8952
  }
@@ -9335,5 +9411,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
9335
9411
  * Generated bundle index. Do not edit.
9336
9412
  */
9337
9413
 
9338
- 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, ListPexelsImagesRequest, ListPexelsImagesResponse, 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, PexelsImage, PexelsImageService, 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 };
9414
+ 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, CustomizationStatus, 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, ListPexelsImagesRequest, ListPexelsImagesResponse, 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, PexelsImage, PexelsImageService, Photo, PixabayImage, PixabayImageService, Post, PostAction, PostActionV2, PostCategory, PostContent, PostContentV2, PostCustomization, PostCustomizationByLocation, 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, Author as WordpressAuthor, Category as WordpressCategory, WordpressPluginService, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
9339
9415
  //# sourceMappingURL=vendasta-social-posts.mjs.map