@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.
- package/esm2020/lib/_internal/campaign.api.service.mjs +11 -2
- package/esm2020/lib/_internal/enums/api-v2.enum.mjs +29 -26
- package/esm2020/lib/_internal/enums/index.mjs +2 -2
- package/esm2020/lib/_internal/interfaces/api-v2.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/campaign.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/social-post-v2.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api-v2.mjs +8 -2
- package/esm2020/lib/_internal/objects/campaign.mjs +80 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/social-post-v2.mjs +4 -1
- package/fesm2015/vendasta-social-posts.mjs +135 -36
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +135 -36
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/campaign.api.service.d.ts +4 -2
- package/lib/_internal/enums/api-v2.enum.d.ts +26 -23
- package/lib/_internal/enums/index.d.ts +1 -1
- package/lib/_internal/interfaces/api-v2.interface.d.ts +3 -1
- package/lib/_internal/interfaces/campaign.interface.d.ts +14 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/interfaces/social-post-v2.interface.d.ts +1 -0
- package/lib/_internal/objects/api-v2.d.ts +3 -1
- package/lib/_internal/objects/campaign.d.ts +23 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/social-post-v2.d.ts +1 -0
- 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
|
|
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
|
|
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["
|
|
224
|
-
Network[Network["
|
|
225
|
-
Network[Network["
|
|
226
|
-
Network[Network["
|
|
227
|
-
Network[Network["
|
|
228
|
-
Network[Network["
|
|
229
|
-
Network[Network["
|
|
230
|
-
Network[Network["
|
|
231
|
-
Network[Network["
|
|
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
|
|
234
|
-
(function (
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
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["
|
|
242
|
-
Tone[Tone["
|
|
243
|
-
Tone[Tone["
|
|
244
|
-
Tone[Tone["
|
|
245
|
-
Tone[Tone["
|
|
246
|
-
Tone[Tone["
|
|
247
|
-
Tone[Tone["
|
|
248
|
-
Tone[Tone["
|
|
249
|
-
Tone[Tone["
|
|
250
|
-
Tone[Tone["
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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(
|
|
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();
|
|
@@ -7259,6 +7349,15 @@ class CampaignApiService {
|
|
|
7259
7349
|
const request = (r.toApiJson) ? r : new DeleteCampaignRequest(r);
|
|
7260
7350
|
return this.http.post(this._host + "/socialposts.v2.CampaignService/Delete", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
7261
7351
|
}
|
|
7352
|
+
getMulti(r) {
|
|
7353
|
+
const request = (r.toApiJson) ? r : new GetMultiCampaignsRequest(r);
|
|
7354
|
+
return this.http.post(this._host + "/socialposts.v2.CampaignService/GetMulti", request.toApiJson(), this.apiOptions())
|
|
7355
|
+
.pipe(map(resp => GetMultiCampaignsResponse.fromProto(resp)));
|
|
7356
|
+
}
|
|
7357
|
+
updateCampaignId(r) {
|
|
7358
|
+
const request = (r.toApiJson) ? r : new UpdateCampaignIdRequest(r);
|
|
7359
|
+
return this.http.post(this._host + "/socialposts.v2.CampaignService/UpdateCampaignId", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
7360
|
+
}
|
|
7262
7361
|
}
|
|
7263
7362
|
CampaignApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7264
7363
|
CampaignApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignApiService, providedIn: 'root' });
|
|
@@ -7975,7 +8074,7 @@ class PostTemplatesService {
|
|
|
7975
8074
|
previews: previews,
|
|
7976
8075
|
options: options,
|
|
7977
8076
|
videoUrl: videoUrl,
|
|
7978
|
-
postType: postType || PostType
|
|
8077
|
+
postType: postType || PostType.POST_TYPE_INVALID,
|
|
7979
8078
|
mediaEntries: mediaEntries,
|
|
7980
8079
|
metaData: metadata,
|
|
7981
8080
|
youtubeCustomization: youtubeCustomization,
|
|
@@ -7995,7 +8094,7 @@ class PostTemplatesService {
|
|
|
7995
8094
|
previews: previews,
|
|
7996
8095
|
options: options,
|
|
7997
8096
|
videoUrl: videoUrl,
|
|
7998
|
-
postType: postType || PostType
|
|
8097
|
+
postType: postType || PostType.POST_TYPE_INVALID,
|
|
7999
8098
|
mediaEntries: mediaEntries,
|
|
8000
8099
|
metaData: metadata,
|
|
8001
8100
|
youtubeCustomization: youtubeCustomization,
|
|
@@ -8468,5 +8567,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8468
8567
|
* Generated bundle index. Do not edit.
|
|
8469
8568
|
*/
|
|
8470
8569
|
|
|
8471
|
-
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
|
|
8570
|
+
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 };
|
|
8472
8571
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|