@vendasta/social-posts 5.16.1 → 5.17.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/_generated/host.service.mjs +4 -4
- package/esm2020/lib/_internal/enums/social-posts.enum.mjs +2 -1
- package/esm2020/lib/_internal/hash-tags.api.service.mjs +4 -4
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/multilocation-post.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/social-posts.interface.mjs +1 -1
- package/esm2020/lib/_internal/linkedin.api.service.mjs +4 -4
- package/esm2020/lib/_internal/multilocation-post.api.service.mjs +4 -4
- package/esm2020/lib/_internal/objects/api.mjs +14 -2
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/multilocation-post.mjs +8 -2
- package/esm2020/lib/_internal/objects/social-posts.mjs +27 -1
- package/esm2020/lib/_internal/partner-social-posts.api.service.mjs +4 -4
- package/esm2020/lib/_internal/pixabay-images.api.service.mjs +4 -4
- package/esm2020/lib/_internal/post-performance.api.service.mjs +4 -4
- package/esm2020/lib/_internal/post-templates.api.service.mjs +4 -4
- package/esm2020/lib/_internal/social-posts-v2.api.service.mjs +4 -4
- package/esm2020/lib/_internal/social-posts.api.service.mjs +4 -4
- package/esm2020/lib/_internal/tenor-gifs.api.service.mjs +4 -4
- package/esm2020/lib/hashtag.service.mjs +4 -4
- package/esm2020/lib/multilocation-posts.service.mjs +9 -7
- package/esm2020/lib/pixabay-image.service.mjs +4 -4
- package/esm2020/lib/post-performance.service.mjs +4 -4
- package/esm2020/lib/post-templates.service.mjs +4 -4
- package/esm2020/lib/social-post-v2.service.mjs +4 -4
- package/esm2020/lib/social-posts.service.mjs +4 -4
- package/esm2020/lib/tenor-gifs.service.mjs +4 -4
- package/fesm2015/vendasta-social-posts.mjs +173 -61
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +173 -61
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/enums/social-posts.enum.d.ts +2 -1
- package/lib/_internal/interfaces/api.interface.d.ts +3 -1
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/interfaces/multilocation-post.interface.d.ts +2 -1
- package/lib/_internal/interfaces/social-posts.interface.d.ts +4 -0
- package/lib/_internal/objects/api.d.ts +3 -1
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/multilocation-post.d.ts +2 -1
- package/lib/_internal/objects/social-posts.d.ts +7 -0
- package/lib/multilocation-posts.service.d.ts +3 -3
- package/package.json +1 -1
|
@@ -107,6 +107,7 @@ var PostType;
|
|
|
107
107
|
PostType[PostType["POST_TYPE_REEL"] = 4] = "POST_TYPE_REEL";
|
|
108
108
|
PostType[PostType["POST_TYPE_CAROUSEL"] = 5] = "POST_TYPE_CAROUSEL";
|
|
109
109
|
PostType[PostType["POST_TYPE_STORIES"] = 6] = "POST_TYPE_STORIES";
|
|
110
|
+
PostType[PostType["POST_TYPE_TEXT"] = 7] = "POST_TYPE_TEXT";
|
|
110
111
|
})(PostType || (PostType = {}));
|
|
111
112
|
var PostingStatus;
|
|
112
113
|
(function (PostingStatus) {
|
|
@@ -197,6 +198,11 @@ var MediaType;
|
|
|
197
198
|
MediaType[MediaType["MEDIA_TYPE_CAROUSEL"] = 4] = "MEDIA_TYPE_CAROUSEL";
|
|
198
199
|
})(MediaType || (MediaType = {}));
|
|
199
200
|
|
|
201
|
+
// *********************************
|
|
202
|
+
// Code generated by sdkgen
|
|
203
|
+
// DO NOT EDIT!.
|
|
204
|
+
//
|
|
205
|
+
// Enums Index.
|
|
200
206
|
// *********************************
|
|
201
207
|
|
|
202
208
|
function enumStringToValue$8(enumRef, value) {
|
|
@@ -436,6 +442,32 @@ class PostTemplate {
|
|
|
436
442
|
return toReturn;
|
|
437
443
|
}
|
|
438
444
|
}
|
|
445
|
+
class SSIDPostType {
|
|
446
|
+
static fromProto(proto) {
|
|
447
|
+
let m = new SSIDPostType();
|
|
448
|
+
m = Object.assign(m, proto);
|
|
449
|
+
if (proto.postType) {
|
|
450
|
+
m.postType = enumStringToValue$8(PostType, proto.postType);
|
|
451
|
+
}
|
|
452
|
+
return m;
|
|
453
|
+
}
|
|
454
|
+
constructor(kwargs) {
|
|
455
|
+
if (!kwargs) {
|
|
456
|
+
return;
|
|
457
|
+
}
|
|
458
|
+
Object.assign(this, kwargs);
|
|
459
|
+
}
|
|
460
|
+
toApiJson() {
|
|
461
|
+
const toReturn = {};
|
|
462
|
+
if (typeof this.socialServiceId !== 'undefined') {
|
|
463
|
+
toReturn['socialServiceId'] = this.socialServiceId;
|
|
464
|
+
}
|
|
465
|
+
if (typeof this.postType !== 'undefined') {
|
|
466
|
+
toReturn['postType'] = this.postType;
|
|
467
|
+
}
|
|
468
|
+
return toReturn;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
439
471
|
class SchedulePostStatus {
|
|
440
472
|
static fromProto(proto) {
|
|
441
473
|
let m = new SchedulePostStatus();
|
|
@@ -727,6 +759,9 @@ class MultilocationPost {
|
|
|
727
759
|
if (proto.customization) {
|
|
728
760
|
m.customization = PostCustomization.fromProto(proto.customization);
|
|
729
761
|
}
|
|
762
|
+
if (proto.postTypes) {
|
|
763
|
+
m.postTypes = proto.postTypes.map(SSIDPostType.fromProto);
|
|
764
|
+
}
|
|
730
765
|
return m;
|
|
731
766
|
}
|
|
732
767
|
constructor(kwargs) {
|
|
@@ -782,6 +817,9 @@ class MultilocationPost {
|
|
|
782
817
|
if (typeof this.linkShortCode !== 'undefined') {
|
|
783
818
|
toReturn['linkShortCode'] = this.linkShortCode;
|
|
784
819
|
}
|
|
820
|
+
if (typeof this.postTypes !== 'undefined' && this.postTypes !== null) {
|
|
821
|
+
toReturn['postTypes'] = 'toApiJson' in this.postTypes ? this.postTypes.toApiJson() : this.postTypes;
|
|
822
|
+
}
|
|
785
823
|
return toReturn;
|
|
786
824
|
}
|
|
787
825
|
}
|
|
@@ -1292,6 +1330,9 @@ class CreateMultilocationPostRequest {
|
|
|
1292
1330
|
if (proto.customization) {
|
|
1293
1331
|
m.customization = PostCustomization.fromProto(proto.customization);
|
|
1294
1332
|
}
|
|
1333
|
+
if (proto.postTypes) {
|
|
1334
|
+
m.postTypes = proto.postTypes.map(SSIDPostType.fromProto);
|
|
1335
|
+
}
|
|
1295
1336
|
return m;
|
|
1296
1337
|
}
|
|
1297
1338
|
constructor(kwargs) {
|
|
@@ -1338,6 +1379,9 @@ class CreateMultilocationPostRequest {
|
|
|
1338
1379
|
if (typeof this.linkShortCode !== 'undefined') {
|
|
1339
1380
|
toReturn['linkShortCode'] = this.linkShortCode;
|
|
1340
1381
|
}
|
|
1382
|
+
if (typeof this.postTypes !== 'undefined' && this.postTypes !== null) {
|
|
1383
|
+
toReturn['postTypes'] = 'toApiJson' in this.postTypes ? this.postTypes.toApiJson() : this.postTypes;
|
|
1384
|
+
}
|
|
1341
1385
|
return toReturn;
|
|
1342
1386
|
}
|
|
1343
1387
|
}
|
|
@@ -1613,6 +1657,9 @@ class EditMultilocationPostRequest {
|
|
|
1613
1657
|
if (proto.customization) {
|
|
1614
1658
|
m.customization = PostCustomization.fromProto(proto.customization);
|
|
1615
1659
|
}
|
|
1660
|
+
if (proto.postTypes) {
|
|
1661
|
+
m.postTypes = proto.postTypes.map(SSIDPostType.fromProto);
|
|
1662
|
+
}
|
|
1616
1663
|
return m;
|
|
1617
1664
|
}
|
|
1618
1665
|
constructor(kwargs) {
|
|
@@ -1665,6 +1712,9 @@ class EditMultilocationPostRequest {
|
|
|
1665
1712
|
if (typeof this.linkShortCode !== 'undefined') {
|
|
1666
1713
|
toReturn['linkShortCode'] = this.linkShortCode;
|
|
1667
1714
|
}
|
|
1715
|
+
if (typeof this.postTypes !== 'undefined' && this.postTypes !== null) {
|
|
1716
|
+
toReturn['postTypes'] = 'toApiJson' in this.postTypes ? this.postTypes.toApiJson() : this.postTypes;
|
|
1717
|
+
}
|
|
1668
1718
|
return toReturn;
|
|
1669
1719
|
}
|
|
1670
1720
|
}
|
|
@@ -3730,6 +3780,11 @@ class UpdateSocialPostResponse {
|
|
|
3730
3780
|
}
|
|
3731
3781
|
}
|
|
3732
3782
|
|
|
3783
|
+
// *********************************
|
|
3784
|
+
// Code generated by sdkgen
|
|
3785
|
+
// DO NOT EDIT!.
|
|
3786
|
+
//
|
|
3787
|
+
// Objects Index.
|
|
3733
3788
|
// *********************************
|
|
3734
3789
|
|
|
3735
3790
|
var _a;
|
|
@@ -3749,13 +3804,18 @@ class HostService {
|
|
|
3749
3804
|
return 'https://' + this.host;
|
|
3750
3805
|
}
|
|
3751
3806
|
}
|
|
3752
|
-
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3753
|
-
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3807
|
+
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HostService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3808
|
+
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HostService, providedIn: 'root' });
|
|
3809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HostService, decorators: [{
|
|
3755
3810
|
type: Injectable,
|
|
3756
3811
|
args: [{ providedIn: 'root' }]
|
|
3757
3812
|
}] });
|
|
3758
3813
|
|
|
3814
|
+
// *********************************
|
|
3815
|
+
// Code generated by sdkgen
|
|
3816
|
+
// DO NOT EDIT!.
|
|
3817
|
+
//
|
|
3818
|
+
// API Service.
|
|
3759
3819
|
// *********************************
|
|
3760
3820
|
class SocialPostsApiService {
|
|
3761
3821
|
constructor(http, hostService) {
|
|
@@ -3811,9 +3871,9 @@ class SocialPostsApiService {
|
|
|
3811
3871
|
.pipe(map(resp => SuggestMessageResponse.fromProto(resp)));
|
|
3812
3872
|
}
|
|
3813
3873
|
}
|
|
3814
|
-
SocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3815
|
-
SocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3816
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3874
|
+
SocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3875
|
+
SocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, providedIn: 'root' });
|
|
3876
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, decorators: [{
|
|
3817
3877
|
type: Injectable,
|
|
3818
3878
|
args: [{ providedIn: 'root' }]
|
|
3819
3879
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
@@ -3852,13 +3912,18 @@ class SocialPostsService {
|
|
|
3852
3912
|
return this.socialPostsApiService.suggestMessage(req);
|
|
3853
3913
|
}
|
|
3854
3914
|
}
|
|
3855
|
-
SocialPostsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3856
|
-
SocialPostsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3915
|
+
SocialPostsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsService, deps: [{ token: SocialPostsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3916
|
+
SocialPostsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsService, providedIn: 'root' });
|
|
3917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsService, decorators: [{
|
|
3858
3918
|
type: Injectable,
|
|
3859
3919
|
args: [{ providedIn: 'root' }]
|
|
3860
3920
|
}], ctorParameters: function () { return [{ type: SocialPostsApiService }]; } });
|
|
3861
3921
|
|
|
3922
|
+
// *********************************
|
|
3923
|
+
// Code generated by sdkgen
|
|
3924
|
+
// DO NOT EDIT!.
|
|
3925
|
+
//
|
|
3926
|
+
// API Service.
|
|
3862
3927
|
// *********************************
|
|
3863
3928
|
class HashTagsApiService {
|
|
3864
3929
|
constructor(http, hostService) {
|
|
@@ -3888,13 +3953,18 @@ class HashTagsApiService {
|
|
|
3888
3953
|
.pipe(map(resp => SearchHashtagResponse.fromProto(resp)));
|
|
3889
3954
|
}
|
|
3890
3955
|
}
|
|
3891
|
-
HashTagsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3892
|
-
HashTagsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3893
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3956
|
+
HashTagsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3957
|
+
HashTagsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, providedIn: 'root' });
|
|
3958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, decorators: [{
|
|
3894
3959
|
type: Injectable,
|
|
3895
3960
|
args: [{ providedIn: 'root' }]
|
|
3896
3961
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
3897
3962
|
|
|
3963
|
+
// *********************************
|
|
3964
|
+
// Code generated by sdkgen
|
|
3965
|
+
// DO NOT EDIT!.
|
|
3966
|
+
//
|
|
3967
|
+
// API Service.
|
|
3898
3968
|
// *********************************
|
|
3899
3969
|
class LinkedinApiService {
|
|
3900
3970
|
constructor(http, hostService) {
|
|
@@ -3920,13 +3990,18 @@ class LinkedinApiService {
|
|
|
3920
3990
|
.pipe(map(resp => MediaUploadResponse.fromProto(resp)));
|
|
3921
3991
|
}
|
|
3922
3992
|
}
|
|
3923
|
-
LinkedinApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3924
|
-
LinkedinApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3925
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3993
|
+
LinkedinApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3994
|
+
LinkedinApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, providedIn: 'root' });
|
|
3995
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, decorators: [{
|
|
3926
3996
|
type: Injectable,
|
|
3927
3997
|
args: [{ providedIn: 'root' }]
|
|
3928
3998
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
3929
3999
|
|
|
4000
|
+
// *********************************
|
|
4001
|
+
// Code generated by sdkgen
|
|
4002
|
+
// DO NOT EDIT!.
|
|
4003
|
+
//
|
|
4004
|
+
// API Service.
|
|
3930
4005
|
// *********************************
|
|
3931
4006
|
class MultilocationPostApiService {
|
|
3932
4007
|
constructor(http, hostService) {
|
|
@@ -3971,13 +4046,18 @@ class MultilocationPostApiService {
|
|
|
3971
4046
|
.pipe(map(resp => GetMultilocationPostResponse.fromProto(resp)));
|
|
3972
4047
|
}
|
|
3973
4048
|
}
|
|
3974
|
-
MultilocationPostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3975
|
-
MultilocationPostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4049
|
+
MultilocationPostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4050
|
+
MultilocationPostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, providedIn: 'root' });
|
|
4051
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, decorators: [{
|
|
3977
4052
|
type: Injectable,
|
|
3978
4053
|
args: [{ providedIn: 'root' }]
|
|
3979
4054
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
3980
4055
|
|
|
4056
|
+
// *********************************
|
|
4057
|
+
// Code generated by sdkgen
|
|
4058
|
+
// DO NOT EDIT!.
|
|
4059
|
+
//
|
|
4060
|
+
// API Service.
|
|
3981
4061
|
// *********************************
|
|
3982
4062
|
class PartnerSocialPostsApiService {
|
|
3983
4063
|
constructor(http, hostService) {
|
|
@@ -4004,13 +4084,18 @@ class PartnerSocialPostsApiService {
|
|
|
4004
4084
|
.pipe(map(resp => PartnerListScheduledPostsResponse.fromProto(resp)));
|
|
4005
4085
|
}
|
|
4006
4086
|
}
|
|
4007
|
-
PartnerSocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4008
|
-
PartnerSocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4087
|
+
PartnerSocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4088
|
+
PartnerSocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, providedIn: 'root' });
|
|
4089
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, decorators: [{
|
|
4010
4090
|
type: Injectable,
|
|
4011
4091
|
args: [{ providedIn: 'root' }]
|
|
4012
4092
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
4013
4093
|
|
|
4094
|
+
// *********************************
|
|
4095
|
+
// Code generated by sdkgen
|
|
4096
|
+
// DO NOT EDIT!.
|
|
4097
|
+
//
|
|
4098
|
+
// API Service.
|
|
4014
4099
|
// *********************************
|
|
4015
4100
|
class PixabayImagesApiService {
|
|
4016
4101
|
constructor(http, hostService) {
|
|
@@ -4032,13 +4117,18 @@ class PixabayImagesApiService {
|
|
|
4032
4117
|
.pipe(map(resp => ListPixabayImagesResponse.fromProto(resp)));
|
|
4033
4118
|
}
|
|
4034
4119
|
}
|
|
4035
|
-
PixabayImagesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4036
|
-
PixabayImagesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4120
|
+
PixabayImagesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4121
|
+
PixabayImagesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, providedIn: 'root' });
|
|
4122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, decorators: [{
|
|
4038
4123
|
type: Injectable,
|
|
4039
4124
|
args: [{ providedIn: 'root' }]
|
|
4040
4125
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
4041
4126
|
|
|
4127
|
+
// *********************************
|
|
4128
|
+
// Code generated by sdkgen
|
|
4129
|
+
// DO NOT EDIT!.
|
|
4130
|
+
//
|
|
4131
|
+
// API Service.
|
|
4042
4132
|
// *********************************
|
|
4043
4133
|
class PostPerformanceApiService {
|
|
4044
4134
|
constructor(http, hostService) {
|
|
@@ -4065,13 +4155,18 @@ class PostPerformanceApiService {
|
|
|
4065
4155
|
.pipe(map(resp => GetGeneratedCSVForPerformanceStatsResponse.fromProto(resp)));
|
|
4066
4156
|
}
|
|
4067
4157
|
}
|
|
4068
|
-
PostPerformanceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4069
|
-
PostPerformanceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4158
|
+
PostPerformanceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4159
|
+
PostPerformanceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, providedIn: 'root' });
|
|
4160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, decorators: [{
|
|
4071
4161
|
type: Injectable,
|
|
4072
4162
|
args: [{ providedIn: 'root' }]
|
|
4073
4163
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
4074
4164
|
|
|
4165
|
+
// *********************************
|
|
4166
|
+
// Code generated by sdkgen
|
|
4167
|
+
// DO NOT EDIT!.
|
|
4168
|
+
//
|
|
4169
|
+
// API Service.
|
|
4075
4170
|
// *********************************
|
|
4076
4171
|
class PostTemplatesApiService {
|
|
4077
4172
|
constructor(http, hostService) {
|
|
@@ -4111,13 +4206,18 @@ class PostTemplatesApiService {
|
|
|
4111
4206
|
return this.http.post(this._host + "/socialposts.v1.PostTemplates/DeletePostTemplate", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
4112
4207
|
}
|
|
4113
4208
|
}
|
|
4114
|
-
PostTemplatesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4115
|
-
PostTemplatesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4209
|
+
PostTemplatesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4210
|
+
PostTemplatesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, providedIn: 'root' });
|
|
4211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, decorators: [{
|
|
4117
4212
|
type: Injectable,
|
|
4118
4213
|
args: [{ providedIn: 'root' }]
|
|
4119
4214
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
4120
4215
|
|
|
4216
|
+
// *********************************
|
|
4217
|
+
// Code generated by sdkgen
|
|
4218
|
+
// DO NOT EDIT!.
|
|
4219
|
+
//
|
|
4220
|
+
// API Service.
|
|
4121
4221
|
// *********************************
|
|
4122
4222
|
class SocialPostsV2ApiService {
|
|
4123
4223
|
constructor(http, hostService) {
|
|
@@ -4163,13 +4263,18 @@ class SocialPostsV2ApiService {
|
|
|
4163
4263
|
return this.http.post(this._host + "/socialposts.v2.SocialPostsV2/RepostSocialPost", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
4164
4264
|
}
|
|
4165
4265
|
}
|
|
4166
|
-
SocialPostsV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4167
|
-
SocialPostsV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4168
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4266
|
+
SocialPostsV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4267
|
+
SocialPostsV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, providedIn: 'root' });
|
|
4268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, decorators: [{
|
|
4169
4269
|
type: Injectable,
|
|
4170
4270
|
args: [{ providedIn: 'root' }]
|
|
4171
4271
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
4172
4272
|
|
|
4273
|
+
// *********************************
|
|
4274
|
+
// Code generated by sdkgen
|
|
4275
|
+
// DO NOT EDIT!.
|
|
4276
|
+
//
|
|
4277
|
+
// API Service.
|
|
4173
4278
|
// *********************************
|
|
4174
4279
|
class TenorGifsApiService {
|
|
4175
4280
|
constructor(http, hostService) {
|
|
@@ -4196,14 +4301,19 @@ class TenorGifsApiService {
|
|
|
4196
4301
|
.pipe(map(resp => ListTenorGifsResponse.fromProto(resp)));
|
|
4197
4302
|
}
|
|
4198
4303
|
}
|
|
4199
|
-
TenorGifsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4200
|
-
TenorGifsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4304
|
+
TenorGifsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4305
|
+
TenorGifsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, providedIn: 'root' });
|
|
4306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, decorators: [{
|
|
4202
4307
|
type: Injectable,
|
|
4203
4308
|
args: [{ providedIn: 'root' }]
|
|
4204
4309
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
4205
4310
|
|
|
4206
4311
|
// *********************************
|
|
4312
|
+
// Code generated by sdkgen
|
|
4313
|
+
// DO NOT EDIT!.
|
|
4314
|
+
//
|
|
4315
|
+
// Index.
|
|
4316
|
+
// *********************************
|
|
4207
4317
|
|
|
4208
4318
|
class PostTemplatesService {
|
|
4209
4319
|
constructor(socialPostsApiService) {
|
|
@@ -4273,9 +4383,9 @@ class PostTemplatesService {
|
|
|
4273
4383
|
return this.socialPostsApiService.deletePostTemplate(req);
|
|
4274
4384
|
}
|
|
4275
4385
|
}
|
|
4276
|
-
PostTemplatesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4277
|
-
PostTemplatesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4386
|
+
PostTemplatesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesService, deps: [{ token: PostTemplatesApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4387
|
+
PostTemplatesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesService, providedIn: 'root' });
|
|
4388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesService, decorators: [{
|
|
4279
4389
|
type: Injectable,
|
|
4280
4390
|
args: [{ providedIn: 'root' }]
|
|
4281
4391
|
}], ctorParameters: function () { return [{ type: PostTemplatesApiService }]; } });
|
|
@@ -4284,7 +4394,7 @@ class MultilocationPostsService {
|
|
|
4284
4394
|
constructor(multilocationApiService) {
|
|
4285
4395
|
this.multilocationApiService = multilocationApiService;
|
|
4286
4396
|
}
|
|
4287
|
-
createMultilocationPost(brandId, text, media, gifs, videos, scheduledDate, locations, mediaEntries, postCustomization, linkShortCode, metadata) {
|
|
4397
|
+
createMultilocationPost(brandId, text, media, gifs, videos, scheduledDate, locations, mediaEntries, postCustomization, linkShortCode, metadata, postTypes) {
|
|
4288
4398
|
const req = new CreateMultilocationPostRequest({
|
|
4289
4399
|
brandId: brandId,
|
|
4290
4400
|
text: text,
|
|
@@ -4297,10 +4407,11 @@ class MultilocationPostsService {
|
|
|
4297
4407
|
metaData: metadata,
|
|
4298
4408
|
customization: postCustomization,
|
|
4299
4409
|
linkShortCode: linkShortCode,
|
|
4410
|
+
postTypes: postTypes
|
|
4300
4411
|
});
|
|
4301
4412
|
return this.multilocationApiService.createMultilocationPost(req);
|
|
4302
4413
|
}
|
|
4303
|
-
editMultilocationPost(brandId, multilocationId, text, media, gifs, videos, scheduledDate, locations, fieldMask, mediaEntries, postCustomization, linkShortCode, metadata) {
|
|
4414
|
+
editMultilocationPost(brandId, multilocationId, text, media, gifs, videos, scheduledDate, locations, fieldMask, mediaEntries, postCustomization, linkShortCode, metadata, postTypes) {
|
|
4304
4415
|
const req = new EditMultilocationPostRequest({
|
|
4305
4416
|
brandId: brandId,
|
|
4306
4417
|
multilocationId: multilocationId,
|
|
@@ -4314,7 +4425,8 @@ class MultilocationPostsService {
|
|
|
4314
4425
|
mediaEntries: mediaEntries,
|
|
4315
4426
|
customization: postCustomization,
|
|
4316
4427
|
linkShortCode: linkShortCode,
|
|
4317
|
-
metaData: metadata
|
|
4428
|
+
metaData: metadata,
|
|
4429
|
+
postTypes: postTypes
|
|
4318
4430
|
});
|
|
4319
4431
|
return this.multilocationApiService.editMultilocationPost(req);
|
|
4320
4432
|
}
|
|
@@ -4352,9 +4464,9 @@ class MultilocationPostsService {
|
|
|
4352
4464
|
return this.multilocationApiService.getMultilocationPost(req);
|
|
4353
4465
|
}
|
|
4354
4466
|
}
|
|
4355
|
-
MultilocationPostsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4356
|
-
MultilocationPostsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4467
|
+
MultilocationPostsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostsService, deps: [{ token: MultilocationPostApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4468
|
+
MultilocationPostsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostsService, providedIn: 'root' });
|
|
4469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostsService, decorators: [{
|
|
4358
4470
|
type: Injectable,
|
|
4359
4471
|
args: [{ providedIn: 'root' }]
|
|
4360
4472
|
}], ctorParameters: function () { return [{ type: MultilocationPostApiService }]; } });
|
|
@@ -4381,9 +4493,9 @@ class TenorGifsService {
|
|
|
4381
4493
|
return this.tenorGifsApiService.getTenorAnonymousId(request);
|
|
4382
4494
|
}
|
|
4383
4495
|
}
|
|
4384
|
-
TenorGifsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4385
|
-
TenorGifsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4496
|
+
TenorGifsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsService, deps: [{ token: TenorGifsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4497
|
+
TenorGifsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsService, providedIn: 'root' });
|
|
4498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsService, decorators: [{
|
|
4387
4499
|
type: Injectable,
|
|
4388
4500
|
args: [{ providedIn: 'root' }]
|
|
4389
4501
|
}], ctorParameters: function () { return [{ type: TenorGifsApiService }]; } });
|
|
@@ -4399,9 +4511,9 @@ class PixabayImageService {
|
|
|
4399
4511
|
return this.pixabayApiService.listPixabayImages(request);
|
|
4400
4512
|
}
|
|
4401
4513
|
}
|
|
4402
|
-
PixabayImageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4403
|
-
PixabayImageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4404
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4514
|
+
PixabayImageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImageService, deps: [{ token: PixabayImagesApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4515
|
+
PixabayImageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImageService, providedIn: 'root' });
|
|
4516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImageService, decorators: [{
|
|
4405
4517
|
type: Injectable,
|
|
4406
4518
|
args: [{ providedIn: 'root' }]
|
|
4407
4519
|
}], ctorParameters: function () { return [{ type: PixabayImagesApiService }]; } });
|
|
@@ -4436,9 +4548,9 @@ class HashTagsService {
|
|
|
4436
4548
|
return this.hashTagsApiService.searchHashtag(request);
|
|
4437
4549
|
}
|
|
4438
4550
|
}
|
|
4439
|
-
HashTagsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4440
|
-
HashTagsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4551
|
+
HashTagsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsService, deps: [{ token: HashTagsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4552
|
+
HashTagsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsService, providedIn: 'root' });
|
|
4553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsService, decorators: [{
|
|
4442
4554
|
type: Injectable,
|
|
4443
4555
|
args: [{ providedIn: 'root' }]
|
|
4444
4556
|
}], ctorParameters: function () { return [{ type: HashTagsApiService }]; } });
|
|
@@ -4456,9 +4568,9 @@ class PostPerformanceService {
|
|
|
4456
4568
|
return this.postPerformanceApiService.generateCsvForPerformanceStats(request).pipe(map((res) => res.generatedId));
|
|
4457
4569
|
}
|
|
4458
4570
|
}
|
|
4459
|
-
PostPerformanceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4460
|
-
PostPerformanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4461
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4571
|
+
PostPerformanceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceService, deps: [{ token: PostPerformanceApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4572
|
+
PostPerformanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceService, providedIn: 'root' });
|
|
4573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceService, decorators: [{
|
|
4462
4574
|
type: Injectable,
|
|
4463
4575
|
args: [{ providedIn: 'root' }]
|
|
4464
4576
|
}], ctorParameters: function () { return [{ type: PostPerformanceApiService }]; } });
|
|
@@ -4486,9 +4598,9 @@ class SocialPostsV2Service {
|
|
|
4486
4598
|
return this.socialpostV2ApiService.repostSocialPost(repostRequest);
|
|
4487
4599
|
}
|
|
4488
4600
|
}
|
|
4489
|
-
SocialPostsV2Service.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4490
|
-
SocialPostsV2Service.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
4491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4601
|
+
SocialPostsV2Service.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2Service, deps: [{ token: SocialPostsV2ApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4602
|
+
SocialPostsV2Service.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2Service, providedIn: 'root' });
|
|
4603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2Service, decorators: [{
|
|
4492
4604
|
type: Injectable,
|
|
4493
4605
|
args: [{ providedIn: 'root' }]
|
|
4494
4606
|
}], ctorParameters: function () { return [{ type: SocialPostsV2ApiService }]; } });
|
|
@@ -4497,5 +4609,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
4497
4609
|
* Generated bundle index. Do not edit.
|
|
4498
4610
|
*/
|
|
4499
4611
|
|
|
4500
|
-
export { CallToAction, CallToActionCallToActionType, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, DateRangeFilter, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, Error, Event, FacebookPostStats, FieldMask, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, HashTagsService, Hashtag, ImageBlob, ImageCreated, ImageUrl, LinkV2, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, Location, Media, MediaEntry, MediaType, MediaUploadRequest, MediaUploadResponse, MessageLength, MetaData, MetadataV2, MultilocationPost, MultilocationPostApiService, MultilocationPostError, MultilocationPostsService, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PartnerListScheduledSocialPostsRequestFilters, PixabayImage, PixabayImageService, PostAction, PostActionV2, PostContentV2, PostCustomization, PostCustomizationV2, PostData, PostEvent, PostEventV2, PostMediaV2, PostPerformanceApiService, PostPerformanceService, PostStatusV2, PostTemplate, PostTemplatesService, PostType, PostTypeV2, PostingStatus, RemoveFromMultilocationPostRequest, RemoveReason, ReplaceHashtagsRequest, RepostSocialPostRequest, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SocialPost, SocialPostData, SocialPostDeletionStatus, SocialPostOutput, SocialPostRequest, SocialPostResponse, SocialPostService, SocialPostStats, SocialPostV2, SocialPostsService, SocialPostsV2Service, SuggestMessageRequest, SuggestMessageResponse, TemplateType, TenorGif, TenorGifMediaMapEntry, TenorGifsService, TenorMediaObject, TwitterPostStats, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
|
|
4612
|
+
export { CallToAction, CallToActionCallToActionType, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, DateRangeFilter, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, Error, Event, FacebookPostStats, FieldMask, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, HashTagsService, Hashtag, ImageBlob, ImageCreated, ImageUrl, LinkV2, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, Location, Media, MediaEntry, MediaType, MediaUploadRequest, MediaUploadResponse, MessageLength, MetaData, MetadataV2, MultilocationPost, MultilocationPostApiService, MultilocationPostError, MultilocationPostsService, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PartnerListScheduledSocialPostsRequestFilters, PixabayImage, PixabayImageService, PostAction, PostActionV2, PostContentV2, PostCustomization, PostCustomizationV2, PostData, PostEvent, PostEventV2, PostMediaV2, PostPerformanceApiService, PostPerformanceService, PostStatusV2, PostTemplate, PostTemplatesService, PostType, PostTypeV2, PostingStatus, RemoveFromMultilocationPostRequest, RemoveReason, ReplaceHashtagsRequest, RepostSocialPostRequest, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SocialPost, SocialPostData, SocialPostDeletionStatus, SocialPostOutput, SocialPostRequest, SocialPostResponse, SocialPostService, SocialPostStats, SocialPostV2, SocialPostsService, SocialPostsV2Service, SuggestMessageRequest, SuggestMessageResponse, TemplateType, TenorGif, TenorGifMediaMapEntry, TenorGifsService, TenorMediaObject, TwitterPostStats, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
|
|
4501
4613
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|