@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.
- package/esm2020/lib/_internal/enums/index.mjs +2 -2
- package/esm2020/lib/_internal/enums/multilocation-post.enum.mjs +9 -1
- package/esm2020/lib/_internal/enums/social-post-v2.enum.mjs +3 -1
- package/esm2020/lib/_internal/enums/social-posts.enum.mjs +3 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/multilocation-post.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +29 -2
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/multilocation-post.mjs +36 -1
- package/esm2020/lib/multilocation-posts.service.mjs +7 -5
- package/fesm2015/vendasta-social-posts.mjs +81 -5
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +81 -5
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/enums/multilocation-post.enum.d.ts +7 -0
- package/lib/_internal/enums/social-post-v2.enum.d.ts +3 -1
- package/lib/_internal/enums/social-posts.enum.d.ts +3 -1
- package/lib/_internal/interfaces/api.interface.d.ts +7 -1
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/multilocation-post.interface.d.ts +6 -0
- package/lib/_internal/objects/api.d.ts +7 -1
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/multilocation-post.d.ts +9 -0
- package/lib/multilocation-posts.service.d.ts +3 -3
- 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
|
}
|
|
@@ -8833,7 +8907,7 @@ class MultilocationPostsService {
|
|
|
8833
8907
|
constructor(multilocationApiService) {
|
|
8834
8908
|
this.multilocationApiService = multilocationApiService;
|
|
8835
8909
|
}
|
|
8836
|
-
createMultilocationPost(brandId, text, media, gifs, videos, scheduledDate, locations, mediaEntries, postCustomization, linkShortCode, metadata, postTypes, postCategory) {
|
|
8910
|
+
createMultilocationPost(brandId, text, media, gifs, videos, scheduledDate, locations, mediaEntries, postCustomization, linkShortCode, metadata, postTypes, postCategory, postCustomizationByLocation) {
|
|
8837
8911
|
const req = new CreateMultilocationPostRequest({
|
|
8838
8912
|
brandId: brandId,
|
|
8839
8913
|
text: text,
|
|
@@ -8847,11 +8921,12 @@ class MultilocationPostsService {
|
|
|
8847
8921
|
customization: postCustomization,
|
|
8848
8922
|
linkShortCode: linkShortCode,
|
|
8849
8923
|
postTypes: postTypes,
|
|
8850
|
-
postCategory: postCategory
|
|
8924
|
+
postCategory: postCategory,
|
|
8925
|
+
postCustomizationByLocation: postCustomizationByLocation
|
|
8851
8926
|
});
|
|
8852
8927
|
return this.multilocationApiService.createMultilocationPost(req);
|
|
8853
8928
|
}
|
|
8854
|
-
editMultilocationPost(brandId, multilocationId, text, media, gifs, videos, scheduledDate, locations, fieldMask, mediaEntries, postCustomization, linkShortCode, metadata, postTypes, postCategory, newServices, deletedServices) {
|
|
8929
|
+
editMultilocationPost(brandId, multilocationId, text, media, gifs, videos, scheduledDate, locations, fieldMask, mediaEntries, postCustomization, linkShortCode, metadata, postTypes, postCategory, newServices, deletedServices, postCustomizationByLocation) {
|
|
8855
8930
|
const req = new EditMultilocationPostRequest({
|
|
8856
8931
|
brandId: brandId,
|
|
8857
8932
|
multilocationId: multilocationId,
|
|
@@ -8869,7 +8944,8 @@ class MultilocationPostsService {
|
|
|
8869
8944
|
postTypes: postTypes,
|
|
8870
8945
|
postCategory: postCategory,
|
|
8871
8946
|
newServices: newServices,
|
|
8872
|
-
deletedServices: deletedServices
|
|
8947
|
+
deletedServices: deletedServices,
|
|
8948
|
+
postCustomizationByLocation: postCustomizationByLocation
|
|
8873
8949
|
});
|
|
8874
8950
|
return this.multilocationApiService.editMultilocationPost(req);
|
|
8875
8951
|
}
|
|
@@ -9334,5 +9410,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9334
9410
|
* Generated bundle index. Do not edit.
|
|
9335
9411
|
*/
|
|
9336
9412
|
|
|
9337
|
-
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 };
|
|
9413
|
+
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 };
|
|
9338
9414
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|