@vendasta/social-posts 5.32.1 → 5.33.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/blog-connection.api.service.mjs +8 -7
- package/esm2020/lib/_internal/blog-posts.api.service.mjs +13 -8
- package/esm2020/lib/_internal/chat-bot-v2.api.service.mjs +8 -7
- package/esm2020/lib/_internal/chat-bot.api.service.mjs +8 -7
- package/esm2020/lib/_internal/common-ai-instructions.api.service.mjs +8 -7
- package/esm2020/lib/_internal/content-generation.api.service.mjs +8 -7
- package/esm2020/lib/_internal/curated-content.api.service.mjs +8 -7
- package/esm2020/lib/_internal/hash-tags.api.service.mjs +8 -7
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/wordpress-plugin.interface.mjs +1 -1
- package/esm2020/lib/_internal/linkedin.api.service.mjs +8 -7
- package/esm2020/lib/_internal/multilocation-post.api.service.mjs +8 -7
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/wordpress-plugin.mjs +27 -1
- package/esm2020/lib/_internal/partner-social-posts.api.service.mjs +8 -7
- package/esm2020/lib/_internal/pixabay-images.api.service.mjs +8 -7
- package/esm2020/lib/_internal/post-performance.api.service.mjs +8 -7
- package/esm2020/lib/_internal/post-templates.api.service.mjs +8 -7
- package/esm2020/lib/_internal/social-posts-v2.api.service.mjs +8 -7
- package/esm2020/lib/_internal/social-posts.api.service.mjs +8 -7
- package/esm2020/lib/_internal/tenor-gifs.api.service.mjs +8 -7
- package/esm2020/lib/_internal/unsplash.api.service.mjs +8 -7
- package/esm2020/lib/_internal/wordpress-plugin.api.service.mjs +8 -7
- package/esm2020/lib/blog-posts.service.mjs +4 -1
- package/fesm2015/vendasta-social-posts.mjs +132 -98
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +132 -98
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/blog-connection.api.service.d.ts +5 -3
- package/lib/_internal/blog-posts.api.service.d.ts +8 -5
- package/lib/_internal/chat-bot-v2.api.service.d.ts +5 -2
- package/lib/_internal/chat-bot.api.service.d.ts +5 -3
- package/lib/_internal/common-ai-instructions.api.service.d.ts +5 -2
- package/lib/_internal/content-generation.api.service.d.ts +5 -2
- package/lib/_internal/curated-content.api.service.d.ts +5 -2
- package/lib/_internal/hash-tags.api.service.d.ts +5 -3
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/wordpress-plugin.interface.d.ts +5 -0
- package/lib/_internal/linkedin.api.service.d.ts +5 -3
- package/lib/_internal/multilocation-post.api.service.d.ts +5 -3
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/wordpress-plugin.d.ts +8 -0
- package/lib/_internal/partner-social-posts.api.service.d.ts +5 -2
- package/lib/_internal/pixabay-images.api.service.d.ts +5 -2
- package/lib/_internal/post-performance.api.service.d.ts +5 -2
- package/lib/_internal/post-templates.api.service.d.ts +5 -3
- package/lib/_internal/social-posts-v2.api.service.d.ts +5 -3
- package/lib/_internal/social-posts.api.service.d.ts +5 -3
- package/lib/_internal/tenor-gifs.api.service.d.ts +5 -2
- package/lib/_internal/unsplash.api.service.d.ts +5 -2
- package/lib/_internal/wordpress-plugin.api.service.d.ts +5 -2
- package/lib/blog-posts.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable
|
|
2
|
+
import { Injectable } from '@angular/core';
|
|
3
3
|
import { of } from 'rxjs';
|
|
4
|
-
import
|
|
4
|
+
import * as i1 from '@angular/common/http';
|
|
5
|
+
import { HttpHeaders } from '@angular/common/http';
|
|
5
6
|
import { map } from 'rxjs/operators';
|
|
6
7
|
|
|
7
8
|
function enumStringToValue$g(enumRef, value) {
|
|
@@ -6067,6 +6068,32 @@ class CategoryResponse {
|
|
|
6067
6068
|
return toReturn;
|
|
6068
6069
|
}
|
|
6069
6070
|
}
|
|
6071
|
+
class DeleteBlogPostRequest {
|
|
6072
|
+
static fromProto(proto) {
|
|
6073
|
+
let m = new DeleteBlogPostRequest();
|
|
6074
|
+
m = Object.assign(m, proto);
|
|
6075
|
+
return m;
|
|
6076
|
+
}
|
|
6077
|
+
constructor(kwargs) {
|
|
6078
|
+
if (!kwargs) {
|
|
6079
|
+
return;
|
|
6080
|
+
}
|
|
6081
|
+
Object.assign(this, kwargs);
|
|
6082
|
+
}
|
|
6083
|
+
toApiJson() {
|
|
6084
|
+
const toReturn = {};
|
|
6085
|
+
if (typeof this.businessId !== 'undefined') {
|
|
6086
|
+
toReturn['businessId'] = this.businessId;
|
|
6087
|
+
}
|
|
6088
|
+
if (typeof this.internalPostId !== 'undefined') {
|
|
6089
|
+
toReturn['internalPostId'] = this.internalPostId;
|
|
6090
|
+
}
|
|
6091
|
+
if (typeof this.parentPostId !== 'undefined') {
|
|
6092
|
+
toReturn['parentPostId'] = this.parentPostId;
|
|
6093
|
+
}
|
|
6094
|
+
return toReturn;
|
|
6095
|
+
}
|
|
6096
|
+
}
|
|
6070
6097
|
class GetMultiBlogPostsRequest {
|
|
6071
6098
|
static fromProto(proto) {
|
|
6072
6099
|
let m = new GetMultiBlogPostsRequest();
|
|
@@ -6359,9 +6386,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6359
6386
|
// API Service.
|
|
6360
6387
|
// *********************************
|
|
6361
6388
|
class SocialPostsApiService {
|
|
6362
|
-
constructor() {
|
|
6363
|
-
this.
|
|
6364
|
-
this.
|
|
6389
|
+
constructor(http, hostService) {
|
|
6390
|
+
this.http = http;
|
|
6391
|
+
this.hostService = hostService;
|
|
6365
6392
|
this._host = this.hostService.hostWithScheme;
|
|
6366
6393
|
}
|
|
6367
6394
|
apiOptions() {
|
|
@@ -6412,12 +6439,12 @@ class SocialPostsApiService {
|
|
|
6412
6439
|
.pipe(map(resp => SuggestMessageResponse.fromProto(resp)));
|
|
6413
6440
|
}
|
|
6414
6441
|
}
|
|
6415
|
-
SocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6442
|
+
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 });
|
|
6416
6443
|
SocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, providedIn: 'root' });
|
|
6417
6444
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, decorators: [{
|
|
6418
6445
|
type: Injectable,
|
|
6419
6446
|
args: [{ providedIn: 'root' }]
|
|
6420
|
-
}] });
|
|
6447
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6421
6448
|
|
|
6422
6449
|
class SocialPostsService {
|
|
6423
6450
|
constructor(socialPostsApiService) {
|
|
@@ -6467,9 +6494,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6467
6494
|
// API Service.
|
|
6468
6495
|
// *********************************
|
|
6469
6496
|
class BlogConnectionApiService {
|
|
6470
|
-
constructor() {
|
|
6471
|
-
this.
|
|
6472
|
-
this.
|
|
6497
|
+
constructor(http, hostService) {
|
|
6498
|
+
this.http = http;
|
|
6499
|
+
this.hostService = hostService;
|
|
6473
6500
|
this._host = this.hostService.hostWithScheme;
|
|
6474
6501
|
}
|
|
6475
6502
|
apiOptions() {
|
|
@@ -6504,12 +6531,12 @@ class BlogConnectionApiService {
|
|
|
6504
6531
|
return this.http.post(this._host + "/socialposts.v2.BlogConnectionService/Delete", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
6505
6532
|
}
|
|
6506
6533
|
}
|
|
6507
|
-
BlogConnectionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6534
|
+
BlogConnectionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6508
6535
|
BlogConnectionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, providedIn: 'root' });
|
|
6509
6536
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, decorators: [{
|
|
6510
6537
|
type: Injectable,
|
|
6511
6538
|
args: [{ providedIn: 'root' }]
|
|
6512
|
-
}] });
|
|
6539
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6513
6540
|
|
|
6514
6541
|
// *********************************
|
|
6515
6542
|
// Code generated by sdkgen
|
|
@@ -6518,9 +6545,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6518
6545
|
// API Service.
|
|
6519
6546
|
// *********************************
|
|
6520
6547
|
class BlogPostsApiService {
|
|
6521
|
-
constructor() {
|
|
6522
|
-
this.
|
|
6523
|
-
this.
|
|
6548
|
+
constructor(http, hostService) {
|
|
6549
|
+
this.http = http;
|
|
6550
|
+
this.hostService = hostService;
|
|
6524
6551
|
this._host = this.hostService.hostWithScheme;
|
|
6525
6552
|
}
|
|
6526
6553
|
apiOptions() {
|
|
@@ -6540,13 +6567,17 @@ class BlogPostsApiService {
|
|
|
6540
6567
|
const request = (r.toApiJson) ? r : new UpdateBlogPostRequest(r);
|
|
6541
6568
|
return this.http.post(this._host + "/socialposts.v2.BlogPostsService/UpdateBlogPost", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
6542
6569
|
}
|
|
6570
|
+
deleteBlogPost(r) {
|
|
6571
|
+
const request = (r.toApiJson) ? r : new DeleteBlogPostRequest(r);
|
|
6572
|
+
return this.http.post(this._host + "/socialposts.v2.BlogPostsService/DeleteBlogPost", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
6573
|
+
}
|
|
6543
6574
|
}
|
|
6544
|
-
BlogPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6575
|
+
BlogPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6545
6576
|
BlogPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsApiService, providedIn: 'root' });
|
|
6546
6577
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsApiService, decorators: [{
|
|
6547
6578
|
type: Injectable,
|
|
6548
6579
|
args: [{ providedIn: 'root' }]
|
|
6549
|
-
}] });
|
|
6580
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6550
6581
|
|
|
6551
6582
|
// *********************************
|
|
6552
6583
|
// Code generated by sdkgen
|
|
@@ -6555,9 +6586,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6555
6586
|
// API Service.
|
|
6556
6587
|
// *********************************
|
|
6557
6588
|
class ChatBotApiService {
|
|
6558
|
-
constructor() {
|
|
6559
|
-
this.
|
|
6560
|
-
this.
|
|
6589
|
+
constructor(http, hostService) {
|
|
6590
|
+
this.http = http;
|
|
6591
|
+
this.hostService = hostService;
|
|
6561
6592
|
this._host = this.hostService.hostWithScheme;
|
|
6562
6593
|
}
|
|
6563
6594
|
apiOptions() {
|
|
@@ -6583,12 +6614,12 @@ class ChatBotApiService {
|
|
|
6583
6614
|
return this.http.post(this._host + "/socialposts.v2.ChatBot/EndChat", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
6584
6615
|
}
|
|
6585
6616
|
}
|
|
6586
|
-
ChatBotApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6617
|
+
ChatBotApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6587
6618
|
ChatBotApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, providedIn: 'root' });
|
|
6588
6619
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, decorators: [{
|
|
6589
6620
|
type: Injectable,
|
|
6590
6621
|
args: [{ providedIn: 'root' }]
|
|
6591
|
-
}] });
|
|
6622
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6592
6623
|
|
|
6593
6624
|
// *********************************
|
|
6594
6625
|
// Code generated by sdkgen
|
|
@@ -6597,9 +6628,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6597
6628
|
// API Service.
|
|
6598
6629
|
// *********************************
|
|
6599
6630
|
class ChatBotV2ApiService {
|
|
6600
|
-
constructor() {
|
|
6601
|
-
this.
|
|
6602
|
-
this.
|
|
6631
|
+
constructor(http, hostService) {
|
|
6632
|
+
this.http = http;
|
|
6633
|
+
this.hostService = hostService;
|
|
6603
6634
|
this._host = this.hostService.hostWithScheme;
|
|
6604
6635
|
}
|
|
6605
6636
|
apiOptions() {
|
|
@@ -6616,12 +6647,12 @@ class ChatBotV2ApiService {
|
|
|
6616
6647
|
.pipe(map(resp => SendMessageV2Response.fromProto(resp)));
|
|
6617
6648
|
}
|
|
6618
6649
|
}
|
|
6619
|
-
ChatBotV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6650
|
+
ChatBotV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6620
6651
|
ChatBotV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, providedIn: 'root' });
|
|
6621
6652
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, decorators: [{
|
|
6622
6653
|
type: Injectable,
|
|
6623
6654
|
args: [{ providedIn: 'root' }]
|
|
6624
|
-
}] });
|
|
6655
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6625
6656
|
|
|
6626
6657
|
// *********************************
|
|
6627
6658
|
// Code generated by sdkgen
|
|
@@ -6630,9 +6661,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6630
6661
|
// API Service.
|
|
6631
6662
|
// *********************************
|
|
6632
6663
|
class CommonAiInstructionsApiService {
|
|
6633
|
-
constructor() {
|
|
6634
|
-
this.
|
|
6635
|
-
this.
|
|
6664
|
+
constructor(http, hostService) {
|
|
6665
|
+
this.http = http;
|
|
6666
|
+
this.hostService = hostService;
|
|
6636
6667
|
this._host = this.hostService.hostWithScheme;
|
|
6637
6668
|
}
|
|
6638
6669
|
apiOptions() {
|
|
@@ -6659,12 +6690,12 @@ class CommonAiInstructionsApiService {
|
|
|
6659
6690
|
.pipe(map(resp => GetCommonAiInstructionsResponse.fromProto(resp)));
|
|
6660
6691
|
}
|
|
6661
6692
|
}
|
|
6662
|
-
CommonAiInstructionsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6693
|
+
CommonAiInstructionsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6663
6694
|
CommonAiInstructionsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, providedIn: 'root' });
|
|
6664
6695
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, decorators: [{
|
|
6665
6696
|
type: Injectable,
|
|
6666
6697
|
args: [{ providedIn: 'root' }]
|
|
6667
|
-
}] });
|
|
6698
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6668
6699
|
|
|
6669
6700
|
// *********************************
|
|
6670
6701
|
// Code generated by sdkgen
|
|
@@ -6673,9 +6704,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6673
6704
|
// API Service.
|
|
6674
6705
|
// *********************************
|
|
6675
6706
|
class ContentGenerationApiService {
|
|
6676
|
-
constructor() {
|
|
6677
|
-
this.
|
|
6678
|
-
this.
|
|
6707
|
+
constructor(http, hostService) {
|
|
6708
|
+
this.http = http;
|
|
6709
|
+
this.hostService = hostService;
|
|
6679
6710
|
this._host = this.hostService.hostWithScheme;
|
|
6680
6711
|
}
|
|
6681
6712
|
apiOptions() {
|
|
@@ -6697,12 +6728,12 @@ class ContentGenerationApiService {
|
|
|
6697
6728
|
.pipe(map(resp => GenerateAiResponse.fromProto(resp)));
|
|
6698
6729
|
}
|
|
6699
6730
|
}
|
|
6700
|
-
ContentGenerationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6731
|
+
ContentGenerationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6701
6732
|
ContentGenerationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, providedIn: 'root' });
|
|
6702
6733
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, decorators: [{
|
|
6703
6734
|
type: Injectable,
|
|
6704
6735
|
args: [{ providedIn: 'root' }]
|
|
6705
|
-
}] });
|
|
6736
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6706
6737
|
|
|
6707
6738
|
// *********************************
|
|
6708
6739
|
// Code generated by sdkgen
|
|
@@ -6711,9 +6742,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6711
6742
|
// API Service.
|
|
6712
6743
|
// *********************************
|
|
6713
6744
|
class CuratedContentApiService {
|
|
6714
|
-
constructor() {
|
|
6715
|
-
this.
|
|
6716
|
-
this.
|
|
6745
|
+
constructor(http, hostService) {
|
|
6746
|
+
this.http = http;
|
|
6747
|
+
this.hostService = hostService;
|
|
6717
6748
|
this._host = this.hostService.hostWithScheme;
|
|
6718
6749
|
}
|
|
6719
6750
|
apiOptions() {
|
|
@@ -6730,12 +6761,12 @@ class CuratedContentApiService {
|
|
|
6730
6761
|
.pipe(map(resp => ListCuratedContentResponse.fromProto(resp)));
|
|
6731
6762
|
}
|
|
6732
6763
|
}
|
|
6733
|
-
CuratedContentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6764
|
+
CuratedContentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6734
6765
|
CuratedContentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, providedIn: 'root' });
|
|
6735
6766
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, decorators: [{
|
|
6736
6767
|
type: Injectable,
|
|
6737
6768
|
args: [{ providedIn: 'root' }]
|
|
6738
|
-
}] });
|
|
6769
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6739
6770
|
|
|
6740
6771
|
// *********************************
|
|
6741
6772
|
// Code generated by sdkgen
|
|
@@ -6744,9 +6775,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6744
6775
|
// API Service.
|
|
6745
6776
|
// *********************************
|
|
6746
6777
|
class HashTagsApiService {
|
|
6747
|
-
constructor() {
|
|
6748
|
-
this.
|
|
6749
|
-
this.
|
|
6778
|
+
constructor(http, hostService) {
|
|
6779
|
+
this.http = http;
|
|
6780
|
+
this.hostService = hostService;
|
|
6750
6781
|
this._host = this.hostService.hostWithScheme;
|
|
6751
6782
|
}
|
|
6752
6783
|
apiOptions() {
|
|
@@ -6771,12 +6802,12 @@ class HashTagsApiService {
|
|
|
6771
6802
|
.pipe(map(resp => SearchHashtagResponse.fromProto(resp)));
|
|
6772
6803
|
}
|
|
6773
6804
|
}
|
|
6774
|
-
HashTagsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6805
|
+
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 });
|
|
6775
6806
|
HashTagsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, providedIn: 'root' });
|
|
6776
6807
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, decorators: [{
|
|
6777
6808
|
type: Injectable,
|
|
6778
6809
|
args: [{ providedIn: 'root' }]
|
|
6779
|
-
}] });
|
|
6810
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6780
6811
|
|
|
6781
6812
|
// *********************************
|
|
6782
6813
|
// Code generated by sdkgen
|
|
@@ -6785,9 +6816,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6785
6816
|
// API Service.
|
|
6786
6817
|
// *********************************
|
|
6787
6818
|
class LinkedinApiService {
|
|
6788
|
-
constructor() {
|
|
6789
|
-
this.
|
|
6790
|
-
this.
|
|
6819
|
+
constructor(http, hostService) {
|
|
6820
|
+
this.http = http;
|
|
6821
|
+
this.hostService = hostService;
|
|
6791
6822
|
this._host = this.hostService.hostWithScheme;
|
|
6792
6823
|
}
|
|
6793
6824
|
apiOptions() {
|
|
@@ -6808,12 +6839,12 @@ class LinkedinApiService {
|
|
|
6808
6839
|
.pipe(map(resp => MediaUploadResponse.fromProto(resp)));
|
|
6809
6840
|
}
|
|
6810
6841
|
}
|
|
6811
|
-
LinkedinApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6842
|
+
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 });
|
|
6812
6843
|
LinkedinApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, providedIn: 'root' });
|
|
6813
6844
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, decorators: [{
|
|
6814
6845
|
type: Injectable,
|
|
6815
6846
|
args: [{ providedIn: 'root' }]
|
|
6816
|
-
}] });
|
|
6847
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6817
6848
|
|
|
6818
6849
|
// *********************************
|
|
6819
6850
|
// Code generated by sdkgen
|
|
@@ -6822,9 +6853,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6822
6853
|
// API Service.
|
|
6823
6854
|
// *********************************
|
|
6824
6855
|
class MultilocationPostApiService {
|
|
6825
|
-
constructor() {
|
|
6826
|
-
this.
|
|
6827
|
-
this.
|
|
6856
|
+
constructor(http, hostService) {
|
|
6857
|
+
this.http = http;
|
|
6858
|
+
this.hostService = hostService;
|
|
6828
6859
|
this._host = this.hostService.hostWithScheme;
|
|
6829
6860
|
}
|
|
6830
6861
|
apiOptions() {
|
|
@@ -6864,12 +6895,12 @@ class MultilocationPostApiService {
|
|
|
6864
6895
|
.pipe(map(resp => GetMultilocationPostResponse.fromProto(resp)));
|
|
6865
6896
|
}
|
|
6866
6897
|
}
|
|
6867
|
-
MultilocationPostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6898
|
+
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 });
|
|
6868
6899
|
MultilocationPostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, providedIn: 'root' });
|
|
6869
6900
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, decorators: [{
|
|
6870
6901
|
type: Injectable,
|
|
6871
6902
|
args: [{ providedIn: 'root' }]
|
|
6872
|
-
}] });
|
|
6903
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6873
6904
|
|
|
6874
6905
|
// *********************************
|
|
6875
6906
|
// Code generated by sdkgen
|
|
@@ -6878,9 +6909,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6878
6909
|
// API Service.
|
|
6879
6910
|
// *********************************
|
|
6880
6911
|
class PartnerSocialPostsApiService {
|
|
6881
|
-
constructor() {
|
|
6882
|
-
this.
|
|
6883
|
-
this.
|
|
6912
|
+
constructor(http, hostService) {
|
|
6913
|
+
this.http = http;
|
|
6914
|
+
this.hostService = hostService;
|
|
6884
6915
|
this._host = this.hostService.hostWithScheme;
|
|
6885
6916
|
}
|
|
6886
6917
|
apiOptions() {
|
|
@@ -6902,12 +6933,12 @@ class PartnerSocialPostsApiService {
|
|
|
6902
6933
|
.pipe(map(resp => PartnerListScheduledPostsResponse.fromProto(resp)));
|
|
6903
6934
|
}
|
|
6904
6935
|
}
|
|
6905
|
-
PartnerSocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6936
|
+
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 });
|
|
6906
6937
|
PartnerSocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, providedIn: 'root' });
|
|
6907
6938
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, decorators: [{
|
|
6908
6939
|
type: Injectable,
|
|
6909
6940
|
args: [{ providedIn: 'root' }]
|
|
6910
|
-
}] });
|
|
6941
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6911
6942
|
|
|
6912
6943
|
// *********************************
|
|
6913
6944
|
// Code generated by sdkgen
|
|
@@ -6916,9 +6947,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6916
6947
|
// API Service.
|
|
6917
6948
|
// *********************************
|
|
6918
6949
|
class PixabayImagesApiService {
|
|
6919
|
-
constructor() {
|
|
6920
|
-
this.
|
|
6921
|
-
this.
|
|
6950
|
+
constructor(http, hostService) {
|
|
6951
|
+
this.http = http;
|
|
6952
|
+
this.hostService = hostService;
|
|
6922
6953
|
this._host = this.hostService.hostWithScheme;
|
|
6923
6954
|
}
|
|
6924
6955
|
apiOptions() {
|
|
@@ -6935,12 +6966,12 @@ class PixabayImagesApiService {
|
|
|
6935
6966
|
.pipe(map(resp => ListPixabayImagesResponse.fromProto(resp)));
|
|
6936
6967
|
}
|
|
6937
6968
|
}
|
|
6938
|
-
PixabayImagesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6969
|
+
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 });
|
|
6939
6970
|
PixabayImagesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, providedIn: 'root' });
|
|
6940
6971
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, decorators: [{
|
|
6941
6972
|
type: Injectable,
|
|
6942
6973
|
args: [{ providedIn: 'root' }]
|
|
6943
|
-
}] });
|
|
6974
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6944
6975
|
|
|
6945
6976
|
// *********************************
|
|
6946
6977
|
// Code generated by sdkgen
|
|
@@ -6949,9 +6980,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6949
6980
|
// API Service.
|
|
6950
6981
|
// *********************************
|
|
6951
6982
|
class PostPerformanceApiService {
|
|
6952
|
-
constructor() {
|
|
6953
|
-
this.
|
|
6954
|
-
this.
|
|
6983
|
+
constructor(http, hostService) {
|
|
6984
|
+
this.http = http;
|
|
6985
|
+
this.hostService = hostService;
|
|
6955
6986
|
this._host = this.hostService.hostWithScheme;
|
|
6956
6987
|
}
|
|
6957
6988
|
apiOptions() {
|
|
@@ -6973,12 +7004,12 @@ class PostPerformanceApiService {
|
|
|
6973
7004
|
.pipe(map(resp => GetGeneratedCSVForPerformanceStatsResponse.fromProto(resp)));
|
|
6974
7005
|
}
|
|
6975
7006
|
}
|
|
6976
|
-
PostPerformanceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7007
|
+
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 });
|
|
6977
7008
|
PostPerformanceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, providedIn: 'root' });
|
|
6978
7009
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, decorators: [{
|
|
6979
7010
|
type: Injectable,
|
|
6980
7011
|
args: [{ providedIn: 'root' }]
|
|
6981
|
-
}] });
|
|
7012
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
6982
7013
|
|
|
6983
7014
|
// *********************************
|
|
6984
7015
|
// Code generated by sdkgen
|
|
@@ -6987,9 +7018,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6987
7018
|
// API Service.
|
|
6988
7019
|
// *********************************
|
|
6989
7020
|
class PostTemplatesApiService {
|
|
6990
|
-
constructor() {
|
|
6991
|
-
this.
|
|
6992
|
-
this.
|
|
7021
|
+
constructor(http, hostService) {
|
|
7022
|
+
this.http = http;
|
|
7023
|
+
this.hostService = hostService;
|
|
6993
7024
|
this._host = this.hostService.hostWithScheme;
|
|
6994
7025
|
}
|
|
6995
7026
|
apiOptions() {
|
|
@@ -7024,12 +7055,12 @@ class PostTemplatesApiService {
|
|
|
7024
7055
|
return this.http.post(this._host + "/socialposts.v1.PostTemplates/DeletePostTemplate", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
7025
7056
|
}
|
|
7026
7057
|
}
|
|
7027
|
-
PostTemplatesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7058
|
+
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 });
|
|
7028
7059
|
PostTemplatesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, providedIn: 'root' });
|
|
7029
7060
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, decorators: [{
|
|
7030
7061
|
type: Injectable,
|
|
7031
7062
|
args: [{ providedIn: 'root' }]
|
|
7032
|
-
}] });
|
|
7063
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
7033
7064
|
|
|
7034
7065
|
// *********************************
|
|
7035
7066
|
// Code generated by sdkgen
|
|
@@ -7038,9 +7069,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7038
7069
|
// API Service.
|
|
7039
7070
|
// *********************************
|
|
7040
7071
|
class SocialPostsV2ApiService {
|
|
7041
|
-
constructor() {
|
|
7042
|
-
this.
|
|
7043
|
-
this.
|
|
7072
|
+
constructor(http, hostService) {
|
|
7073
|
+
this.http = http;
|
|
7074
|
+
this.hostService = hostService;
|
|
7044
7075
|
this._host = this.hostService.hostWithScheme;
|
|
7045
7076
|
}
|
|
7046
7077
|
apiOptions() {
|
|
@@ -7081,12 +7112,12 @@ class SocialPostsV2ApiService {
|
|
|
7081
7112
|
return this.http.post(this._host + "/socialposts.v2.SocialPostsV2/RepostSocialPost", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
|
|
7082
7113
|
}
|
|
7083
7114
|
}
|
|
7084
|
-
SocialPostsV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7115
|
+
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 });
|
|
7085
7116
|
SocialPostsV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, providedIn: 'root' });
|
|
7086
7117
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, decorators: [{
|
|
7087
7118
|
type: Injectable,
|
|
7088
7119
|
args: [{ providedIn: 'root' }]
|
|
7089
|
-
}] });
|
|
7120
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
7090
7121
|
|
|
7091
7122
|
// *********************************
|
|
7092
7123
|
// Code generated by sdkgen
|
|
@@ -7095,9 +7126,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7095
7126
|
// API Service.
|
|
7096
7127
|
// *********************************
|
|
7097
7128
|
class TenorGifsApiService {
|
|
7098
|
-
constructor() {
|
|
7099
|
-
this.
|
|
7100
|
-
this.
|
|
7129
|
+
constructor(http, hostService) {
|
|
7130
|
+
this.http = http;
|
|
7131
|
+
this.hostService = hostService;
|
|
7101
7132
|
this._host = this.hostService.hostWithScheme;
|
|
7102
7133
|
}
|
|
7103
7134
|
apiOptions() {
|
|
@@ -7119,12 +7150,12 @@ class TenorGifsApiService {
|
|
|
7119
7150
|
.pipe(map(resp => ListTenorGifsResponse.fromProto(resp)));
|
|
7120
7151
|
}
|
|
7121
7152
|
}
|
|
7122
|
-
TenorGifsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7153
|
+
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 });
|
|
7123
7154
|
TenorGifsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, providedIn: 'root' });
|
|
7124
7155
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, decorators: [{
|
|
7125
7156
|
type: Injectable,
|
|
7126
7157
|
args: [{ providedIn: 'root' }]
|
|
7127
|
-
}] });
|
|
7158
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
7128
7159
|
|
|
7129
7160
|
// *********************************
|
|
7130
7161
|
// Code generated by sdkgen
|
|
@@ -7133,9 +7164,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7133
7164
|
// API Service.
|
|
7134
7165
|
// *********************************
|
|
7135
7166
|
class UnsplashApiService {
|
|
7136
|
-
constructor() {
|
|
7137
|
-
this.
|
|
7138
|
-
this.
|
|
7167
|
+
constructor(http, hostService) {
|
|
7168
|
+
this.http = http;
|
|
7169
|
+
this.hostService = hostService;
|
|
7139
7170
|
this._host = this.hostService.hostWithScheme;
|
|
7140
7171
|
}
|
|
7141
7172
|
apiOptions() {
|
|
@@ -7157,12 +7188,12 @@ class UnsplashApiService {
|
|
|
7157
7188
|
.pipe(map(resp => UploadToStorageResponse.fromProto(resp)));
|
|
7158
7189
|
}
|
|
7159
7190
|
}
|
|
7160
|
-
UnsplashApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7191
|
+
UnsplashApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7161
7192
|
UnsplashApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, providedIn: 'root' });
|
|
7162
7193
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, decorators: [{
|
|
7163
7194
|
type: Injectable,
|
|
7164
7195
|
args: [{ providedIn: 'root' }]
|
|
7165
|
-
}] });
|
|
7196
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
7166
7197
|
|
|
7167
7198
|
// *********************************
|
|
7168
7199
|
// Code generated by sdkgen
|
|
@@ -7171,9 +7202,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7171
7202
|
// API Service.
|
|
7172
7203
|
// *********************************
|
|
7173
7204
|
class WordpressPluginApiService {
|
|
7174
|
-
constructor() {
|
|
7175
|
-
this.
|
|
7176
|
-
this.
|
|
7205
|
+
constructor(http, hostService) {
|
|
7206
|
+
this.http = http;
|
|
7207
|
+
this.hostService = hostService;
|
|
7177
7208
|
this._host = this.hostService.hostWithScheme;
|
|
7178
7209
|
}
|
|
7179
7210
|
apiOptions() {
|
|
@@ -7205,12 +7236,12 @@ class WordpressPluginApiService {
|
|
|
7205
7236
|
.pipe(map(resp => PublishPostResponse.fromProto(resp)));
|
|
7206
7237
|
}
|
|
7207
7238
|
}
|
|
7208
|
-
WordpressPluginApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7239
|
+
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 });
|
|
7209
7240
|
WordpressPluginApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, providedIn: 'root' });
|
|
7210
7241
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WordpressPluginApiService, decorators: [{
|
|
7211
7242
|
type: Injectable,
|
|
7212
7243
|
args: [{ providedIn: 'root' }]
|
|
7213
|
-
}] });
|
|
7244
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
|
7214
7245
|
|
|
7215
7246
|
// *********************************
|
|
7216
7247
|
// Code generated by sdkgen
|
|
@@ -7707,6 +7738,9 @@ class BlogPostsService {
|
|
|
7707
7738
|
updateBlogPost(updateBlogPostRequestInterface) {
|
|
7708
7739
|
return this.blogPostsApiService.updateBlogPost(updateBlogPostRequestInterface);
|
|
7709
7740
|
}
|
|
7741
|
+
deleteBlogPost(DeleteBlogPostRequestInterface) {
|
|
7742
|
+
return this.blogPostsApiService.deleteBlogPost(DeleteBlogPostRequestInterface);
|
|
7743
|
+
}
|
|
7710
7744
|
}
|
|
7711
7745
|
BlogPostsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsService, deps: [{ token: BlogPostsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7712
7746
|
BlogPostsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogPostsService, providedIn: 'root' });
|
|
@@ -7719,5 +7753,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7719
7753
|
* Generated bundle index. Do not edit.
|
|
7720
7754
|
*/
|
|
7721
7755
|
|
|
7722
|
-
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 };
|
|
7756
|
+
export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, Author$1 as Author, AuthorsRequest, AuthorsResponse, BlogConnection, BlogConnectionService, BlogImage, BlogPost, BlogPostCustomization, BlogPostsService, BlogVideo, CallToAction, CallToActionCallToActionType, Category$1 as Category, CategoryRequest, CategoryResponse, ChatBotService, ChatBotV2Service, ChatMessage, Collection, ContentGenerationService, ContentLength, CreateBlogConnectionRequest, CreateBlogConnectionResponse, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, CuratedContentPost, DateRangeFilter, DeleteBlogConnectionRequest, DeleteBlogPostRequest, 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 };
|
|
7723
7757
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|