@vendasta/social-posts 5.31.1 → 5.32.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/blog-connection.api.service.mjs +7 -8
- package/esm2020/lib/_internal/blog-posts.api.service.mjs +44 -0
- package/esm2020/lib/_internal/chat-bot-v2.api.service.mjs +7 -8
- package/esm2020/lib/_internal/chat-bot.api.service.mjs +7 -8
- package/esm2020/lib/_internal/common-ai-instructions.api.service.mjs +7 -8
- package/esm2020/lib/_internal/content-generation.api.service.mjs +7 -8
- package/esm2020/lib/_internal/curated-content.api.service.mjs +7 -8
- package/esm2020/lib/_internal/enums/social-posts.enum.mjs +2 -1
- package/esm2020/lib/_internal/hash-tags.api.service.mjs +7 -8
- package/esm2020/lib/_internal/index.mjs +2 -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/interfaces/wordpress-plugin.interface.mjs +1 -1
- package/esm2020/lib/_internal/linkedin.api.service.mjs +7 -8
- package/esm2020/lib/_internal/multilocation-post.api.service.mjs +7 -8
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/social-posts.mjs +97 -1
- package/esm2020/lib/_internal/objects/wordpress-plugin.mjs +224 -1
- package/esm2020/lib/_internal/partner-social-posts.api.service.mjs +7 -8
- package/esm2020/lib/_internal/pixabay-images.api.service.mjs +7 -8
- package/esm2020/lib/_internal/post-performance.api.service.mjs +7 -8
- package/esm2020/lib/_internal/post-templates.api.service.mjs +7 -8
- package/esm2020/lib/_internal/social-posts-v2.api.service.mjs +7 -8
- package/esm2020/lib/_internal/social-posts.api.service.mjs +7 -8
- package/esm2020/lib/_internal/tenor-gifs.api.service.mjs +7 -8
- package/esm2020/lib/_internal/unsplash.api.service.mjs +7 -8
- package/esm2020/lib/_internal/wordpress-plugin.api.service.mjs +7 -8
- package/esm2020/lib/blog-posts.service.mjs +22 -0
- package/esm2020/lib/index.mjs +2 -1
- package/fesm2015/vendasta-social-posts.mjs +468 -94
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +468 -94
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/blog-connection.api.service.d.ts +3 -5
- package/lib/_internal/blog-posts.api.service.d.ts +15 -0
- package/lib/_internal/chat-bot-v2.api.service.d.ts +2 -5
- package/lib/_internal/chat-bot.api.service.d.ts +3 -5
- package/lib/_internal/common-ai-instructions.api.service.d.ts +2 -5
- package/lib/_internal/content-generation.api.service.d.ts +2 -5
- package/lib/_internal/curated-content.api.service.d.ts +2 -5
- package/lib/_internal/enums/social-posts.enum.d.ts +2 -1
- package/lib/_internal/hash-tags.api.service.d.ts +3 -5
- package/lib/_internal/index.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/social-posts.interface.d.ts +16 -0
- package/lib/_internal/interfaces/wordpress-plugin.interface.d.ts +43 -0
- package/lib/_internal/linkedin.api.service.d.ts +3 -5
- package/lib/_internal/multilocation-post.api.service.d.ts +3 -5
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/social-posts.d.ts +25 -0
- package/lib/_internal/objects/wordpress-plugin.d.ts +58 -0
- package/lib/_internal/partner-social-posts.api.service.d.ts +2 -5
- package/lib/_internal/pixabay-images.api.service.d.ts +2 -5
- package/lib/_internal/post-performance.api.service.d.ts +2 -5
- package/lib/_internal/post-templates.api.service.d.ts +3 -5
- package/lib/_internal/social-posts-v2.api.service.d.ts +3 -5
- package/lib/_internal/social-posts.api.service.d.ts +3 -5
- package/lib/_internal/tenor-gifs.api.service.d.ts +2 -5
- package/lib/_internal/unsplash.api.service.d.ts +2 -5
- package/lib/_internal/wordpress-plugin.api.service.d.ts +2 -5
- package/lib/blog-posts.service.d.ts +12 -0
- package/lib/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable } from '@angular/core';
|
|
2
|
+
import { Injectable, inject } from '@angular/core';
|
|
3
3
|
import { of } from 'rxjs';
|
|
4
|
-
import
|
|
5
|
-
import { HttpHeaders } from '@angular/common/http';
|
|
4
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
6
5
|
import { map } from 'rxjs/operators';
|
|
7
6
|
|
|
8
7
|
function enumStringToValue$g(enumRef, value) {
|
|
@@ -134,6 +133,7 @@ var SocialPostService;
|
|
|
134
133
|
SocialPostService[SocialPostService["CURATED_CONTENT"] = 7] = "CURATED_CONTENT";
|
|
135
134
|
SocialPostService[SocialPostService["YOUTUBE"] = 8] = "YOUTUBE";
|
|
136
135
|
SocialPostService[SocialPostService["TIKTOK"] = 9] = "TIKTOK";
|
|
136
|
+
SocialPostService[SocialPostService["WORDPRESS"] = 10] = "WORDPRESS";
|
|
137
137
|
})(SocialPostService || (SocialPostService = {}));
|
|
138
138
|
var TemplateType;
|
|
139
139
|
(function (TemplateType) {
|
|
@@ -256,6 +256,67 @@ function enumStringToValue$e(enumRef, value) {
|
|
|
256
256
|
}
|
|
257
257
|
return enumRef[value];
|
|
258
258
|
}
|
|
259
|
+
let Author$1 = class Author {
|
|
260
|
+
static fromProto(proto) {
|
|
261
|
+
let m = new Author();
|
|
262
|
+
m = Object.assign(m, proto);
|
|
263
|
+
if (proto.id) {
|
|
264
|
+
m.id = parseInt(proto.id, 10);
|
|
265
|
+
}
|
|
266
|
+
return m;
|
|
267
|
+
}
|
|
268
|
+
constructor(kwargs) {
|
|
269
|
+
if (!kwargs) {
|
|
270
|
+
return;
|
|
271
|
+
}
|
|
272
|
+
Object.assign(this, kwargs);
|
|
273
|
+
}
|
|
274
|
+
toApiJson() {
|
|
275
|
+
const toReturn = {};
|
|
276
|
+
if (typeof this.name !== 'undefined') {
|
|
277
|
+
toReturn['name'] = this.name;
|
|
278
|
+
}
|
|
279
|
+
if (typeof this.id !== 'undefined') {
|
|
280
|
+
toReturn['id'] = this.id;
|
|
281
|
+
}
|
|
282
|
+
return toReturn;
|
|
283
|
+
}
|
|
284
|
+
};
|
|
285
|
+
class BlogPostCustomization {
|
|
286
|
+
static fromProto(proto) {
|
|
287
|
+
let m = new BlogPostCustomization();
|
|
288
|
+
m = Object.assign(m, proto);
|
|
289
|
+
if (proto.author) {
|
|
290
|
+
m.author = Author$1.fromProto(proto.author);
|
|
291
|
+
}
|
|
292
|
+
if (proto.categories) {
|
|
293
|
+
m.categories = proto.categories.map(Category$1.fromProto);
|
|
294
|
+
}
|
|
295
|
+
return m;
|
|
296
|
+
}
|
|
297
|
+
constructor(kwargs) {
|
|
298
|
+
if (!kwargs) {
|
|
299
|
+
return;
|
|
300
|
+
}
|
|
301
|
+
Object.assign(this, kwargs);
|
|
302
|
+
}
|
|
303
|
+
toApiJson() {
|
|
304
|
+
const toReturn = {};
|
|
305
|
+
if (typeof this.siteType !== 'undefined') {
|
|
306
|
+
toReturn['siteType'] = this.siteType;
|
|
307
|
+
}
|
|
308
|
+
if (typeof this.author !== 'undefined' && this.author !== null) {
|
|
309
|
+
toReturn['author'] = 'toApiJson' in this.author ? this.author.toApiJson() : this.author;
|
|
310
|
+
}
|
|
311
|
+
if (typeof this.categories !== 'undefined' && this.categories !== null) {
|
|
312
|
+
toReturn['categories'] = 'toApiJson' in this.categories ? this.categories.toApiJson() : this.categories;
|
|
313
|
+
}
|
|
314
|
+
if (typeof this.tags !== 'undefined') {
|
|
315
|
+
toReturn['tags'] = this.tags;
|
|
316
|
+
}
|
|
317
|
+
return toReturn;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
259
320
|
class CallToAction {
|
|
260
321
|
static fromProto(proto) {
|
|
261
322
|
let m = new CallToAction();
|
|
@@ -282,6 +343,32 @@ class CallToAction {
|
|
|
282
343
|
return toReturn;
|
|
283
344
|
}
|
|
284
345
|
}
|
|
346
|
+
let Category$1 = class Category {
|
|
347
|
+
static fromProto(proto) {
|
|
348
|
+
let m = new Category();
|
|
349
|
+
m = Object.assign(m, proto);
|
|
350
|
+
if (proto.id) {
|
|
351
|
+
m.id = parseInt(proto.id, 10);
|
|
352
|
+
}
|
|
353
|
+
return m;
|
|
354
|
+
}
|
|
355
|
+
constructor(kwargs) {
|
|
356
|
+
if (!kwargs) {
|
|
357
|
+
return;
|
|
358
|
+
}
|
|
359
|
+
Object.assign(this, kwargs);
|
|
360
|
+
}
|
|
361
|
+
toApiJson() {
|
|
362
|
+
const toReturn = {};
|
|
363
|
+
if (typeof this.id !== 'undefined') {
|
|
364
|
+
toReturn['id'] = this.id;
|
|
365
|
+
}
|
|
366
|
+
if (typeof this.name !== 'undefined') {
|
|
367
|
+
toReturn['name'] = this.name;
|
|
368
|
+
}
|
|
369
|
+
return toReturn;
|
|
370
|
+
}
|
|
371
|
+
};
|
|
285
372
|
class Error {
|
|
286
373
|
static fromProto(proto) {
|
|
287
374
|
let m = new Error();
|
|
@@ -369,6 +456,9 @@ class MediaEntry {
|
|
|
369
456
|
if (typeof this.metaData !== 'undefined' && this.metaData !== null) {
|
|
370
457
|
toReturn['metaData'] = 'toApiJson' in this.metaData ? this.metaData.toApiJson() : this.metaData;
|
|
371
458
|
}
|
|
459
|
+
if (typeof this.mediaPath !== 'undefined') {
|
|
460
|
+
toReturn['mediaPath'] = this.mediaPath;
|
|
461
|
+
}
|
|
372
462
|
return toReturn;
|
|
373
463
|
}
|
|
374
464
|
}
|
|
@@ -597,6 +687,9 @@ class SocialPost {
|
|
|
597
687
|
if (proto.tiktokCustomization) {
|
|
598
688
|
m.tiktokCustomization = TikTokCustomization.fromProto(proto.tiktokCustomization);
|
|
599
689
|
}
|
|
690
|
+
if (proto.blogPostCustomization) {
|
|
691
|
+
m.blogPostCustomization = BlogPostCustomization.fromProto(proto.blogPostCustomization);
|
|
692
|
+
}
|
|
600
693
|
return m;
|
|
601
694
|
}
|
|
602
695
|
constructor(kwargs) {
|
|
@@ -703,6 +796,9 @@ class SocialPost {
|
|
|
703
796
|
if (typeof this.tiktokCustomization !== 'undefined' && this.tiktokCustomization !== null) {
|
|
704
797
|
toReturn['tiktokCustomization'] = 'toApiJson' in this.tiktokCustomization ? this.tiktokCustomization.toApiJson() : this.tiktokCustomization;
|
|
705
798
|
}
|
|
799
|
+
if (typeof this.blogPostCustomization !== 'undefined' && this.blogPostCustomization !== null) {
|
|
800
|
+
toReturn['blogPostCustomization'] = 'toApiJson' in this.blogPostCustomization ? this.blogPostCustomization.toApiJson() : this.blogPostCustomization;
|
|
801
|
+
}
|
|
706
802
|
return toReturn;
|
|
707
803
|
}
|
|
708
804
|
}
|
|
@@ -5751,6 +5847,131 @@ class BlogImage {
|
|
|
5751
5847
|
return toReturn;
|
|
5752
5848
|
}
|
|
5753
5849
|
}
|
|
5850
|
+
class BlogPost {
|
|
5851
|
+
static fromProto(proto) {
|
|
5852
|
+
let m = new BlogPost();
|
|
5853
|
+
m = Object.assign(m, proto);
|
|
5854
|
+
if (proto.images) {
|
|
5855
|
+
m.images = proto.images.map(MediaProperty.fromProto);
|
|
5856
|
+
}
|
|
5857
|
+
if (proto.video) {
|
|
5858
|
+
m.video = proto.video.map(MediaProperty.fromProto);
|
|
5859
|
+
}
|
|
5860
|
+
if (proto.author) {
|
|
5861
|
+
m.author = Author.fromProto(proto.author);
|
|
5862
|
+
}
|
|
5863
|
+
if (proto.categories) {
|
|
5864
|
+
m.categories = proto.categories.map(Category.fromProto);
|
|
5865
|
+
}
|
|
5866
|
+
if (proto.postDateTime) {
|
|
5867
|
+
m.postDateTime = new Date(proto.postDateTime);
|
|
5868
|
+
}
|
|
5869
|
+
if (proto.postedDateTime) {
|
|
5870
|
+
m.postedDateTime = new Date(proto.postedDateTime);
|
|
5871
|
+
}
|
|
5872
|
+
if (proto.pageViews) {
|
|
5873
|
+
m.pageViews = parseInt(proto.pageViews, 10);
|
|
5874
|
+
}
|
|
5875
|
+
if (proto.commentsCount) {
|
|
5876
|
+
m.commentsCount = parseInt(proto.commentsCount, 10);
|
|
5877
|
+
}
|
|
5878
|
+
if (proto.created) {
|
|
5879
|
+
m.created = new Date(proto.created);
|
|
5880
|
+
}
|
|
5881
|
+
if (proto.updated) {
|
|
5882
|
+
m.updated = new Date(proto.updated);
|
|
5883
|
+
}
|
|
5884
|
+
if (proto.deleted) {
|
|
5885
|
+
m.deleted = new Date(proto.deleted);
|
|
5886
|
+
}
|
|
5887
|
+
return m;
|
|
5888
|
+
}
|
|
5889
|
+
constructor(kwargs) {
|
|
5890
|
+
if (!kwargs) {
|
|
5891
|
+
return;
|
|
5892
|
+
}
|
|
5893
|
+
Object.assign(this, kwargs);
|
|
5894
|
+
}
|
|
5895
|
+
toApiJson() {
|
|
5896
|
+
const toReturn = {};
|
|
5897
|
+
if (typeof this.internalPostId !== 'undefined') {
|
|
5898
|
+
toReturn['internalPostId'] = this.internalPostId;
|
|
5899
|
+
}
|
|
5900
|
+
if (typeof this.socialServiceId !== 'undefined') {
|
|
5901
|
+
toReturn['socialServiceId'] = this.socialServiceId;
|
|
5902
|
+
}
|
|
5903
|
+
if (typeof this.businessId !== 'undefined') {
|
|
5904
|
+
toReturn['businessId'] = this.businessId;
|
|
5905
|
+
}
|
|
5906
|
+
if (typeof this.partnerId !== 'undefined') {
|
|
5907
|
+
toReturn['partnerId'] = this.partnerId;
|
|
5908
|
+
}
|
|
5909
|
+
if (typeof this.postId !== 'undefined') {
|
|
5910
|
+
toReturn['postId'] = this.postId;
|
|
5911
|
+
}
|
|
5912
|
+
if (typeof this.title !== 'undefined') {
|
|
5913
|
+
toReturn['title'] = this.title;
|
|
5914
|
+
}
|
|
5915
|
+
if (typeof this.content !== 'undefined') {
|
|
5916
|
+
toReturn['content'] = this.content;
|
|
5917
|
+
}
|
|
5918
|
+
if (typeof this.images !== 'undefined' && this.images !== null) {
|
|
5919
|
+
toReturn['images'] = 'toApiJson' in this.images ? this.images.toApiJson() : this.images;
|
|
5920
|
+
}
|
|
5921
|
+
if (typeof this.video !== 'undefined' && this.video !== null) {
|
|
5922
|
+
toReturn['video'] = 'toApiJson' in this.video ? this.video.toApiJson() : this.video;
|
|
5923
|
+
}
|
|
5924
|
+
if (typeof this.permalink !== 'undefined') {
|
|
5925
|
+
toReturn['permalink'] = this.permalink;
|
|
5926
|
+
}
|
|
5927
|
+
if (typeof this.siteType !== 'undefined') {
|
|
5928
|
+
toReturn['siteType'] = this.siteType;
|
|
5929
|
+
}
|
|
5930
|
+
if (typeof this.author !== 'undefined' && this.author !== null) {
|
|
5931
|
+
toReturn['author'] = 'toApiJson' in this.author ? this.author.toApiJson() : this.author;
|
|
5932
|
+
}
|
|
5933
|
+
if (typeof this.categories !== 'undefined' && this.categories !== null) {
|
|
5934
|
+
toReturn['categories'] = 'toApiJson' in this.categories ? this.categories.toApiJson() : this.categories;
|
|
5935
|
+
}
|
|
5936
|
+
if (typeof this.tags !== 'undefined') {
|
|
5937
|
+
toReturn['tags'] = this.tags;
|
|
5938
|
+
}
|
|
5939
|
+
if (typeof this.postTags !== 'undefined') {
|
|
5940
|
+
toReturn['postTags'] = this.postTags;
|
|
5941
|
+
}
|
|
5942
|
+
if (typeof this.error !== 'undefined') {
|
|
5943
|
+
toReturn['error'] = this.error;
|
|
5944
|
+
}
|
|
5945
|
+
if (typeof this.postDateTime !== 'undefined' && this.postDateTime !== null) {
|
|
5946
|
+
toReturn['postDateTime'] = 'toApiJson' in this.postDateTime ? this.postDateTime.toApiJson() : this.postDateTime;
|
|
5947
|
+
}
|
|
5948
|
+
if (typeof this.postedDateTime !== 'undefined' && this.postedDateTime !== null) {
|
|
5949
|
+
toReturn['postedDateTime'] = 'toApiJson' in this.postedDateTime ? this.postedDateTime.toApiJson() : this.postedDateTime;
|
|
5950
|
+
}
|
|
5951
|
+
if (typeof this.userId !== 'undefined') {
|
|
5952
|
+
toReturn['userId'] = this.userId;
|
|
5953
|
+
}
|
|
5954
|
+
if (typeof this.userName !== 'undefined') {
|
|
5955
|
+
toReturn['userName'] = this.userName;
|
|
5956
|
+
}
|
|
5957
|
+
if (typeof this.pageViews !== 'undefined') {
|
|
5958
|
+
toReturn['pageViews'] = this.pageViews;
|
|
5959
|
+
}
|
|
5960
|
+
if (typeof this.commentsCount !== 'undefined') {
|
|
5961
|
+
toReturn['commentsCount'] = this.commentsCount;
|
|
5962
|
+
}
|
|
5963
|
+
if (typeof this.created !== 'undefined' && this.created !== null) {
|
|
5964
|
+
toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;
|
|
5965
|
+
}
|
|
5966
|
+
if (typeof this.updated !== 'undefined' && this.updated !== null) {
|
|
5967
|
+
toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
|
|
5968
|
+
}
|
|
5969
|
+
if (typeof this.deleted !== 'undefined' && this.deleted !== null) {
|
|
5970
|
+
toReturn['deleted'] = 'toApiJson' in this.deleted ? this.deleted.toApiJson() : this.deleted;
|
|
5971
|
+
}
|
|
5972
|
+
return toReturn;
|
|
5973
|
+
}
|
|
5974
|
+
}
|
|
5754
5975
|
class BlogVideo {
|
|
5755
5976
|
static fromProto(proto) {
|
|
5756
5977
|
let m = new BlogVideo();
|
|
@@ -5846,6 +6067,81 @@ class CategoryResponse {
|
|
|
5846
6067
|
return toReturn;
|
|
5847
6068
|
}
|
|
5848
6069
|
}
|
|
6070
|
+
class GetMultiBlogPostsRequest {
|
|
6071
|
+
static fromProto(proto) {
|
|
6072
|
+
let m = new GetMultiBlogPostsRequest();
|
|
6073
|
+
m = Object.assign(m, proto);
|
|
6074
|
+
return m;
|
|
6075
|
+
}
|
|
6076
|
+
constructor(kwargs) {
|
|
6077
|
+
if (!kwargs) {
|
|
6078
|
+
return;
|
|
6079
|
+
}
|
|
6080
|
+
Object.assign(this, kwargs);
|
|
6081
|
+
}
|
|
6082
|
+
toApiJson() {
|
|
6083
|
+
const toReturn = {};
|
|
6084
|
+
if (typeof this.partnerId !== 'undefined') {
|
|
6085
|
+
toReturn['partnerId'] = this.partnerId;
|
|
6086
|
+
}
|
|
6087
|
+
if (typeof this.businessId !== 'undefined') {
|
|
6088
|
+
toReturn['businessId'] = this.businessId;
|
|
6089
|
+
}
|
|
6090
|
+
if (typeof this.socialServiceId !== 'undefined') {
|
|
6091
|
+
toReturn['socialServiceId'] = this.socialServiceId;
|
|
6092
|
+
}
|
|
6093
|
+
if (typeof this.blogPostId !== 'undefined') {
|
|
6094
|
+
toReturn['blogPostId'] = this.blogPostId;
|
|
6095
|
+
}
|
|
6096
|
+
return toReturn;
|
|
6097
|
+
}
|
|
6098
|
+
}
|
|
6099
|
+
class GetMultiBlogPostsResponse {
|
|
6100
|
+
static fromProto(proto) {
|
|
6101
|
+
let m = new GetMultiBlogPostsResponse();
|
|
6102
|
+
m = Object.assign(m, proto);
|
|
6103
|
+
if (proto.blogPosts) {
|
|
6104
|
+
m.blogPosts = proto.blogPosts.map(BlogPost.fromProto);
|
|
6105
|
+
}
|
|
6106
|
+
return m;
|
|
6107
|
+
}
|
|
6108
|
+
constructor(kwargs) {
|
|
6109
|
+
if (!kwargs) {
|
|
6110
|
+
return;
|
|
6111
|
+
}
|
|
6112
|
+
Object.assign(this, kwargs);
|
|
6113
|
+
}
|
|
6114
|
+
toApiJson() {
|
|
6115
|
+
const toReturn = {};
|
|
6116
|
+
if (typeof this.blogPosts !== 'undefined' && this.blogPosts !== null) {
|
|
6117
|
+
toReturn['blogPosts'] = 'toApiJson' in this.blogPosts ? this.blogPosts.toApiJson() : this.blogPosts;
|
|
6118
|
+
}
|
|
6119
|
+
return toReturn;
|
|
6120
|
+
}
|
|
6121
|
+
}
|
|
6122
|
+
class MediaProperty {
|
|
6123
|
+
static fromProto(proto) {
|
|
6124
|
+
let m = new MediaProperty();
|
|
6125
|
+
m = Object.assign(m, proto);
|
|
6126
|
+
return m;
|
|
6127
|
+
}
|
|
6128
|
+
constructor(kwargs) {
|
|
6129
|
+
if (!kwargs) {
|
|
6130
|
+
return;
|
|
6131
|
+
}
|
|
6132
|
+
Object.assign(this, kwargs);
|
|
6133
|
+
}
|
|
6134
|
+
toApiJson() {
|
|
6135
|
+
const toReturn = {};
|
|
6136
|
+
if (typeof this.path !== 'undefined') {
|
|
6137
|
+
toReturn['path'] = this.path;
|
|
6138
|
+
}
|
|
6139
|
+
if (typeof this.publicUrl !== 'undefined') {
|
|
6140
|
+
toReturn['publicUrl'] = this.publicUrl;
|
|
6141
|
+
}
|
|
6142
|
+
return toReturn;
|
|
6143
|
+
}
|
|
6144
|
+
}
|
|
5849
6145
|
class PublishPostRequest {
|
|
5850
6146
|
static fromProto(proto) {
|
|
5851
6147
|
let m = new PublishPostRequest();
|
|
@@ -6001,6 +6297,29 @@ class StatusResponse {
|
|
|
6001
6297
|
return toReturn;
|
|
6002
6298
|
}
|
|
6003
6299
|
}
|
|
6300
|
+
class UpdateBlogPostRequest {
|
|
6301
|
+
static fromProto(proto) {
|
|
6302
|
+
let m = new UpdateBlogPostRequest();
|
|
6303
|
+
m = Object.assign(m, proto);
|
|
6304
|
+
if (proto.blogPost) {
|
|
6305
|
+
m.blogPost = BlogPost.fromProto(proto.blogPost);
|
|
6306
|
+
}
|
|
6307
|
+
return m;
|
|
6308
|
+
}
|
|
6309
|
+
constructor(kwargs) {
|
|
6310
|
+
if (!kwargs) {
|
|
6311
|
+
return;
|
|
6312
|
+
}
|
|
6313
|
+
Object.assign(this, kwargs);
|
|
6314
|
+
}
|
|
6315
|
+
toApiJson() {
|
|
6316
|
+
const toReturn = {};
|
|
6317
|
+
if (typeof this.blogPost !== 'undefined' && this.blogPost !== null) {
|
|
6318
|
+
toReturn['blogPost'] = 'toApiJson' in this.blogPost ? this.blogPost.toApiJson() : this.blogPost;
|
|
6319
|
+
}
|
|
6320
|
+
return toReturn;
|
|
6321
|
+
}
|
|
6322
|
+
}
|
|
6004
6323
|
|
|
6005
6324
|
// *********************************
|
|
6006
6325
|
// Code generated by sdkgen
|
|
@@ -6039,9 +6358,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6039
6358
|
// API Service.
|
|
6040
6359
|
// *********************************
|
|
6041
6360
|
class SocialPostsApiService {
|
|
6042
|
-
constructor(
|
|
6043
|
-
this.
|
|
6044
|
-
this.
|
|
6361
|
+
constructor() {
|
|
6362
|
+
this.hostService = inject(HostService);
|
|
6363
|
+
this.http = inject(HttpClient);
|
|
6045
6364
|
this._host = this.hostService.hostWithScheme;
|
|
6046
6365
|
}
|
|
6047
6366
|
apiOptions() {
|
|
@@ -6092,12 +6411,12 @@ class SocialPostsApiService {
|
|
|
6092
6411
|
.pipe(map(resp => SuggestMessageResponse.fromProto(resp)));
|
|
6093
6412
|
}
|
|
6094
6413
|
}
|
|
6095
|
-
SocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, deps: [
|
|
6414
|
+
SocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6096
6415
|
SocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, providedIn: 'root' });
|
|
6097
6416
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, decorators: [{
|
|
6098
6417
|
type: Injectable,
|
|
6099
6418
|
args: [{ providedIn: 'root' }]
|
|
6100
|
-
}]
|
|
6419
|
+
}] });
|
|
6101
6420
|
|
|
6102
6421
|
class SocialPostsService {
|
|
6103
6422
|
constructor(socialPostsApiService) {
|
|
@@ -6147,9 +6466,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6147
6466
|
// API Service.
|
|
6148
6467
|
// *********************************
|
|
6149
6468
|
class PostTemplatesApiService {
|
|
6150
|
-
constructor(
|
|
6151
|
-
this.
|
|
6152
|
-
this.
|
|
6469
|
+
constructor() {
|
|
6470
|
+
this.hostService = inject(HostService);
|
|
6471
|
+
this.http = inject(HttpClient);
|
|
6153
6472
|
this._host = this.hostService.hostWithScheme;
|
|
6154
6473
|
}
|
|
6155
6474
|
apiOptions() {
|
|
@@ -6184,12 +6503,12 @@ class PostTemplatesApiService {
|
|
|
6184
6503
|
return this.http.post(this._host + "/socialposts.v1.PostTemplates/DeletePostTemplate", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
6185
6504
|
}
|
|
6186
6505
|
}
|
|
6187
|
-
PostTemplatesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, deps: [
|
|
6506
|
+
PostTemplatesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6188
6507
|
PostTemplatesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, providedIn: 'root' });
|
|
6189
6508
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, decorators: [{
|
|
6190
6509
|
type: Injectable,
|
|
6191
6510
|
args: [{ providedIn: 'root' }]
|
|
6192
|
-
}]
|
|
6511
|
+
}] });
|
|
6193
6512
|
|
|
6194
6513
|
// *********************************
|
|
6195
6514
|
// Code generated by sdkgen
|
|
@@ -6198,9 +6517,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6198
6517
|
// API Service.
|
|
6199
6518
|
// *********************************
|
|
6200
6519
|
class BlogConnectionApiService {
|
|
6201
|
-
constructor(
|
|
6202
|
-
this.
|
|
6203
|
-
this.
|
|
6520
|
+
constructor() {
|
|
6521
|
+
this.hostService = inject(HostService);
|
|
6522
|
+
this.http = inject(HttpClient);
|
|
6204
6523
|
this._host = this.hostService.hostWithScheme;
|
|
6205
6524
|
}
|
|
6206
6525
|
apiOptions() {
|
|
@@ -6235,12 +6554,49 @@ class BlogConnectionApiService {
|
|
|
6235
6554
|
return this.http.post(this._host + "/socialposts.v2.BlogConnectionService/Delete", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
6236
6555
|
}
|
|
6237
6556
|
}
|
|
6238
|
-
BlogConnectionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, deps: [
|
|
6557
|
+
BlogConnectionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6239
6558
|
BlogConnectionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, providedIn: 'root' });
|
|
6240
6559
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, decorators: [{
|
|
6241
6560
|
type: Injectable,
|
|
6242
6561
|
args: [{ providedIn: 'root' }]
|
|
6243
|
-
}]
|
|
6562
|
+
}] });
|
|
6563
|
+
|
|
6564
|
+
// *********************************
|
|
6565
|
+
// Code generated by sdkgen
|
|
6566
|
+
// DO NOT EDIT!.
|
|
6567
|
+
//
|
|
6568
|
+
// API Service.
|
|
6569
|
+
// *********************************
|
|
6570
|
+
class BlogPostsApiService {
|
|
6571
|
+
constructor() {
|
|
6572
|
+
this.hostService = inject(HostService);
|
|
6573
|
+
this.http = inject(HttpClient);
|
|
6574
|
+
this._host = this.hostService.hostWithScheme;
|
|
6575
|
+
}
|
|
6576
|
+
apiOptions() {
|
|
6577
|
+
return {
|
|
6578
|
+
headers: new HttpHeaders({
|
|
6579
|
+
'Content-Type': 'application/json'
|
|
6580
|
+
}),
|
|
6581
|
+
withCredentials: true
|
|
6582
|
+
};
|
|
6583
|
+
}
|
|
6584
|
+
getMultiBlogPosts(r) {
|
|
6585
|
+
const request = (r.toApiJson) ? r : new GetMultiBlogPostsRequest(r);
|
|
6586
|
+
return this.http.post(this._host + "/socialposts.v2.BlogPostsService/GetMultiBlogPosts", request.toApiJson(), this.apiOptions())
|
|
6587
|
+
.pipe(map(resp => GetMultiBlogPostsResponse.fromProto(resp)));
|
|
6588
|
+
}
|
|
6589
|
+
updateBlogPost(r) {
|
|
6590
|
+
const request = (r.toApiJson) ? r : new UpdateBlogPostRequest(r);
|
|
6591
|
+
return this.http.post(this._host + "/socialposts.v2.BlogPostsService/UpdateBlogPost", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
6592
|
+
}
|
|
6593
|
+
}
|
|
6594
|
+
BlogPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6595
|
+
BlogPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsApiService, providedIn: 'root' });
|
|
6596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsApiService, decorators: [{
|
|
6597
|
+
type: Injectable,
|
|
6598
|
+
args: [{ providedIn: 'root' }]
|
|
6599
|
+
}] });
|
|
6244
6600
|
|
|
6245
6601
|
// *********************************
|
|
6246
6602
|
// Code generated by sdkgen
|
|
@@ -6249,9 +6605,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6249
6605
|
// API Service.
|
|
6250
6606
|
// *********************************
|
|
6251
6607
|
class ChatBotApiService {
|
|
6252
|
-
constructor(
|
|
6253
|
-
this.
|
|
6254
|
-
this.
|
|
6608
|
+
constructor() {
|
|
6609
|
+
this.hostService = inject(HostService);
|
|
6610
|
+
this.http = inject(HttpClient);
|
|
6255
6611
|
this._host = this.hostService.hostWithScheme;
|
|
6256
6612
|
}
|
|
6257
6613
|
apiOptions() {
|
|
@@ -6277,12 +6633,12 @@ class ChatBotApiService {
|
|
|
6277
6633
|
return this.http.post(this._host + "/socialposts.v2.ChatBot/EndChat", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
6278
6634
|
}
|
|
6279
6635
|
}
|
|
6280
|
-
ChatBotApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, deps: [
|
|
6636
|
+
ChatBotApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6281
6637
|
ChatBotApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, providedIn: 'root' });
|
|
6282
6638
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, decorators: [{
|
|
6283
6639
|
type: Injectable,
|
|
6284
6640
|
args: [{ providedIn: 'root' }]
|
|
6285
|
-
}]
|
|
6641
|
+
}] });
|
|
6286
6642
|
|
|
6287
6643
|
// *********************************
|
|
6288
6644
|
// Code generated by sdkgen
|
|
@@ -6291,9 +6647,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6291
6647
|
// API Service.
|
|
6292
6648
|
// *********************************
|
|
6293
6649
|
class ChatBotV2ApiService {
|
|
6294
|
-
constructor(
|
|
6295
|
-
this.
|
|
6296
|
-
this.
|
|
6650
|
+
constructor() {
|
|
6651
|
+
this.hostService = inject(HostService);
|
|
6652
|
+
this.http = inject(HttpClient);
|
|
6297
6653
|
this._host = this.hostService.hostWithScheme;
|
|
6298
6654
|
}
|
|
6299
6655
|
apiOptions() {
|
|
@@ -6310,12 +6666,12 @@ class ChatBotV2ApiService {
|
|
|
6310
6666
|
.pipe(map(resp => SendMessageV2Response.fromProto(resp)));
|
|
6311
6667
|
}
|
|
6312
6668
|
}
|
|
6313
|
-
ChatBotV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, deps: [
|
|
6669
|
+
ChatBotV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6314
6670
|
ChatBotV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, providedIn: 'root' });
|
|
6315
6671
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, decorators: [{
|
|
6316
6672
|
type: Injectable,
|
|
6317
6673
|
args: [{ providedIn: 'root' }]
|
|
6318
|
-
}]
|
|
6674
|
+
}] });
|
|
6319
6675
|
|
|
6320
6676
|
// *********************************
|
|
6321
6677
|
// Code generated by sdkgen
|
|
@@ -6324,9 +6680,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6324
6680
|
// API Service.
|
|
6325
6681
|
// *********************************
|
|
6326
6682
|
class CommonAiInstructionsApiService {
|
|
6327
|
-
constructor(
|
|
6328
|
-
this.
|
|
6329
|
-
this.
|
|
6683
|
+
constructor() {
|
|
6684
|
+
this.hostService = inject(HostService);
|
|
6685
|
+
this.http = inject(HttpClient);
|
|
6330
6686
|
this._host = this.hostService.hostWithScheme;
|
|
6331
6687
|
}
|
|
6332
6688
|
apiOptions() {
|
|
@@ -6353,12 +6709,12 @@ class CommonAiInstructionsApiService {
|
|
|
6353
6709
|
.pipe(map(resp => GetCommonAiInstructionsResponse.fromProto(resp)));
|
|
6354
6710
|
}
|
|
6355
6711
|
}
|
|
6356
|
-
CommonAiInstructionsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, deps: [
|
|
6712
|
+
CommonAiInstructionsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6357
6713
|
CommonAiInstructionsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, providedIn: 'root' });
|
|
6358
6714
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, decorators: [{
|
|
6359
6715
|
type: Injectable,
|
|
6360
6716
|
args: [{ providedIn: 'root' }]
|
|
6361
|
-
}]
|
|
6717
|
+
}] });
|
|
6362
6718
|
|
|
6363
6719
|
// *********************************
|
|
6364
6720
|
// Code generated by sdkgen
|
|
@@ -6367,9 +6723,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6367
6723
|
// API Service.
|
|
6368
6724
|
// *********************************
|
|
6369
6725
|
class ContentGenerationApiService {
|
|
6370
|
-
constructor(
|
|
6371
|
-
this.
|
|
6372
|
-
this.
|
|
6726
|
+
constructor() {
|
|
6727
|
+
this.hostService = inject(HostService);
|
|
6728
|
+
this.http = inject(HttpClient);
|
|
6373
6729
|
this._host = this.hostService.hostWithScheme;
|
|
6374
6730
|
}
|
|
6375
6731
|
apiOptions() {
|
|
@@ -6391,12 +6747,12 @@ class ContentGenerationApiService {
|
|
|
6391
6747
|
.pipe(map(resp => GenerateAiResponse.fromProto(resp)));
|
|
6392
6748
|
}
|
|
6393
6749
|
}
|
|
6394
|
-
ContentGenerationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, deps: [
|
|
6750
|
+
ContentGenerationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6395
6751
|
ContentGenerationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, providedIn: 'root' });
|
|
6396
6752
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, decorators: [{
|
|
6397
6753
|
type: Injectable,
|
|
6398
6754
|
args: [{ providedIn: 'root' }]
|
|
6399
|
-
}]
|
|
6755
|
+
}] });
|
|
6400
6756
|
|
|
6401
6757
|
// *********************************
|
|
6402
6758
|
// Code generated by sdkgen
|
|
@@ -6405,9 +6761,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6405
6761
|
// API Service.
|
|
6406
6762
|
// *********************************
|
|
6407
6763
|
class CuratedContentApiService {
|
|
6408
|
-
constructor(
|
|
6409
|
-
this.
|
|
6410
|
-
this.
|
|
6764
|
+
constructor() {
|
|
6765
|
+
this.hostService = inject(HostService);
|
|
6766
|
+
this.http = inject(HttpClient);
|
|
6411
6767
|
this._host = this.hostService.hostWithScheme;
|
|
6412
6768
|
}
|
|
6413
6769
|
apiOptions() {
|
|
@@ -6424,12 +6780,12 @@ class CuratedContentApiService {
|
|
|
6424
6780
|
.pipe(map(resp => ListCuratedContentResponse.fromProto(resp)));
|
|
6425
6781
|
}
|
|
6426
6782
|
}
|
|
6427
|
-
CuratedContentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, deps: [
|
|
6783
|
+
CuratedContentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6428
6784
|
CuratedContentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, providedIn: 'root' });
|
|
6429
6785
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, decorators: [{
|
|
6430
6786
|
type: Injectable,
|
|
6431
6787
|
args: [{ providedIn: 'root' }]
|
|
6432
|
-
}]
|
|
6788
|
+
}] });
|
|
6433
6789
|
|
|
6434
6790
|
// *********************************
|
|
6435
6791
|
// Code generated by sdkgen
|
|
@@ -6438,9 +6794,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6438
6794
|
// API Service.
|
|
6439
6795
|
// *********************************
|
|
6440
6796
|
class HashTagsApiService {
|
|
6441
|
-
constructor(
|
|
6442
|
-
this.
|
|
6443
|
-
this.
|
|
6797
|
+
constructor() {
|
|
6798
|
+
this.hostService = inject(HostService);
|
|
6799
|
+
this.http = inject(HttpClient);
|
|
6444
6800
|
this._host = this.hostService.hostWithScheme;
|
|
6445
6801
|
}
|
|
6446
6802
|
apiOptions() {
|
|
@@ -6465,12 +6821,12 @@ class HashTagsApiService {
|
|
|
6465
6821
|
.pipe(map(resp => SearchHashtagResponse.fromProto(resp)));
|
|
6466
6822
|
}
|
|
6467
6823
|
}
|
|
6468
|
-
HashTagsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, deps: [
|
|
6824
|
+
HashTagsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6469
6825
|
HashTagsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, providedIn: 'root' });
|
|
6470
6826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, decorators: [{
|
|
6471
6827
|
type: Injectable,
|
|
6472
6828
|
args: [{ providedIn: 'root' }]
|
|
6473
|
-
}]
|
|
6829
|
+
}] });
|
|
6474
6830
|
|
|
6475
6831
|
// *********************************
|
|
6476
6832
|
// Code generated by sdkgen
|
|
@@ -6479,9 +6835,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6479
6835
|
// API Service.
|
|
6480
6836
|
// *********************************
|
|
6481
6837
|
class LinkedinApiService {
|
|
6482
|
-
constructor(
|
|
6483
|
-
this.
|
|
6484
|
-
this.
|
|
6838
|
+
constructor() {
|
|
6839
|
+
this.hostService = inject(HostService);
|
|
6840
|
+
this.http = inject(HttpClient);
|
|
6485
6841
|
this._host = this.hostService.hostWithScheme;
|
|
6486
6842
|
}
|
|
6487
6843
|
apiOptions() {
|
|
@@ -6502,12 +6858,12 @@ class LinkedinApiService {
|
|
|
6502
6858
|
.pipe(map(resp => MediaUploadResponse.fromProto(resp)));
|
|
6503
6859
|
}
|
|
6504
6860
|
}
|
|
6505
|
-
LinkedinApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, deps: [
|
|
6861
|
+
LinkedinApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6506
6862
|
LinkedinApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, providedIn: 'root' });
|
|
6507
6863
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, decorators: [{
|
|
6508
6864
|
type: Injectable,
|
|
6509
6865
|
args: [{ providedIn: 'root' }]
|
|
6510
|
-
}]
|
|
6866
|
+
}] });
|
|
6511
6867
|
|
|
6512
6868
|
// *********************************
|
|
6513
6869
|
// Code generated by sdkgen
|
|
@@ -6516,9 +6872,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6516
6872
|
// API Service.
|
|
6517
6873
|
// *********************************
|
|
6518
6874
|
class MultilocationPostApiService {
|
|
6519
|
-
constructor(
|
|
6520
|
-
this.
|
|
6521
|
-
this.
|
|
6875
|
+
constructor() {
|
|
6876
|
+
this.hostService = inject(HostService);
|
|
6877
|
+
this.http = inject(HttpClient);
|
|
6522
6878
|
this._host = this.hostService.hostWithScheme;
|
|
6523
6879
|
}
|
|
6524
6880
|
apiOptions() {
|
|
@@ -6558,12 +6914,12 @@ class MultilocationPostApiService {
|
|
|
6558
6914
|
.pipe(map(resp => GetMultilocationPostResponse.fromProto(resp)));
|
|
6559
6915
|
}
|
|
6560
6916
|
}
|
|
6561
|
-
MultilocationPostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, deps: [
|
|
6917
|
+
MultilocationPostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6562
6918
|
MultilocationPostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, providedIn: 'root' });
|
|
6563
6919
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, decorators: [{
|
|
6564
6920
|
type: Injectable,
|
|
6565
6921
|
args: [{ providedIn: 'root' }]
|
|
6566
|
-
}]
|
|
6922
|
+
}] });
|
|
6567
6923
|
|
|
6568
6924
|
// *********************************
|
|
6569
6925
|
// Code generated by sdkgen
|
|
@@ -6572,9 +6928,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6572
6928
|
// API Service.
|
|
6573
6929
|
// *********************************
|
|
6574
6930
|
class PartnerSocialPostsApiService {
|
|
6575
|
-
constructor(
|
|
6576
|
-
this.
|
|
6577
|
-
this.
|
|
6931
|
+
constructor() {
|
|
6932
|
+
this.hostService = inject(HostService);
|
|
6933
|
+
this.http = inject(HttpClient);
|
|
6578
6934
|
this._host = this.hostService.hostWithScheme;
|
|
6579
6935
|
}
|
|
6580
6936
|
apiOptions() {
|
|
@@ -6596,12 +6952,12 @@ class PartnerSocialPostsApiService {
|
|
|
6596
6952
|
.pipe(map(resp => PartnerListScheduledPostsResponse.fromProto(resp)));
|
|
6597
6953
|
}
|
|
6598
6954
|
}
|
|
6599
|
-
PartnerSocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, deps: [
|
|
6955
|
+
PartnerSocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6600
6956
|
PartnerSocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, providedIn: 'root' });
|
|
6601
6957
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, decorators: [{
|
|
6602
6958
|
type: Injectable,
|
|
6603
6959
|
args: [{ providedIn: 'root' }]
|
|
6604
|
-
}]
|
|
6960
|
+
}] });
|
|
6605
6961
|
|
|
6606
6962
|
// *********************************
|
|
6607
6963
|
// Code generated by sdkgen
|
|
@@ -6610,9 +6966,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6610
6966
|
// API Service.
|
|
6611
6967
|
// *********************************
|
|
6612
6968
|
class PixabayImagesApiService {
|
|
6613
|
-
constructor(
|
|
6614
|
-
this.
|
|
6615
|
-
this.
|
|
6969
|
+
constructor() {
|
|
6970
|
+
this.hostService = inject(HostService);
|
|
6971
|
+
this.http = inject(HttpClient);
|
|
6616
6972
|
this._host = this.hostService.hostWithScheme;
|
|
6617
6973
|
}
|
|
6618
6974
|
apiOptions() {
|
|
@@ -6629,12 +6985,12 @@ class PixabayImagesApiService {
|
|
|
6629
6985
|
.pipe(map(resp => ListPixabayImagesResponse.fromProto(resp)));
|
|
6630
6986
|
}
|
|
6631
6987
|
}
|
|
6632
|
-
PixabayImagesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, deps: [
|
|
6988
|
+
PixabayImagesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6633
6989
|
PixabayImagesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, providedIn: 'root' });
|
|
6634
6990
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, decorators: [{
|
|
6635
6991
|
type: Injectable,
|
|
6636
6992
|
args: [{ providedIn: 'root' }]
|
|
6637
|
-
}]
|
|
6993
|
+
}] });
|
|
6638
6994
|
|
|
6639
6995
|
// *********************************
|
|
6640
6996
|
// Code generated by sdkgen
|
|
@@ -6643,9 +6999,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6643
6999
|
// API Service.
|
|
6644
7000
|
// *********************************
|
|
6645
7001
|
class PostPerformanceApiService {
|
|
6646
|
-
constructor(
|
|
6647
|
-
this.
|
|
6648
|
-
this.
|
|
7002
|
+
constructor() {
|
|
7003
|
+
this.hostService = inject(HostService);
|
|
7004
|
+
this.http = inject(HttpClient);
|
|
6649
7005
|
this._host = this.hostService.hostWithScheme;
|
|
6650
7006
|
}
|
|
6651
7007
|
apiOptions() {
|
|
@@ -6667,12 +7023,12 @@ class PostPerformanceApiService {
|
|
|
6667
7023
|
.pipe(map(resp => GetGeneratedCSVForPerformanceStatsResponse.fromProto(resp)));
|
|
6668
7024
|
}
|
|
6669
7025
|
}
|
|
6670
|
-
PostPerformanceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, deps: [
|
|
7026
|
+
PostPerformanceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6671
7027
|
PostPerformanceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, providedIn: 'root' });
|
|
6672
7028
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, decorators: [{
|
|
6673
7029
|
type: Injectable,
|
|
6674
7030
|
args: [{ providedIn: 'root' }]
|
|
6675
|
-
}]
|
|
7031
|
+
}] });
|
|
6676
7032
|
|
|
6677
7033
|
// *********************************
|
|
6678
7034
|
// Code generated by sdkgen
|
|
@@ -6681,9 +7037,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6681
7037
|
// API Service.
|
|
6682
7038
|
// *********************************
|
|
6683
7039
|
class SocialPostsV2ApiService {
|
|
6684
|
-
constructor(
|
|
6685
|
-
this.
|
|
6686
|
-
this.
|
|
7040
|
+
constructor() {
|
|
7041
|
+
this.hostService = inject(HostService);
|
|
7042
|
+
this.http = inject(HttpClient);
|
|
6687
7043
|
this._host = this.hostService.hostWithScheme;
|
|
6688
7044
|
}
|
|
6689
7045
|
apiOptions() {
|
|
@@ -6724,12 +7080,12 @@ class SocialPostsV2ApiService {
|
|
|
6724
7080
|
return this.http.post(this._host + "/socialposts.v2.SocialPostsV2/RepostSocialPost", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
6725
7081
|
}
|
|
6726
7082
|
}
|
|
6727
|
-
SocialPostsV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, deps: [
|
|
7083
|
+
SocialPostsV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6728
7084
|
SocialPostsV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, providedIn: 'root' });
|
|
6729
7085
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, decorators: [{
|
|
6730
7086
|
type: Injectable,
|
|
6731
7087
|
args: [{ providedIn: 'root' }]
|
|
6732
|
-
}]
|
|
7088
|
+
}] });
|
|
6733
7089
|
|
|
6734
7090
|
// *********************************
|
|
6735
7091
|
// Code generated by sdkgen
|
|
@@ -6738,9 +7094,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6738
7094
|
// API Service.
|
|
6739
7095
|
// *********************************
|
|
6740
7096
|
class TenorGifsApiService {
|
|
6741
|
-
constructor(
|
|
6742
|
-
this.
|
|
6743
|
-
this.
|
|
7097
|
+
constructor() {
|
|
7098
|
+
this.hostService = inject(HostService);
|
|
7099
|
+
this.http = inject(HttpClient);
|
|
6744
7100
|
this._host = this.hostService.hostWithScheme;
|
|
6745
7101
|
}
|
|
6746
7102
|
apiOptions() {
|
|
@@ -6762,12 +7118,12 @@ class TenorGifsApiService {
|
|
|
6762
7118
|
.pipe(map(resp => ListTenorGifsResponse.fromProto(resp)));
|
|
6763
7119
|
}
|
|
6764
7120
|
}
|
|
6765
|
-
TenorGifsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, deps: [
|
|
7121
|
+
TenorGifsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6766
7122
|
TenorGifsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, providedIn: 'root' });
|
|
6767
7123
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, decorators: [{
|
|
6768
7124
|
type: Injectable,
|
|
6769
7125
|
args: [{ providedIn: 'root' }]
|
|
6770
|
-
}]
|
|
7126
|
+
}] });
|
|
6771
7127
|
|
|
6772
7128
|
// *********************************
|
|
6773
7129
|
// Code generated by sdkgen
|
|
@@ -6776,9 +7132,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6776
7132
|
// API Service.
|
|
6777
7133
|
// *********************************
|
|
6778
7134
|
class UnsplashApiService {
|
|
6779
|
-
constructor(
|
|
6780
|
-
this.
|
|
6781
|
-
this.
|
|
7135
|
+
constructor() {
|
|
7136
|
+
this.hostService = inject(HostService);
|
|
7137
|
+
this.http = inject(HttpClient);
|
|
6782
7138
|
this._host = this.hostService.hostWithScheme;
|
|
6783
7139
|
}
|
|
6784
7140
|
apiOptions() {
|
|
@@ -6800,12 +7156,12 @@ class UnsplashApiService {
|
|
|
6800
7156
|
.pipe(map(resp => UploadToStorageResponse.fromProto(resp)));
|
|
6801
7157
|
}
|
|
6802
7158
|
}
|
|
6803
|
-
UnsplashApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, deps: [
|
|
7159
|
+
UnsplashApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6804
7160
|
UnsplashApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, providedIn: 'root' });
|
|
6805
7161
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, decorators: [{
|
|
6806
7162
|
type: Injectable,
|
|
6807
7163
|
args: [{ providedIn: 'root' }]
|
|
6808
|
-
}]
|
|
7164
|
+
}] });
|
|
6809
7165
|
|
|
6810
7166
|
// *********************************
|
|
6811
7167
|
// Code generated by sdkgen
|
|
@@ -6814,9 +7170,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6814
7170
|
// API Service.
|
|
6815
7171
|
// *********************************
|
|
6816
7172
|
class WordpressPluginApiService {
|
|
6817
|
-
constructor(
|
|
6818
|
-
this.
|
|
6819
|
-
this.
|
|
7173
|
+
constructor() {
|
|
7174
|
+
this.hostService = inject(HostService);
|
|
7175
|
+
this.http = inject(HttpClient);
|
|
6820
7176
|
this._host = this.hostService.hostWithScheme;
|
|
6821
7177
|
}
|
|
6822
7178
|
apiOptions() {
|
|
@@ -6848,12 +7204,12 @@ class WordpressPluginApiService {
|
|
|
6848
7204
|
.pipe(map(resp => PublishPostResponse.fromProto(resp)));
|
|
6849
7205
|
}
|
|
6850
7206
|
}
|
|
6851
|
-
WordpressPluginApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, deps: [
|
|
7207
|
+
WordpressPluginApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6852
7208
|
WordpressPluginApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, providedIn: 'root' });
|
|
6853
7209
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, decorators: [{
|
|
6854
7210
|
type: Injectable,
|
|
6855
7211
|
args: [{ providedIn: 'root' }]
|
|
6856
|
-
}]
|
|
7212
|
+
}] });
|
|
6857
7213
|
|
|
6858
7214
|
// *********************************
|
|
6859
7215
|
// Code generated by sdkgen
|
|
@@ -7340,9 +7696,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7340
7696
|
args: [{ providedIn: 'root' }]
|
|
7341
7697
|
}], ctorParameters: function () { return [{ type: WordpressPluginApiService }]; } });
|
|
7342
7698
|
|
|
7699
|
+
class BlogPostsService {
|
|
7700
|
+
constructor(blogPostsApiService) {
|
|
7701
|
+
this.blogPostsApiService = blogPostsApiService;
|
|
7702
|
+
}
|
|
7703
|
+
getMultiBlogPosts(getMultiBlogPostRequestInterface) {
|
|
7704
|
+
return this.blogPostsApiService.getMultiBlogPosts(getMultiBlogPostRequestInterface);
|
|
7705
|
+
}
|
|
7706
|
+
updateBlogPost(updateBlogPostRequestInterface) {
|
|
7707
|
+
return this.blogPostsApiService.updateBlogPost(updateBlogPostRequestInterface);
|
|
7708
|
+
}
|
|
7709
|
+
}
|
|
7710
|
+
BlogPostsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsService, deps: [{ token: BlogPostsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7711
|
+
BlogPostsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsService, providedIn: 'root' });
|
|
7712
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsService, decorators: [{
|
|
7713
|
+
type: Injectable,
|
|
7714
|
+
args: [{ providedIn: 'root' }]
|
|
7715
|
+
}], ctorParameters: function () { return [{ type: BlogPostsApiService }]; } });
|
|
7716
|
+
|
|
7343
7717
|
/**
|
|
7344
7718
|
* Generated bundle index. Do not edit.
|
|
7345
7719
|
*/
|
|
7346
7720
|
|
|
7347
|
-
export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, Author, AuthorsRequest, AuthorsResponse, BlogConnection, BlogConnectionService, BlogImage, BlogVideo, CallToAction, CallToActionCallToActionType, Category, CategoryRequest, CategoryResponse, ChatBotService, ChatBotV2Service, ChatMessage, Collection, ContentGenerationService, ContentLength, CreateBlogConnectionRequest, CreateBlogConnectionResponse, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, CuratedContentPost, DateRangeFilter, DeleteBlogConnectionRequest, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, EndChatRequest, Error, Event, FacebookPostStats, FieldMask, GenerateAiRequest, GenerateAiResponse, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GeneratePostsRequest, GeneratePostsResponse, GeneratePostsResponsePost, GenerateType, GetBlogConnectionRequest, GetBlogConnectionResponse, GetCommonAiInstructionsRequest, GetCommonAiInstructionsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, HashTagsService, Hashtag, Image, ImageBlob, ImageCreated, ImageUrl, LinkV2, Links, ListBlogConnectionRequest, ListBlogConnectionResponse, ListCuratedContentRequest, ListCuratedContentResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, ListUnsplashImagesRequest, ListUnsplashImagesResponse, Location, Media, MediaEntry, MediaType, MediaUploadRequest, MediaUploadResponse, MessageLength, MetaData, MetadataV2, MultiResponse, MultilocationPost, MultilocationPostApiService, MultilocationPostError, MultilocationPostsService, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PartnerListScheduledSocialPostsRequestFilters, Photo, PixabayImage, PixabayImageService, PostAction, PostActionV2, PostContentV2, PostCustomization, PostCustomizationV2, PostData, PostEvent, PostEventV2, PostMediaV2, PostPerformanceApiService, PostPerformanceService, PostStatusV2, PostTemplate, PostTemplatesService, PostType, PostTypeV2, PostingStatus, PublishPostRequest, PublishPostResponse, RemoveFromMultilocationPostRequest, RemoveReason, ReplaceHashtagsRequest, RepostSocialPostRequest, Response, Role, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SendMessageRequest, SendMessageResponse, SendMessageV2Request, SendMessageV2Response, 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, TwitterPostStats, UnsplashImageService, UpdateBlogConnectionRequest, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, UploadedMedia, Urls, User, UserLink, WordpressPluginService, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
|
|
7721
|
+
export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, Author, AuthorsRequest, AuthorsResponse, BlogConnection, BlogConnectionService, BlogImage, BlogPost, BlogPostCustomization, BlogPostsService, BlogVideo, CallToAction, CallToActionCallToActionType, Category, CategoryRequest, CategoryResponse, ChatBotService, ChatBotV2Service, ChatMessage, Collection, ContentGenerationService, ContentLength, CreateBlogConnectionRequest, CreateBlogConnectionResponse, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, CuratedContentPost, DateRangeFilter, DeleteBlogConnectionRequest, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, EndChatRequest, Error, Event, FacebookPostStats, FieldMask, GenerateAiRequest, GenerateAiResponse, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GeneratePostsRequest, GeneratePostsResponse, GeneratePostsResponsePost, GenerateType, GetBlogConnectionRequest, GetBlogConnectionResponse, GetCommonAiInstructionsRequest, GetCommonAiInstructionsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiBlogPostsRequest, GetMultiBlogPostsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, HashTagsService, Hashtag, Image, ImageBlob, ImageCreated, ImageUrl, 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, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PartnerListScheduledSocialPostsRequestFilters, Photo, PixabayImage, PixabayImageService, PostAction, PostActionV2, PostContentV2, PostCustomization, PostCustomizationV2, PostData, PostEvent, PostEventV2, PostMediaV2, PostPerformanceApiService, PostPerformanceService, PostStatusV2, PostTemplate, PostTemplatesService, PostType, PostTypeV2, PostingStatus, PublishPostRequest, PublishPostResponse, RemoveFromMultilocationPostRequest, RemoveReason, ReplaceHashtagsRequest, RepostSocialPostRequest, Response, Role, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SendMessageRequest, SendMessageResponse, SendMessageV2Request, SendMessageV2Response, 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, TwitterPostStats, UnsplashImageService, UpdateBlogConnectionRequest, UpdateBlogPostRequest, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, UploadedMedia, Urls, User, UserLink, WordpressPluginService, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
|
|
7348
7722
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|