@vendasta/social-posts 5.25.0 → 5.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/_internal/index.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/wordpress-plugin.interface.mjs +8 -0
- package/esm2020/lib/_internal/objects/index.mjs +2 -1
- package/esm2020/lib/_internal/objects/wordpress-plugin.mjs +62 -0
- package/esm2020/lib/_internal/wordpress-plugin.api.service.mjs +41 -0
- package/esm2020/lib/index.mjs +2 -1
- package/esm2020/lib/wordpress-plugin.service.mjs +19 -0
- package/fesm2015/vendasta-social-posts.mjs +148 -38
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +148 -38
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/index.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +1 -0
- package/lib/_internal/interfaces/wordpress-plugin.interface.d.ts +11 -0
- package/lib/_internal/objects/index.d.ts +1 -0
- package/lib/_internal/objects/wordpress-plugin.d.ts +19 -0
- package/lib/_internal/wordpress-plugin.api.service.d.ts +16 -0
- package/lib/index.d.ts +1 -0
- package/lib/wordpress-plugin.service.d.ts +10 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import * as i1 from '@angular/common/http';
|
|
|
5
5
|
import { HttpHeaders } from '@angular/common/http';
|
|
6
6
|
import { map } from 'rxjs/operators';
|
|
7
7
|
|
|
8
|
-
function enumStringToValue$
|
|
8
|
+
function enumStringToValue$g(enumRef, value) {
|
|
9
9
|
if (typeof value === 'number') {
|
|
10
10
|
return value;
|
|
11
11
|
}
|
|
@@ -32,7 +32,7 @@ class FieldMask {
|
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
function enumStringToValue$
|
|
35
|
+
function enumStringToValue$f(enumRef, value) {
|
|
36
36
|
if (typeof value === 'number') {
|
|
37
37
|
return value;
|
|
38
38
|
}
|
|
@@ -244,7 +244,7 @@ var Role;
|
|
|
244
244
|
// Enums Index.
|
|
245
245
|
// *********************************
|
|
246
246
|
|
|
247
|
-
function enumStringToValue$
|
|
247
|
+
function enumStringToValue$e(enumRef, value) {
|
|
248
248
|
if (typeof value === 'number') {
|
|
249
249
|
return value;
|
|
250
250
|
}
|
|
@@ -255,7 +255,7 @@ class CallToAction {
|
|
|
255
255
|
let m = new CallToAction();
|
|
256
256
|
m = Object.assign(m, proto);
|
|
257
257
|
if (proto.actionType) {
|
|
258
|
-
m.actionType = enumStringToValue$
|
|
258
|
+
m.actionType = enumStringToValue$e(CallToActionCallToActionType, proto.actionType);
|
|
259
259
|
}
|
|
260
260
|
return m;
|
|
261
261
|
}
|
|
@@ -409,7 +409,7 @@ class PostTemplate {
|
|
|
409
409
|
m.metaData = proto.metaData.map(MetaData.fromProto);
|
|
410
410
|
}
|
|
411
411
|
if (proto.postType) {
|
|
412
|
-
m.postType = enumStringToValue$
|
|
412
|
+
m.postType = enumStringToValue$e(PostType, proto.postType);
|
|
413
413
|
}
|
|
414
414
|
if (proto.youtubeCustomization) {
|
|
415
415
|
m.youtubeCustomization = YoutubeCustomization.fromProto(proto.youtubeCustomization);
|
|
@@ -492,7 +492,7 @@ class SSIDPostType {
|
|
|
492
492
|
let m = new SSIDPostType();
|
|
493
493
|
m = Object.assign(m, proto);
|
|
494
494
|
if (proto.postType) {
|
|
495
|
-
m.postType = enumStringToValue$
|
|
495
|
+
m.postType = enumStringToValue$e(PostType, proto.postType);
|
|
496
496
|
}
|
|
497
497
|
return m;
|
|
498
498
|
}
|
|
@@ -553,10 +553,10 @@ class SocialPost {
|
|
|
553
553
|
m.posted = new Date(proto.posted);
|
|
554
554
|
}
|
|
555
555
|
if (proto.deletionStatus) {
|
|
556
|
-
m.deletionStatus = enumStringToValue$
|
|
556
|
+
m.deletionStatus = enumStringToValue$e(SocialPostDeletionStatus, proto.deletionStatus);
|
|
557
557
|
}
|
|
558
558
|
if (proto.service) {
|
|
559
|
-
m.service = enumStringToValue$
|
|
559
|
+
m.service = enumStringToValue$e(SocialPostService, proto.service);
|
|
560
560
|
}
|
|
561
561
|
if (proto.created) {
|
|
562
562
|
m.created = new Date(proto.created);
|
|
@@ -565,7 +565,7 @@ class SocialPost {
|
|
|
565
565
|
m.scheduled = new Date(proto.scheduled);
|
|
566
566
|
}
|
|
567
567
|
if (proto.status) {
|
|
568
|
-
m.status = enumStringToValue$
|
|
568
|
+
m.status = enumStringToValue$e(PostingStatus, proto.status);
|
|
569
569
|
}
|
|
570
570
|
if (proto.event) {
|
|
571
571
|
m.event = Event.fromProto(proto.event);
|
|
@@ -577,7 +577,7 @@ class SocialPost {
|
|
|
577
577
|
m.error = Error.fromProto(proto.error);
|
|
578
578
|
}
|
|
579
579
|
if (proto.postType) {
|
|
580
|
-
m.postType = enumStringToValue$
|
|
580
|
+
m.postType = enumStringToValue$e(PostType, proto.postType);
|
|
581
581
|
}
|
|
582
582
|
if (proto.mediaEntries) {
|
|
583
583
|
m.mediaEntries = proto.mediaEntries.map(MediaEntry.fromProto);
|
|
@@ -760,7 +760,7 @@ class YoutubeCustomization {
|
|
|
760
760
|
let m = new YoutubeCustomization();
|
|
761
761
|
m = Object.assign(m, proto);
|
|
762
762
|
if (proto.privacyStatus) {
|
|
763
|
-
m.privacyStatus = enumStringToValue$
|
|
763
|
+
m.privacyStatus = enumStringToValue$e(YoutubeCustomizationPrivacyStatus, proto.privacyStatus);
|
|
764
764
|
}
|
|
765
765
|
return m;
|
|
766
766
|
}
|
|
@@ -782,7 +782,7 @@ class YoutubeCustomization {
|
|
|
782
782
|
}
|
|
783
783
|
}
|
|
784
784
|
|
|
785
|
-
function enumStringToValue$
|
|
785
|
+
function enumStringToValue$d(enumRef, value) {
|
|
786
786
|
if (typeof value === 'number') {
|
|
787
787
|
return value;
|
|
788
788
|
}
|
|
@@ -1011,7 +1011,7 @@ class PostEvent {
|
|
|
1011
1011
|
}
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
1014
|
-
function enumStringToValue$
|
|
1014
|
+
function enumStringToValue$c(enumRef, value) {
|
|
1015
1015
|
if (typeof value === 'number') {
|
|
1016
1016
|
return value;
|
|
1017
1017
|
}
|
|
@@ -1152,7 +1152,7 @@ class PixabayImage {
|
|
|
1152
1152
|
}
|
|
1153
1153
|
}
|
|
1154
1154
|
|
|
1155
|
-
function enumStringToValue$
|
|
1155
|
+
function enumStringToValue$b(enumRef, value) {
|
|
1156
1156
|
if (typeof value === 'number') {
|
|
1157
1157
|
return value;
|
|
1158
1158
|
}
|
|
@@ -1279,7 +1279,7 @@ class TwitterPostStats {
|
|
|
1279
1279
|
}
|
|
1280
1280
|
}
|
|
1281
1281
|
|
|
1282
|
-
function enumStringToValue$
|
|
1282
|
+
function enumStringToValue$a(enumRef, value) {
|
|
1283
1283
|
if (typeof value === 'number') {
|
|
1284
1284
|
return value;
|
|
1285
1285
|
}
|
|
@@ -1385,7 +1385,7 @@ class TenorMediaObject {
|
|
|
1385
1385
|
}
|
|
1386
1386
|
}
|
|
1387
1387
|
|
|
1388
|
-
function enumStringToValue$
|
|
1388
|
+
function enumStringToValue$9(enumRef, value) {
|
|
1389
1389
|
if (typeof value === 'number') {
|
|
1390
1390
|
return value;
|
|
1391
1391
|
}
|
|
@@ -1508,7 +1508,7 @@ class CreatePostTemplateRequest {
|
|
|
1508
1508
|
m.metaData = proto.metaData.map(MetaData.fromProto);
|
|
1509
1509
|
}
|
|
1510
1510
|
if (proto.postType) {
|
|
1511
|
-
m.postType = enumStringToValue$
|
|
1511
|
+
m.postType = enumStringToValue$9(PostType, proto.postType);
|
|
1512
1512
|
}
|
|
1513
1513
|
if (proto.youtubeCustomization) {
|
|
1514
1514
|
m.youtubeCustomization = YoutubeCustomization.fromProto(proto.youtubeCustomization);
|
|
@@ -2741,7 +2741,7 @@ class RemoveFromMultilocationPostRequest {
|
|
|
2741
2741
|
let m = new RemoveFromMultilocationPostRequest();
|
|
2742
2742
|
m = Object.assign(m, proto);
|
|
2743
2743
|
if (proto.reason) {
|
|
2744
|
-
m.reason = enumStringToValue$
|
|
2744
|
+
m.reason = enumStringToValue$9(RemoveReason, proto.reason);
|
|
2745
2745
|
}
|
|
2746
2746
|
if (proto.locations) {
|
|
2747
2747
|
m.locations = proto.locations.map(Location.fromProto);
|
|
@@ -2964,10 +2964,10 @@ class SuggestMessageRequest {
|
|
|
2964
2964
|
let m = new SuggestMessageRequest();
|
|
2965
2965
|
m = Object.assign(m, proto);
|
|
2966
2966
|
if (proto.length) {
|
|
2967
|
-
m.length = enumStringToValue$
|
|
2967
|
+
m.length = enumStringToValue$9(MessageLength, proto.length);
|
|
2968
2968
|
}
|
|
2969
2969
|
if (proto.type) {
|
|
2970
|
-
m.type = enumStringToValue$
|
|
2970
|
+
m.type = enumStringToValue$9(TemplateType, proto.type);
|
|
2971
2971
|
}
|
|
2972
2972
|
if (proto.metadata) {
|
|
2973
2973
|
m.metadata = proto.metadata.map(MetaData.fromProto);
|
|
@@ -3034,7 +3034,7 @@ class UpdatePostTemplateRequest {
|
|
|
3034
3034
|
m.metaData = proto.metaData.map(MetaData.fromProto);
|
|
3035
3035
|
}
|
|
3036
3036
|
if (proto.postType) {
|
|
3037
|
-
m.postType = enumStringToValue$
|
|
3037
|
+
m.postType = enumStringToValue$9(PostType, proto.postType);
|
|
3038
3038
|
}
|
|
3039
3039
|
if (proto.youtubeCustomization) {
|
|
3040
3040
|
m.youtubeCustomization = YoutubeCustomization.fromProto(proto.youtubeCustomization);
|
|
@@ -3101,7 +3101,7 @@ class UpdatePostTemplateRequest {
|
|
|
3101
3101
|
}
|
|
3102
3102
|
}
|
|
3103
3103
|
|
|
3104
|
-
function enumStringToValue$
|
|
3104
|
+
function enumStringToValue$8(enumRef, value) {
|
|
3105
3105
|
if (typeof value === 'number') {
|
|
3106
3106
|
return value;
|
|
3107
3107
|
}
|
|
@@ -3131,7 +3131,7 @@ class Access {
|
|
|
3131
3131
|
}
|
|
3132
3132
|
}
|
|
3133
3133
|
|
|
3134
|
-
function enumStringToValue$
|
|
3134
|
+
function enumStringToValue$7(enumRef, value) {
|
|
3135
3135
|
if (typeof value === 'number') {
|
|
3136
3136
|
return value;
|
|
3137
3137
|
}
|
|
@@ -3366,7 +3366,7 @@ class SocialPostV2 {
|
|
|
3366
3366
|
m.customization = PostCustomizationV2.fromProto(proto.customization);
|
|
3367
3367
|
}
|
|
3368
3368
|
if (proto.postType) {
|
|
3369
|
-
m.postType = enumStringToValue$
|
|
3369
|
+
m.postType = enumStringToValue$7(PostTypeV2, proto.postType);
|
|
3370
3370
|
}
|
|
3371
3371
|
if (proto.metadata) {
|
|
3372
3372
|
m.metadata = proto.metadata.map(MetadataV2.fromProto);
|
|
@@ -3466,7 +3466,7 @@ class YoutubeCustomizationV2 {
|
|
|
3466
3466
|
let m = new YoutubeCustomizationV2();
|
|
3467
3467
|
m = Object.assign(m, proto);
|
|
3468
3468
|
if (proto.privacyStatus) {
|
|
3469
|
-
m.privacyStatus = enumStringToValue$
|
|
3469
|
+
m.privacyStatus = enumStringToValue$7(YoutubeCustomizationV2PrivacyStatusV2, proto.privacyStatus);
|
|
3470
3470
|
}
|
|
3471
3471
|
return m;
|
|
3472
3472
|
}
|
|
@@ -3485,7 +3485,7 @@ class YoutubeCustomizationV2 {
|
|
|
3485
3485
|
}
|
|
3486
3486
|
}
|
|
3487
3487
|
|
|
3488
|
-
function enumStringToValue$
|
|
3488
|
+
function enumStringToValue$6(enumRef, value) {
|
|
3489
3489
|
if (typeof value === 'number') {
|
|
3490
3490
|
return value;
|
|
3491
3491
|
}
|
|
@@ -3496,7 +3496,7 @@ class Media {
|
|
|
3496
3496
|
let m = new Media();
|
|
3497
3497
|
m = Object.assign(m, proto);
|
|
3498
3498
|
if (proto.mediaType) {
|
|
3499
|
-
m.mediaType = enumStringToValue$
|
|
3499
|
+
m.mediaType = enumStringToValue$6(MediaType, proto.mediaType);
|
|
3500
3500
|
}
|
|
3501
3501
|
return m;
|
|
3502
3502
|
}
|
|
@@ -3518,7 +3518,7 @@ class Media {
|
|
|
3518
3518
|
}
|
|
3519
3519
|
}
|
|
3520
3520
|
|
|
3521
|
-
function enumStringToValue$
|
|
3521
|
+
function enumStringToValue$5(enumRef, value) {
|
|
3522
3522
|
if (typeof value === 'number') {
|
|
3523
3523
|
return value;
|
|
3524
3524
|
}
|
|
@@ -4053,7 +4053,7 @@ class UserLink {
|
|
|
4053
4053
|
}
|
|
4054
4054
|
}
|
|
4055
4055
|
|
|
4056
|
-
function enumStringToValue$
|
|
4056
|
+
function enumStringToValue$4(enumRef, value) {
|
|
4057
4057
|
if (typeof value === 'number') {
|
|
4058
4058
|
return value;
|
|
4059
4059
|
}
|
|
@@ -4279,7 +4279,7 @@ class GenerateAiRequest {
|
|
|
4279
4279
|
let m = new GenerateAiRequest();
|
|
4280
4280
|
m = Object.assign(m, proto);
|
|
4281
4281
|
if (proto.generateType) {
|
|
4282
|
-
m.generateType = enumStringToValue$
|
|
4282
|
+
m.generateType = enumStringToValue$4(GenerateType, proto.generateType);
|
|
4283
4283
|
}
|
|
4284
4284
|
return m;
|
|
4285
4285
|
}
|
|
@@ -4815,7 +4815,7 @@ class SocialPostOutput {
|
|
|
4815
4815
|
m.metadata = proto.metadata.map(MetadataV2.fromProto);
|
|
4816
4816
|
}
|
|
4817
4817
|
if (proto.status) {
|
|
4818
|
-
m.status = enumStringToValue$
|
|
4818
|
+
m.status = enumStringToValue$4(PostStatusV2, proto.status);
|
|
4819
4819
|
}
|
|
4820
4820
|
return m;
|
|
4821
4821
|
}
|
|
@@ -5033,7 +5033,7 @@ class UploadToStorageRequest {
|
|
|
5033
5033
|
let m = new UploadToStorageRequest();
|
|
5034
5034
|
m = Object.assign(m, proto);
|
|
5035
5035
|
if (proto.mediaType) {
|
|
5036
|
-
m.mediaType = enumStringToValue$
|
|
5036
|
+
m.mediaType = enumStringToValue$4(MediaType, proto.mediaType);
|
|
5037
5037
|
}
|
|
5038
5038
|
return m;
|
|
5039
5039
|
}
|
|
@@ -5101,7 +5101,7 @@ class UploadedMedia {
|
|
|
5101
5101
|
}
|
|
5102
5102
|
}
|
|
5103
5103
|
|
|
5104
|
-
function enumStringToValue$
|
|
5104
|
+
function enumStringToValue$3(enumRef, value) {
|
|
5105
5105
|
if (typeof value === 'number') {
|
|
5106
5106
|
return value;
|
|
5107
5107
|
}
|
|
@@ -5112,7 +5112,7 @@ class Action {
|
|
|
5112
5112
|
let m = new Action();
|
|
5113
5113
|
m = Object.assign(m, proto);
|
|
5114
5114
|
if (proto.actionType) {
|
|
5115
|
-
m.actionType = enumStringToValue$
|
|
5115
|
+
m.actionType = enumStringToValue$3(ActionType, proto.actionType);
|
|
5116
5116
|
}
|
|
5117
5117
|
return m;
|
|
5118
5118
|
}
|
|
@@ -5252,7 +5252,7 @@ class StartChatResponse {
|
|
|
5252
5252
|
}
|
|
5253
5253
|
}
|
|
5254
5254
|
|
|
5255
|
-
function enumStringToValue$
|
|
5255
|
+
function enumStringToValue$2(enumRef, value) {
|
|
5256
5256
|
if (typeof value === 'number') {
|
|
5257
5257
|
return value;
|
|
5258
5258
|
}
|
|
@@ -5263,7 +5263,7 @@ class ChatMessage {
|
|
|
5263
5263
|
let m = new ChatMessage();
|
|
5264
5264
|
m = Object.assign(m, proto);
|
|
5265
5265
|
if (proto.role) {
|
|
5266
|
-
m.role = enumStringToValue$
|
|
5266
|
+
m.role = enumStringToValue$2(Role, proto.role);
|
|
5267
5267
|
}
|
|
5268
5268
|
return m;
|
|
5269
5269
|
}
|
|
@@ -5343,7 +5343,7 @@ class SendMessageV2Response {
|
|
|
5343
5343
|
}
|
|
5344
5344
|
}
|
|
5345
5345
|
|
|
5346
|
-
function enumStringToValue(enumRef, value) {
|
|
5346
|
+
function enumStringToValue$1(enumRef, value) {
|
|
5347
5347
|
if (typeof value === 'number') {
|
|
5348
5348
|
return value;
|
|
5349
5349
|
}
|
|
@@ -5612,6 +5612,68 @@ class UpdateBlogConnectionRequest {
|
|
|
5612
5612
|
}
|
|
5613
5613
|
}
|
|
5614
5614
|
|
|
5615
|
+
function enumStringToValue(enumRef, value) {
|
|
5616
|
+
if (typeof value === 'number') {
|
|
5617
|
+
return value;
|
|
5618
|
+
}
|
|
5619
|
+
return enumRef[value];
|
|
5620
|
+
}
|
|
5621
|
+
class StatusRequest {
|
|
5622
|
+
static fromProto(proto) {
|
|
5623
|
+
let m = new StatusRequest();
|
|
5624
|
+
m = Object.assign(m, proto);
|
|
5625
|
+
return m;
|
|
5626
|
+
}
|
|
5627
|
+
constructor(kwargs) {
|
|
5628
|
+
if (!kwargs) {
|
|
5629
|
+
return;
|
|
5630
|
+
}
|
|
5631
|
+
Object.assign(this, kwargs);
|
|
5632
|
+
}
|
|
5633
|
+
toApiJson() {
|
|
5634
|
+
const toReturn = {};
|
|
5635
|
+
if (typeof this.businessId !== 'undefined') {
|
|
5636
|
+
toReturn['businessId'] = this.businessId;
|
|
5637
|
+
}
|
|
5638
|
+
if (typeof this.apiKey !== 'undefined') {
|
|
5639
|
+
toReturn['apiKey'] = this.apiKey;
|
|
5640
|
+
}
|
|
5641
|
+
if (typeof this.siteUrl !== 'undefined') {
|
|
5642
|
+
toReturn['siteUrl'] = this.siteUrl;
|
|
5643
|
+
}
|
|
5644
|
+
return toReturn;
|
|
5645
|
+
}
|
|
5646
|
+
}
|
|
5647
|
+
class StatusResponse {
|
|
5648
|
+
static fromProto(proto) {
|
|
5649
|
+
let m = new StatusResponse();
|
|
5650
|
+
m = Object.assign(m, proto);
|
|
5651
|
+
return m;
|
|
5652
|
+
}
|
|
5653
|
+
constructor(kwargs) {
|
|
5654
|
+
if (!kwargs) {
|
|
5655
|
+
return;
|
|
5656
|
+
}
|
|
5657
|
+
Object.assign(this, kwargs);
|
|
5658
|
+
}
|
|
5659
|
+
toApiJson() {
|
|
5660
|
+
const toReturn = {};
|
|
5661
|
+
if (typeof this.status !== 'undefined') {
|
|
5662
|
+
toReturn['status'] = this.status;
|
|
5663
|
+
}
|
|
5664
|
+
if (typeof this.version !== 'undefined') {
|
|
5665
|
+
toReturn['version'] = this.version;
|
|
5666
|
+
}
|
|
5667
|
+
if (typeof this.logo !== 'undefined') {
|
|
5668
|
+
toReturn['logo'] = this.logo;
|
|
5669
|
+
}
|
|
5670
|
+
if (typeof this.name !== 'undefined') {
|
|
5671
|
+
toReturn['name'] = this.name;
|
|
5672
|
+
}
|
|
5673
|
+
return toReturn;
|
|
5674
|
+
}
|
|
5675
|
+
}
|
|
5676
|
+
|
|
5615
5677
|
// *********************************
|
|
5616
5678
|
// Code generated by sdkgen
|
|
5617
5679
|
// DO NOT EDIT!.
|
|
@@ -6414,6 +6476,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6414
6476
|
args: [{ providedIn: 'root' }]
|
|
6415
6477
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6416
6478
|
|
|
6479
|
+
// *********************************
|
|
6480
|
+
// Code generated by sdkgen
|
|
6481
|
+
// DO NOT EDIT!.
|
|
6482
|
+
//
|
|
6483
|
+
// API Service.
|
|
6484
|
+
// *********************************
|
|
6485
|
+
class WordpressPluginApiService {
|
|
6486
|
+
constructor(http, hostService) {
|
|
6487
|
+
this.http = http;
|
|
6488
|
+
this.hostService = hostService;
|
|
6489
|
+
this._host = this.hostService.hostWithScheme;
|
|
6490
|
+
}
|
|
6491
|
+
apiOptions() {
|
|
6492
|
+
return {
|
|
6493
|
+
headers: new HttpHeaders({
|
|
6494
|
+
'Content-Type': 'application/json'
|
|
6495
|
+
}),
|
|
6496
|
+
withCredentials: true
|
|
6497
|
+
};
|
|
6498
|
+
}
|
|
6499
|
+
status(r) {
|
|
6500
|
+
const request = (r.toApiJson) ? r : new StatusRequest(r);
|
|
6501
|
+
return this.http.post(this._host + "/socialposts.v2.WordpressPluginService/Status", request.toApiJson(), this.apiOptions())
|
|
6502
|
+
.pipe(map(resp => StatusResponse.fromProto(resp)));
|
|
6503
|
+
}
|
|
6504
|
+
}
|
|
6505
|
+
WordpressPluginApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6506
|
+
WordpressPluginApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, providedIn: 'root' });
|
|
6507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, decorators: [{
|
|
6508
|
+
type: Injectable,
|
|
6509
|
+
args: [{ providedIn: 'root' }]
|
|
6510
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6511
|
+
|
|
6417
6512
|
// *********************************
|
|
6418
6513
|
// Code generated by sdkgen
|
|
6419
6514
|
// DO NOT EDIT!.
|
|
@@ -6872,9 +6967,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6872
6967
|
args: [{ providedIn: 'root' }]
|
|
6873
6968
|
}], ctorParameters: function () { return [{ type: BlogConnectionApiService }]; } });
|
|
6874
6969
|
|
|
6970
|
+
class WordpressPluginService {
|
|
6971
|
+
constructor(wordpressPluginApiService) {
|
|
6972
|
+
this.wordpressPluginApiService = wordpressPluginApiService;
|
|
6973
|
+
}
|
|
6974
|
+
status(statusRequestInterface) {
|
|
6975
|
+
return this.wordpressPluginApiService.status(statusRequestInterface);
|
|
6976
|
+
}
|
|
6977
|
+
}
|
|
6978
|
+
WordpressPluginService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginService, deps: [{ token: WordpressPluginApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6979
|
+
WordpressPluginService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginService, providedIn: 'root' });
|
|
6980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginService, decorators: [{
|
|
6981
|
+
type: Injectable,
|
|
6982
|
+
args: [{ providedIn: 'root' }]
|
|
6983
|
+
}], ctorParameters: function () { return [{ type: WordpressPluginApiService }]; } });
|
|
6984
|
+
|
|
6875
6985
|
/**
|
|
6876
6986
|
* Generated bundle index. Do not edit.
|
|
6877
6987
|
*/
|
|
6878
6988
|
|
|
6879
|
-
export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, BlogConnection, BlogConnectionService, CallToAction, CallToActionCallToActionType, ChatBotService, ChatBotV2Service, ChatMessage, Collection, ContentGenerationService, CreateBlogConnectionRequest, CreateBlogConnectionResponse, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, CuratedContentPost, DateRangeFilter, 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, 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, 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, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
|
|
6989
|
+
export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, BlogConnection, BlogConnectionService, CallToAction, CallToActionCallToActionType, ChatBotService, ChatBotV2Service, ChatMessage, Collection, ContentGenerationService, CreateBlogConnectionRequest, CreateBlogConnectionResponse, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, CuratedContentPost, DateRangeFilter, 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, 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 };
|
|
6880
6990
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|