@vendasta/social-posts 5.39.0 → 5.40.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/content-generation.api.service.mjs +8 -3
- package/esm2020/lib/_internal/interfaces/api-v2.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/social-posts.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api-v2.mjs +107 -89
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/social-posts.mjs +30 -1
- package/esm2020/lib/content-generation.service.mjs +4 -1
- package/fesm2015/vendasta-social-posts.mjs +145 -90
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +145 -90
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/content-generation.api.service.d.ts +4 -3
- package/lib/_internal/interfaces/api-v2.interface.d.ts +21 -15
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/social-posts.interface.d.ts +5 -0
- package/lib/_internal/objects/api-v2.d.ts +34 -28
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/social-posts.d.ts +8 -0
- package/lib/content-generation.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -676,6 +676,29 @@ class SchedulePostStatus {
|
|
|
676
676
|
return toReturn;
|
|
677
677
|
}
|
|
678
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
|
+
}
|
|
679
702
|
class SocialPost {
|
|
680
703
|
static fromProto(proto) {
|
|
681
704
|
let m = new SocialPost();
|
|
@@ -725,6 +748,9 @@ class SocialPost {
|
|
|
725
748
|
if (proto.blogPostCustomization) {
|
|
726
749
|
m.blogPostCustomization = BlogPostCustomization.fromProto(proto.blogPostCustomization);
|
|
727
750
|
}
|
|
751
|
+
if (proto.campaign) {
|
|
752
|
+
m.campaign = SocialCampaign.fromProto(proto.campaign);
|
|
753
|
+
}
|
|
728
754
|
return m;
|
|
729
755
|
}
|
|
730
756
|
constructor(kwargs) {
|
|
@@ -834,6 +860,9 @@ class SocialPost {
|
|
|
834
860
|
if (typeof this.blogPostCustomization !== 'undefined' && this.blogPostCustomization !== null) {
|
|
835
861
|
toReturn['blogPostCustomization'] = 'toApiJson' in this.blogPostCustomization ? this.blogPostCustomization.toApiJson() : this.blogPostCustomization;
|
|
836
862
|
}
|
|
863
|
+
if (typeof this.campaign !== 'undefined' && this.campaign !== null) {
|
|
864
|
+
toReturn['campaign'] = 'toApiJson' in this.campaign ? this.campaign.toApiJson() : this.campaign;
|
|
865
|
+
}
|
|
837
866
|
return toReturn;
|
|
838
867
|
}
|
|
839
868
|
}
|
|
@@ -4260,6 +4289,9 @@ class BlogPostCampaign {
|
|
|
4260
4289
|
if (typeof this.blogPostType !== 'undefined') {
|
|
4261
4290
|
toReturn['blogPostType'] = this.blogPostType;
|
|
4262
4291
|
}
|
|
4292
|
+
if (typeof this.noOfPosts !== 'undefined') {
|
|
4293
|
+
toReturn['noOfPosts'] = this.noOfPosts;
|
|
4294
|
+
}
|
|
4263
4295
|
return toReturn;
|
|
4264
4296
|
}
|
|
4265
4297
|
}
|
|
@@ -4455,6 +4487,58 @@ class DeletePostRequest {
|
|
|
4455
4487
|
return toReturn;
|
|
4456
4488
|
}
|
|
4457
4489
|
}
|
|
4490
|
+
class FetchLibraryImagesRequest {
|
|
4491
|
+
static fromProto(proto) {
|
|
4492
|
+
let m = new FetchLibraryImagesRequest();
|
|
4493
|
+
m = Object.assign(m, proto);
|
|
4494
|
+
if (proto.keywordInput) {
|
|
4495
|
+
m.keywordInput = KeywordGeneration.fromProto(proto.keywordInput);
|
|
4496
|
+
}
|
|
4497
|
+
return m;
|
|
4498
|
+
}
|
|
4499
|
+
constructor(kwargs) {
|
|
4500
|
+
if (!kwargs) {
|
|
4501
|
+
return;
|
|
4502
|
+
}
|
|
4503
|
+
Object.assign(this, kwargs);
|
|
4504
|
+
}
|
|
4505
|
+
toApiJson() {
|
|
4506
|
+
const toReturn = {};
|
|
4507
|
+
if (typeof this.businessId !== 'undefined') {
|
|
4508
|
+
toReturn['businessId'] = this.businessId;
|
|
4509
|
+
}
|
|
4510
|
+
if (typeof this.keywordInput !== 'undefined' && this.keywordInput !== null) {
|
|
4511
|
+
toReturn['keywordInput'] = 'toApiJson' in this.keywordInput ? this.keywordInput.toApiJson() : this.keywordInput;
|
|
4512
|
+
}
|
|
4513
|
+
if (typeof this.imageCount !== 'undefined') {
|
|
4514
|
+
toReturn['imageCount'] = this.imageCount;
|
|
4515
|
+
}
|
|
4516
|
+
return toReturn;
|
|
4517
|
+
}
|
|
4518
|
+
}
|
|
4519
|
+
class FetchLibraryImagesResponse {
|
|
4520
|
+
static fromProto(proto) {
|
|
4521
|
+
let m = new FetchLibraryImagesResponse();
|
|
4522
|
+
m = Object.assign(m, proto);
|
|
4523
|
+
if (proto.images) {
|
|
4524
|
+
m.images = proto.images.map(ImageResponse.fromProto);
|
|
4525
|
+
}
|
|
4526
|
+
return m;
|
|
4527
|
+
}
|
|
4528
|
+
constructor(kwargs) {
|
|
4529
|
+
if (!kwargs) {
|
|
4530
|
+
return;
|
|
4531
|
+
}
|
|
4532
|
+
Object.assign(this, kwargs);
|
|
4533
|
+
}
|
|
4534
|
+
toApiJson() {
|
|
4535
|
+
const toReturn = {};
|
|
4536
|
+
if (typeof this.images !== 'undefined' && this.images !== null) {
|
|
4537
|
+
toReturn['images'] = 'toApiJson' in this.images ? this.images.toApiJson() : this.images;
|
|
4538
|
+
}
|
|
4539
|
+
return toReturn;
|
|
4540
|
+
}
|
|
4541
|
+
}
|
|
4458
4542
|
class GenerateAiRequest {
|
|
4459
4543
|
static fromProto(proto) {
|
|
4460
4544
|
let m = new GenerateAiRequest();
|
|
@@ -4566,29 +4650,6 @@ class GenerateBlogPostCampaignRequest {
|
|
|
4566
4650
|
return toReturn;
|
|
4567
4651
|
}
|
|
4568
4652
|
}
|
|
4569
|
-
class GenerateBlogPostCampaignResponse {
|
|
4570
|
-
static fromProto(proto) {
|
|
4571
|
-
let m = new GenerateBlogPostCampaignResponse();
|
|
4572
|
-
m = Object.assign(m, proto);
|
|
4573
|
-
if (proto.posts) {
|
|
4574
|
-
m.posts = proto.posts.map(Posts.fromProto);
|
|
4575
|
-
}
|
|
4576
|
-
return m;
|
|
4577
|
-
}
|
|
4578
|
-
constructor(kwargs) {
|
|
4579
|
-
if (!kwargs) {
|
|
4580
|
-
return;
|
|
4581
|
-
}
|
|
4582
|
-
Object.assign(this, kwargs);
|
|
4583
|
-
}
|
|
4584
|
-
toApiJson() {
|
|
4585
|
-
const toReturn = {};
|
|
4586
|
-
if (typeof this.posts !== 'undefined' && this.posts !== null) {
|
|
4587
|
-
toReturn['posts'] = 'toApiJson' in this.posts ? this.posts.toApiJson() : this.posts;
|
|
4588
|
-
}
|
|
4589
|
-
return toReturn;
|
|
4590
|
-
}
|
|
4591
|
-
}
|
|
4592
4653
|
class GenerateContentMetaDataRequest {
|
|
4593
4654
|
static fromProto(proto) {
|
|
4594
4655
|
let m = new GenerateContentMetaDataRequest();
|
|
@@ -4686,8 +4747,8 @@ class GeneratePostCampaignResponse {
|
|
|
4686
4747
|
static fromProto(proto) {
|
|
4687
4748
|
let m = new GeneratePostCampaignResponse();
|
|
4688
4749
|
m = Object.assign(m, proto);
|
|
4689
|
-
if (proto.
|
|
4690
|
-
m.
|
|
4750
|
+
if (proto.posts) {
|
|
4751
|
+
m.posts = proto.posts.map(Post.fromProto);
|
|
4691
4752
|
}
|
|
4692
4753
|
return m;
|
|
4693
4754
|
}
|
|
@@ -4699,8 +4760,8 @@ class GeneratePostCampaignResponse {
|
|
|
4699
4760
|
}
|
|
4700
4761
|
toApiJson() {
|
|
4701
4762
|
const toReturn = {};
|
|
4702
|
-
if (typeof this.
|
|
4703
|
-
toReturn['
|
|
4763
|
+
if (typeof this.posts !== 'undefined' && this.posts !== null) {
|
|
4764
|
+
toReturn['posts'] = 'toApiJson' in this.posts ? this.posts.toApiJson() : this.posts;
|
|
4704
4765
|
}
|
|
4705
4766
|
return toReturn;
|
|
4706
4767
|
}
|
|
@@ -4867,6 +4928,32 @@ class ImageCreated {
|
|
|
4867
4928
|
return toReturn;
|
|
4868
4929
|
}
|
|
4869
4930
|
}
|
|
4931
|
+
class ImageResponse {
|
|
4932
|
+
static fromProto(proto) {
|
|
4933
|
+
let m = new ImageResponse();
|
|
4934
|
+
m = Object.assign(m, proto);
|
|
4935
|
+
return m;
|
|
4936
|
+
}
|
|
4937
|
+
constructor(kwargs) {
|
|
4938
|
+
if (!kwargs) {
|
|
4939
|
+
return;
|
|
4940
|
+
}
|
|
4941
|
+
Object.assign(this, kwargs);
|
|
4942
|
+
}
|
|
4943
|
+
toApiJson() {
|
|
4944
|
+
const toReturn = {};
|
|
4945
|
+
if (typeof this.type !== 'undefined') {
|
|
4946
|
+
toReturn['type'] = this.type;
|
|
4947
|
+
}
|
|
4948
|
+
if (typeof this.webformatUrl !== 'undefined') {
|
|
4949
|
+
toReturn['webformatUrl'] = this.webformatUrl;
|
|
4950
|
+
}
|
|
4951
|
+
if (typeof this.fullHdUrl !== 'undefined') {
|
|
4952
|
+
toReturn['fullHdUrl'] = this.fullHdUrl;
|
|
4953
|
+
}
|
|
4954
|
+
return toReturn;
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4870
4957
|
class ImageUrl {
|
|
4871
4958
|
static fromProto(proto) {
|
|
4872
4959
|
let m = new ImageUrl();
|
|
@@ -4891,6 +4978,9 @@ class KeywordGeneration {
|
|
|
4891
4978
|
static fromProto(proto) {
|
|
4892
4979
|
let m = new KeywordGeneration();
|
|
4893
4980
|
m = Object.assign(m, proto);
|
|
4981
|
+
if (proto.postType) {
|
|
4982
|
+
m.postType = enumStringToValue$5(PostCategory, proto.postType);
|
|
4983
|
+
}
|
|
4894
4984
|
return m;
|
|
4895
4985
|
}
|
|
4896
4986
|
constructor(kwargs) {
|
|
@@ -4907,6 +4997,9 @@ class KeywordGeneration {
|
|
|
4907
4997
|
if (typeof this.keywordCount !== 'undefined') {
|
|
4908
4998
|
toReturn['keywordCount'] = this.keywordCount;
|
|
4909
4999
|
}
|
|
5000
|
+
if (typeof this.postType !== 'undefined') {
|
|
5001
|
+
toReturn['postType'] = this.postType;
|
|
5002
|
+
}
|
|
4910
5003
|
return toReturn;
|
|
4911
5004
|
}
|
|
4912
5005
|
}
|
|
@@ -5168,35 +5261,12 @@ class GeneratePostsResponsePost {
|
|
|
5168
5261
|
return toReturn;
|
|
5169
5262
|
}
|
|
5170
5263
|
}
|
|
5171
|
-
class
|
|
5172
|
-
static fromProto(proto) {
|
|
5173
|
-
let m = new PostContent();
|
|
5174
|
-
m = Object.assign(m, proto);
|
|
5175
|
-
if (proto.singlePost) {
|
|
5176
|
-
m.singlePost = proto.singlePost.map(SinglePost.fromProto);
|
|
5177
|
-
}
|
|
5178
|
-
return m;
|
|
5179
|
-
}
|
|
5180
|
-
constructor(kwargs) {
|
|
5181
|
-
if (!kwargs) {
|
|
5182
|
-
return;
|
|
5183
|
-
}
|
|
5184
|
-
Object.assign(this, kwargs);
|
|
5185
|
-
}
|
|
5186
|
-
toApiJson() {
|
|
5187
|
-
const toReturn = {};
|
|
5188
|
-
if (typeof this.singlePost !== 'undefined' && this.singlePost !== null) {
|
|
5189
|
-
toReturn['singlePost'] = 'toApiJson' in this.singlePost ? this.singlePost.toApiJson() : this.singlePost;
|
|
5190
|
-
}
|
|
5191
|
-
return toReturn;
|
|
5192
|
-
}
|
|
5193
|
-
}
|
|
5194
|
-
class PostList {
|
|
5264
|
+
class Post {
|
|
5195
5265
|
static fromProto(proto) {
|
|
5196
|
-
let m = new
|
|
5266
|
+
let m = new Post();
|
|
5197
5267
|
m = Object.assign(m, proto);
|
|
5198
|
-
if (proto.
|
|
5199
|
-
m.
|
|
5268
|
+
if (proto.postContent) {
|
|
5269
|
+
m.postContent = proto.postContent.map(PostContent.fromProto);
|
|
5200
5270
|
}
|
|
5201
5271
|
return m;
|
|
5202
5272
|
}
|
|
@@ -5211,18 +5281,18 @@ class PostList {
|
|
|
5211
5281
|
if (typeof this.topic !== 'undefined') {
|
|
5212
5282
|
toReturn['topic'] = this.topic;
|
|
5213
5283
|
}
|
|
5214
|
-
if (typeof this.
|
|
5215
|
-
toReturn['
|
|
5284
|
+
if (typeof this.postContent !== 'undefined' && this.postContent !== null) {
|
|
5285
|
+
toReturn['postContent'] = 'toApiJson' in this.postContent ? this.postContent.toApiJson() : this.postContent;
|
|
5216
5286
|
}
|
|
5217
5287
|
return toReturn;
|
|
5218
5288
|
}
|
|
5219
5289
|
}
|
|
5220
|
-
class
|
|
5290
|
+
class PostContent {
|
|
5221
5291
|
static fromProto(proto) {
|
|
5222
|
-
let m = new
|
|
5292
|
+
let m = new PostContent();
|
|
5223
5293
|
m = Object.assign(m, proto);
|
|
5224
|
-
if (proto.
|
|
5225
|
-
m.
|
|
5294
|
+
if (proto.socialNetwork) {
|
|
5295
|
+
m.socialNetwork = enumStringToValue$5(Network, proto.socialNetwork);
|
|
5226
5296
|
}
|
|
5227
5297
|
return m;
|
|
5228
5298
|
}
|
|
@@ -5234,8 +5304,11 @@ class Posts {
|
|
|
5234
5304
|
}
|
|
5235
5305
|
toApiJson() {
|
|
5236
5306
|
const toReturn = {};
|
|
5237
|
-
if (typeof this.
|
|
5238
|
-
toReturn['
|
|
5307
|
+
if (typeof this.socialNetwork !== 'undefined') {
|
|
5308
|
+
toReturn['socialNetwork'] = this.socialNetwork;
|
|
5309
|
+
}
|
|
5310
|
+
if (typeof this.post !== 'undefined') {
|
|
5311
|
+
toReturn['post'] = this.post;
|
|
5239
5312
|
}
|
|
5240
5313
|
return toReturn;
|
|
5241
5314
|
}
|
|
@@ -5324,32 +5397,6 @@ class Response {
|
|
|
5324
5397
|
return toReturn;
|
|
5325
5398
|
}
|
|
5326
5399
|
}
|
|
5327
|
-
class SinglePost {
|
|
5328
|
-
static fromProto(proto) {
|
|
5329
|
-
let m = new SinglePost();
|
|
5330
|
-
m = Object.assign(m, proto);
|
|
5331
|
-
if (proto.socialNetwork) {
|
|
5332
|
-
m.socialNetwork = enumStringToValue$5(Network, proto.socialNetwork);
|
|
5333
|
-
}
|
|
5334
|
-
return m;
|
|
5335
|
-
}
|
|
5336
|
-
constructor(kwargs) {
|
|
5337
|
-
if (!kwargs) {
|
|
5338
|
-
return;
|
|
5339
|
-
}
|
|
5340
|
-
Object.assign(this, kwargs);
|
|
5341
|
-
}
|
|
5342
|
-
toApiJson() {
|
|
5343
|
-
const toReturn = {};
|
|
5344
|
-
if (typeof this.socialNetwork !== 'undefined') {
|
|
5345
|
-
toReturn['socialNetwork'] = this.socialNetwork;
|
|
5346
|
-
}
|
|
5347
|
-
if (typeof this.post !== 'undefined') {
|
|
5348
|
-
toReturn['post'] = this.post;
|
|
5349
|
-
}
|
|
5350
|
-
return toReturn;
|
|
5351
|
-
}
|
|
5352
|
-
}
|
|
5353
5400
|
class SocialPostOutput {
|
|
5354
5401
|
static fromProto(proto) {
|
|
5355
5402
|
let m = new SocialPostOutput();
|
|
@@ -7572,13 +7619,18 @@ class ContentGenerationApiService {
|
|
|
7572
7619
|
generateBlogPostCampaign(r) {
|
|
7573
7620
|
const request = (r.toApiJson) ? r : new GenerateBlogPostCampaignRequest(r);
|
|
7574
7621
|
return this.http.post(this._host + "/socialposts.v2.ContentGeneration/GenerateBlogPostCampaign", request.toApiJson(), this.apiOptions())
|
|
7575
|
-
.pipe(map(resp =>
|
|
7622
|
+
.pipe(map(resp => GeneratePostCampaignResponse.fromProto(resp)));
|
|
7576
7623
|
}
|
|
7577
7624
|
generatePostCampaign(r) {
|
|
7578
7625
|
const request = (r.toApiJson) ? r : new GeneratePostCampaignRequest(r);
|
|
7579
7626
|
return this.http.post(this._host + "/socialposts.v2.ContentGeneration/GeneratePostCampaign", request.toApiJson(), this.apiOptions())
|
|
7580
7627
|
.pipe(map(resp => GeneratePostCampaignResponse.fromProto(resp)));
|
|
7581
7628
|
}
|
|
7629
|
+
fetchLibraryImages(r) {
|
|
7630
|
+
const request = (r.toApiJson) ? r : new FetchLibraryImagesRequest(r);
|
|
7631
|
+
return this.http.post(this._host + "/socialposts.v2.ContentGeneration/FetchLibraryImages", request.toApiJson(), this.apiOptions())
|
|
7632
|
+
.pipe(map(resp => FetchLibraryImagesResponse.fromProto(resp)));
|
|
7633
|
+
}
|
|
7582
7634
|
}
|
|
7583
7635
|
ContentGenerationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7584
7636
|
ContentGenerationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, providedIn: 'root' });
|
|
@@ -8373,6 +8425,9 @@ class ContentGenerationService {
|
|
|
8373
8425
|
generateContentMetaData(r) {
|
|
8374
8426
|
return this.generateContentMetaData(r);
|
|
8375
8427
|
}
|
|
8428
|
+
fetchLibraryImages(r) {
|
|
8429
|
+
return this.fetchLibraryImages(r);
|
|
8430
|
+
}
|
|
8376
8431
|
}
|
|
8377
8432
|
ContentGenerationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationService, deps: [{ token: ContentGenerationApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8378
8433
|
ContentGenerationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationService, providedIn: 'root' });
|
|
@@ -8566,5 +8621,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8566
8621
|
* Generated bundle index. Do not edit.
|
|
8567
8622
|
*/
|
|
8568
8623
|
|
|
8569
|
-
export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, Author, AuthorsRequest, AuthorsResponse, BlogConnection, BlogConnectionService, BlogImage, BlogPost, BlogPostCampaign, BlogPostCustomization, BlogPostsService, BlogVideo, CallToAction, CallToActionCallToActionType, Campaign, Category, CategoryRequest, CategoryResponse, ChatBotService, ChatBotV2Service, ChatMessage, Collection, ContentGenerationService, ContentLength, CreateBlogConnectionRequest, CreateBlogConnectionResponse, CreateCampaignRequest, CreateCampaignResponse, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, CuratedContentPost, DateRangeFilter, DeleteBlogConnectionRequest, DeleteBlogPostRequest, DeleteCampaignRequest, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, EndChatRequest, Error, Event, FacebookPostStats, FieldMask, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest,
|
|
8624
|
+
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, FetchLibraryImagesRequest, FetchLibraryImagesResponse, FieldMask, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest, 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, ImageResponse, 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, 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, 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 };
|
|
8570
8625
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|