@vendasta/social-posts 5.38.0 → 5.39.1
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/interfaces/social-posts.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 +3 -3
- package/esm2020/lib/_internal/objects/social-post-v2.mjs +4 -1
- package/esm2020/lib/_internal/objects/social-posts.mjs +30 -1
- package/fesm2015/vendasta-social-posts.mjs +164 -36
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +164 -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 +2 -2
- package/lib/_internal/interfaces/social-post-v2.interface.d.ts +1 -0
- package/lib/_internal/interfaces/social-posts.interface.d.ts +5 -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 +2 -2
- package/lib/_internal/objects/social-post-v2.d.ts +1 -0
- package/lib/_internal/objects/social-posts.d.ts +8 -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
|
}
|
|
@@ -673,6 +676,29 @@ class SchedulePostStatus {
|
|
|
673
676
|
return toReturn;
|
|
674
677
|
}
|
|
675
678
|
}
|
|
679
|
+
class SocialCampaign {
|
|
680
|
+
static fromProto(proto) {
|
|
681
|
+
let m = new SocialCampaign();
|
|
682
|
+
m = Object.assign(m, proto);
|
|
683
|
+
return m;
|
|
684
|
+
}
|
|
685
|
+
constructor(kwargs) {
|
|
686
|
+
if (!kwargs) {
|
|
687
|
+
return;
|
|
688
|
+
}
|
|
689
|
+
Object.assign(this, kwargs);
|
|
690
|
+
}
|
|
691
|
+
toApiJson() {
|
|
692
|
+
const toReturn = {};
|
|
693
|
+
if (typeof this.name !== 'undefined') {
|
|
694
|
+
toReturn['name'] = this.name;
|
|
695
|
+
}
|
|
696
|
+
if (typeof this.id !== 'undefined') {
|
|
697
|
+
toReturn['id'] = this.id;
|
|
698
|
+
}
|
|
699
|
+
return toReturn;
|
|
700
|
+
}
|
|
701
|
+
}
|
|
676
702
|
class SocialPost {
|
|
677
703
|
static fromProto(proto) {
|
|
678
704
|
let m = new SocialPost();
|
|
@@ -705,7 +731,7 @@ class SocialPost {
|
|
|
705
731
|
m.error = Error.fromProto(proto.error);
|
|
706
732
|
}
|
|
707
733
|
if (proto.postType) {
|
|
708
|
-
m.postType = enumStringToValue$f(PostType
|
|
734
|
+
m.postType = enumStringToValue$f(PostType, proto.postType);
|
|
709
735
|
}
|
|
710
736
|
if (proto.mediaEntries) {
|
|
711
737
|
m.mediaEntries = proto.mediaEntries.map(MediaEntry.fromProto);
|
|
@@ -722,6 +748,9 @@ class SocialPost {
|
|
|
722
748
|
if (proto.blogPostCustomization) {
|
|
723
749
|
m.blogPostCustomization = BlogPostCustomization.fromProto(proto.blogPostCustomization);
|
|
724
750
|
}
|
|
751
|
+
if (proto.campaign) {
|
|
752
|
+
m.campaign = SocialCampaign.fromProto(proto.campaign);
|
|
753
|
+
}
|
|
725
754
|
return m;
|
|
726
755
|
}
|
|
727
756
|
constructor(kwargs) {
|
|
@@ -831,6 +860,9 @@ class SocialPost {
|
|
|
831
860
|
if (typeof this.blogPostCustomization !== 'undefined' && this.blogPostCustomization !== null) {
|
|
832
861
|
toReturn['blogPostCustomization'] = 'toApiJson' in this.blogPostCustomization ? this.blogPostCustomization.toApiJson() : this.blogPostCustomization;
|
|
833
862
|
}
|
|
863
|
+
if (typeof this.campaign !== 'undefined' && this.campaign !== null) {
|
|
864
|
+
toReturn['campaign'] = 'toApiJson' in this.campaign ? this.campaign.toApiJson() : this.campaign;
|
|
865
|
+
}
|
|
834
866
|
return toReturn;
|
|
835
867
|
}
|
|
836
868
|
}
|
|
@@ -1642,7 +1674,7 @@ class CreatePostTemplateRequest {
|
|
|
1642
1674
|
m.metaData = proto.metaData.map(MetaData.fromProto);
|
|
1643
1675
|
}
|
|
1644
1676
|
if (proto.postType) {
|
|
1645
|
-
m.postType = enumStringToValue$a(PostType
|
|
1677
|
+
m.postType = enumStringToValue$a(PostType, proto.postType);
|
|
1646
1678
|
}
|
|
1647
1679
|
if (proto.youtubeCustomization) {
|
|
1648
1680
|
m.youtubeCustomization = YoutubeCustomization.fromProto(proto.youtubeCustomization);
|
|
@@ -3168,7 +3200,7 @@ class UpdatePostTemplateRequest {
|
|
|
3168
3200
|
m.metaData = proto.metaData.map(MetaData.fromProto);
|
|
3169
3201
|
}
|
|
3170
3202
|
if (proto.postType) {
|
|
3171
|
-
m.postType = enumStringToValue$a(PostType
|
|
3203
|
+
m.postType = enumStringToValue$a(PostType, proto.postType);
|
|
3172
3204
|
}
|
|
3173
3205
|
if (proto.youtubeCustomization) {
|
|
3174
3206
|
m.youtubeCustomization = YoutubeCustomization.fromProto(proto.youtubeCustomization);
|
|
@@ -3566,6 +3598,9 @@ class SocialPostV2 {
|
|
|
3566
3598
|
if (typeof this.tiktokCustomization !== 'undefined' && this.tiktokCustomization !== null) {
|
|
3567
3599
|
toReturn['tiktokCustomization'] = 'toApiJson' in this.tiktokCustomization ? this.tiktokCustomization.toApiJson() : this.tiktokCustomization;
|
|
3568
3600
|
}
|
|
3601
|
+
if (typeof this.campaignId !== 'undefined') {
|
|
3602
|
+
toReturn['campaignId'] = this.campaignId;
|
|
3603
|
+
}
|
|
3569
3604
|
return toReturn;
|
|
3570
3605
|
}
|
|
3571
3606
|
}
|
|
@@ -4236,7 +4271,7 @@ class BlogPostCampaign {
|
|
|
4236
4271
|
let m = new BlogPostCampaign();
|
|
4237
4272
|
m = Object.assign(m, proto);
|
|
4238
4273
|
if (proto.blogPostType) {
|
|
4239
|
-
m.blogPostType = enumStringToValue$5(
|
|
4274
|
+
m.blogPostType = enumStringToValue$5(PostCategory, proto.blogPostType);
|
|
4240
4275
|
}
|
|
4241
4276
|
return m;
|
|
4242
4277
|
}
|
|
@@ -4554,6 +4589,9 @@ class GenerateBlogPostCampaignRequest {
|
|
|
4554
4589
|
if (typeof this.blogCampaign !== 'undefined' && this.blogCampaign !== null) {
|
|
4555
4590
|
toReturn['blogCampaign'] = 'toApiJson' in this.blogCampaign ? this.blogCampaign.toApiJson() : this.blogCampaign;
|
|
4556
4591
|
}
|
|
4592
|
+
if (typeof this.partnerId !== 'undefined') {
|
|
4593
|
+
toReturn['partnerId'] = this.partnerId;
|
|
4594
|
+
}
|
|
4557
4595
|
return toReturn;
|
|
4558
4596
|
}
|
|
4559
4597
|
}
|
|
@@ -4667,6 +4705,9 @@ class GeneratePostCampaignRequest {
|
|
|
4667
4705
|
if (typeof this.postGeneration !== 'undefined' && this.postGeneration !== null) {
|
|
4668
4706
|
toReturn['postGeneration'] = 'toApiJson' in this.postGeneration ? this.postGeneration.toApiJson() : this.postGeneration;
|
|
4669
4707
|
}
|
|
4708
|
+
if (typeof this.partnerId !== 'undefined') {
|
|
4709
|
+
toReturn['partnerId'] = this.partnerId;
|
|
4710
|
+
}
|
|
4670
4711
|
return toReturn;
|
|
4671
4712
|
}
|
|
4672
4713
|
}
|
|
@@ -6960,6 +7001,84 @@ class GetCampaignResponse {
|
|
|
6960
7001
|
return toReturn;
|
|
6961
7002
|
}
|
|
6962
7003
|
}
|
|
7004
|
+
class GetMultiCampaignsRequest {
|
|
7005
|
+
static fromProto(proto) {
|
|
7006
|
+
let m = new GetMultiCampaignsRequest();
|
|
7007
|
+
m = Object.assign(m, proto);
|
|
7008
|
+
return m;
|
|
7009
|
+
}
|
|
7010
|
+
constructor(kwargs) {
|
|
7011
|
+
if (!kwargs) {
|
|
7012
|
+
return;
|
|
7013
|
+
}
|
|
7014
|
+
Object.assign(this, kwargs);
|
|
7015
|
+
}
|
|
7016
|
+
toApiJson() {
|
|
7017
|
+
const toReturn = {};
|
|
7018
|
+
if (typeof this.businessId !== 'undefined') {
|
|
7019
|
+
toReturn['businessId'] = this.businessId;
|
|
7020
|
+
}
|
|
7021
|
+
if (typeof this.campaignId !== 'undefined') {
|
|
7022
|
+
toReturn['campaignId'] = this.campaignId;
|
|
7023
|
+
}
|
|
7024
|
+
return toReturn;
|
|
7025
|
+
}
|
|
7026
|
+
}
|
|
7027
|
+
class GetMultiCampaignsResponse {
|
|
7028
|
+
static fromProto(proto) {
|
|
7029
|
+
let m = new GetMultiCampaignsResponse();
|
|
7030
|
+
m = Object.assign(m, proto);
|
|
7031
|
+
if (proto.campaigns) {
|
|
7032
|
+
m.campaigns = proto.campaigns.map(Campaign.fromProto);
|
|
7033
|
+
}
|
|
7034
|
+
return m;
|
|
7035
|
+
}
|
|
7036
|
+
constructor(kwargs) {
|
|
7037
|
+
if (!kwargs) {
|
|
7038
|
+
return;
|
|
7039
|
+
}
|
|
7040
|
+
Object.assign(this, kwargs);
|
|
7041
|
+
}
|
|
7042
|
+
toApiJson() {
|
|
7043
|
+
const toReturn = {};
|
|
7044
|
+
if (typeof this.campaigns !== 'undefined' && this.campaigns !== null) {
|
|
7045
|
+
toReturn['campaigns'] = 'toApiJson' in this.campaigns ? this.campaigns.toApiJson() : this.campaigns;
|
|
7046
|
+
}
|
|
7047
|
+
return toReturn;
|
|
7048
|
+
}
|
|
7049
|
+
}
|
|
7050
|
+
class UpdateCampaignIdRequest {
|
|
7051
|
+
static fromProto(proto) {
|
|
7052
|
+
let m = new UpdateCampaignIdRequest();
|
|
7053
|
+
m = Object.assign(m, proto);
|
|
7054
|
+
if (proto.type) {
|
|
7055
|
+
m.type = enumStringToValue(PostCategory, proto.type);
|
|
7056
|
+
}
|
|
7057
|
+
return m;
|
|
7058
|
+
}
|
|
7059
|
+
constructor(kwargs) {
|
|
7060
|
+
if (!kwargs) {
|
|
7061
|
+
return;
|
|
7062
|
+
}
|
|
7063
|
+
Object.assign(this, kwargs);
|
|
7064
|
+
}
|
|
7065
|
+
toApiJson() {
|
|
7066
|
+
const toReturn = {};
|
|
7067
|
+
if (typeof this.campaignId !== 'undefined') {
|
|
7068
|
+
toReturn['campaignId'] = this.campaignId;
|
|
7069
|
+
}
|
|
7070
|
+
if (typeof this.businessId !== 'undefined') {
|
|
7071
|
+
toReturn['businessId'] = this.businessId;
|
|
7072
|
+
}
|
|
7073
|
+
if (typeof this.blogPostId !== 'undefined') {
|
|
7074
|
+
toReturn['blogPostId'] = this.blogPostId;
|
|
7075
|
+
}
|
|
7076
|
+
if (typeof this.type !== 'undefined') {
|
|
7077
|
+
toReturn['type'] = this.type;
|
|
7078
|
+
}
|
|
7079
|
+
return toReturn;
|
|
7080
|
+
}
|
|
7081
|
+
}
|
|
6963
7082
|
class UpdateCampaignRequest {
|
|
6964
7083
|
static fromProto(proto) {
|
|
6965
7084
|
let m = new UpdateCampaignRequest();
|
|
@@ -7259,6 +7378,15 @@ class CampaignApiService {
|
|
|
7259
7378
|
const request = (r.toApiJson) ? r : new DeleteCampaignRequest(r);
|
|
7260
7379
|
return this.http.post(this._host + "/socialposts.v2.CampaignService/Delete", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
7261
7380
|
}
|
|
7381
|
+
getMulti(r) {
|
|
7382
|
+
const request = (r.toApiJson) ? r : new GetMultiCampaignsRequest(r);
|
|
7383
|
+
return this.http.post(this._host + "/socialposts.v2.CampaignService/GetMulti", request.toApiJson(), this.apiOptions())
|
|
7384
|
+
.pipe(map(resp => GetMultiCampaignsResponse.fromProto(resp)));
|
|
7385
|
+
}
|
|
7386
|
+
updateCampaignId(r) {
|
|
7387
|
+
const request = (r.toApiJson) ? r : new UpdateCampaignIdRequest(r);
|
|
7388
|
+
return this.http.post(this._host + "/socialposts.v2.CampaignService/UpdateCampaignId", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
7389
|
+
}
|
|
7262
7390
|
}
|
|
7263
7391
|
CampaignApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7264
7392
|
CampaignApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CampaignApiService, providedIn: 'root' });
|
|
@@ -7975,7 +8103,7 @@ class PostTemplatesService {
|
|
|
7975
8103
|
previews: previews,
|
|
7976
8104
|
options: options,
|
|
7977
8105
|
videoUrl: videoUrl,
|
|
7978
|
-
postType: postType || PostType
|
|
8106
|
+
postType: postType || PostType.POST_TYPE_INVALID,
|
|
7979
8107
|
mediaEntries: mediaEntries,
|
|
7980
8108
|
metaData: metadata,
|
|
7981
8109
|
youtubeCustomization: youtubeCustomization,
|
|
@@ -7995,7 +8123,7 @@ class PostTemplatesService {
|
|
|
7995
8123
|
previews: previews,
|
|
7996
8124
|
options: options,
|
|
7997
8125
|
videoUrl: videoUrl,
|
|
7998
|
-
postType: postType || PostType
|
|
8126
|
+
postType: postType || PostType.POST_TYPE_INVALID,
|
|
7999
8127
|
mediaEntries: mediaEntries,
|
|
8000
8128
|
metaData: metadata,
|
|
8001
8129
|
youtubeCustomization: youtubeCustomization,
|
|
@@ -8468,5 +8596,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8468
8596
|
* Generated bundle index. Do not edit.
|
|
8469
8597
|
*/
|
|
8470
8598
|
|
|
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
|
|
8599
|
+
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, SocialCampaign, SocialPost, SocialPostData, SocialPostDeletionStatus, SocialPostOutput, SocialPostRequest, SocialPostResponse, SocialPostService, SocialPostStats, SocialPostV2, SocialPostsService, SocialPostsV2Service, Source, StartChatRequest, StartChatResponse, StatusRequest, StatusResponse, SubAncestry, SuggestMessageRequest, SuggestMessageResponse, Tags, TemplateType, TenorGif, TenorGifMediaMapEntry, TenorGifsService, TenorMediaObject, TikTokCustomization, TikTokCustomizationV2, TitleGeneration, Tone, TwitterPostStats, UnsplashImageService, UpdateBlogConnectionRequest, UpdateBlogPostRequest, UpdateCampaignIdRequest, UpdateCampaignRequest, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, UploadedMedia, Urls, User, UserLink, WordpressPluginService, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
|
|
8472
8600
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|