@vendasta/social-posts 5.23.0 → 5.24.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.
Files changed (49) hide show
  1. package/esm2020/lib/_internal/blog-connection.api.service.mjs +14 -8
  2. package/esm2020/lib/_internal/chat-bot-v2.api.service.mjs +8 -7
  3. package/esm2020/lib/_internal/chat-bot.api.service.mjs +8 -7
  4. package/esm2020/lib/_internal/common-ai-instructions.api.service.mjs +8 -7
  5. package/esm2020/lib/_internal/content-generation.api.service.mjs +8 -7
  6. package/esm2020/lib/_internal/curated-content.api.service.mjs +8 -7
  7. package/esm2020/lib/_internal/hash-tags.api.service.mjs +8 -7
  8. package/esm2020/lib/_internal/interfaces/blog-connection.interface.mjs +1 -1
  9. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  10. package/esm2020/lib/_internal/linkedin.api.service.mjs +8 -7
  11. package/esm2020/lib/_internal/multilocation-post.api.service.mjs +8 -7
  12. package/esm2020/lib/_internal/objects/blog-connection.mjs +53 -1
  13. package/esm2020/lib/_internal/objects/index.mjs +2 -2
  14. package/esm2020/lib/_internal/partner-social-posts.api.service.mjs +8 -7
  15. package/esm2020/lib/_internal/pixabay-images.api.service.mjs +8 -7
  16. package/esm2020/lib/_internal/post-performance.api.service.mjs +8 -7
  17. package/esm2020/lib/_internal/post-templates.api.service.mjs +8 -7
  18. package/esm2020/lib/_internal/social-posts-v2.api.service.mjs +8 -7
  19. package/esm2020/lib/_internal/social-posts.api.service.mjs +8 -7
  20. package/esm2020/lib/_internal/tenor-gifs.api.service.mjs +8 -7
  21. package/esm2020/lib/_internal/unsplash.api.service.mjs +8 -7
  22. package/esm2020/lib/blog-connection.service.mjs +7 -1
  23. package/fesm2015/vendasta-social-posts.mjs +152 -88
  24. package/fesm2015/vendasta-social-posts.mjs.map +1 -1
  25. package/fesm2020/vendasta-social-posts.mjs +152 -88
  26. package/fesm2020/vendasta-social-posts.mjs.map +1 -1
  27. package/lib/_internal/blog-connection.api.service.d.ts +8 -5
  28. package/lib/_internal/chat-bot-v2.api.service.d.ts +5 -2
  29. package/lib/_internal/chat-bot.api.service.d.ts +5 -3
  30. package/lib/_internal/common-ai-instructions.api.service.d.ts +5 -2
  31. package/lib/_internal/content-generation.api.service.d.ts +5 -2
  32. package/lib/_internal/curated-content.api.service.d.ts +5 -2
  33. package/lib/_internal/hash-tags.api.service.d.ts +5 -3
  34. package/lib/_internal/interfaces/blog-connection.interface.d.ts +9 -0
  35. package/lib/_internal/interfaces/index.d.ts +1 -1
  36. package/lib/_internal/linkedin.api.service.d.ts +5 -3
  37. package/lib/_internal/multilocation-post.api.service.d.ts +5 -3
  38. package/lib/_internal/objects/blog-connection.d.ts +15 -0
  39. package/lib/_internal/objects/index.d.ts +1 -1
  40. package/lib/_internal/partner-social-posts.api.service.d.ts +5 -2
  41. package/lib/_internal/pixabay-images.api.service.d.ts +5 -2
  42. package/lib/_internal/post-performance.api.service.d.ts +5 -2
  43. package/lib/_internal/post-templates.api.service.d.ts +5 -3
  44. package/lib/_internal/social-posts-v2.api.service.d.ts +5 -3
  45. package/lib/_internal/social-posts.api.service.d.ts +5 -3
  46. package/lib/_internal/tenor-gifs.api.service.d.ts +5 -2
  47. package/lib/_internal/unsplash.api.service.d.ts +5 -2
  48. package/lib/blog-connection.service.d.ts +4 -1
  49. package/package.json +1 -1
@@ -1,7 +1,8 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, inject } from '@angular/core';
2
+ import { Injectable } from '@angular/core';
3
3
  import { of } from 'rxjs';
4
- import { HttpClient, HttpHeaders } from '@angular/common/http';
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$f(enumRef, value) {
@@ -5278,6 +5279,9 @@ class BlogConnection {
5278
5279
  if (typeof this.updated !== 'undefined' && this.updated !== null) {
5279
5280
  toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
5280
5281
  }
5282
+ if (typeof this.siteUrl !== 'undefined') {
5283
+ toReturn['siteUrl'] = this.siteUrl;
5284
+ }
5281
5285
  return toReturn;
5282
5286
  }
5283
5287
  }
@@ -5316,6 +5320,9 @@ class CreateBlogConnectionRequest {
5316
5320
  if (typeof this.version !== 'undefined') {
5317
5321
  toReturn['version'] = this.version;
5318
5322
  }
5323
+ if (typeof this.siteUrl !== 'undefined') {
5324
+ toReturn['siteUrl'] = this.siteUrl;
5325
+ }
5319
5326
  return toReturn;
5320
5327
  }
5321
5328
  }
@@ -5339,6 +5346,49 @@ class CreateBlogConnectionResponse {
5339
5346
  return toReturn;
5340
5347
  }
5341
5348
  }
5349
+ class GetBlogConnectionRequest {
5350
+ static fromProto(proto) {
5351
+ let m = new GetBlogConnectionRequest();
5352
+ m = Object.assign(m, proto);
5353
+ return m;
5354
+ }
5355
+ constructor(kwargs) {
5356
+ if (!kwargs) {
5357
+ return;
5358
+ }
5359
+ Object.assign(this, kwargs);
5360
+ }
5361
+ toApiJson() {
5362
+ const toReturn = {};
5363
+ if (typeof this.socialServiceId !== 'undefined') {
5364
+ toReturn['socialServiceId'] = this.socialServiceId;
5365
+ }
5366
+ return toReturn;
5367
+ }
5368
+ }
5369
+ class GetBlogConnectionResponse {
5370
+ static fromProto(proto) {
5371
+ let m = new GetBlogConnectionResponse();
5372
+ m = Object.assign(m, proto);
5373
+ if (proto.blogConnection) {
5374
+ m.blogConnection = BlogConnection.fromProto(proto.blogConnection);
5375
+ }
5376
+ return m;
5377
+ }
5378
+ constructor(kwargs) {
5379
+ if (!kwargs) {
5380
+ return;
5381
+ }
5382
+ Object.assign(this, kwargs);
5383
+ }
5384
+ toApiJson() {
5385
+ const toReturn = {};
5386
+ if (typeof this.blogConnection !== 'undefined' && this.blogConnection !== null) {
5387
+ toReturn['blogConnection'] = 'toApiJson' in this.blogConnection ? this.blogConnection.toApiJson() : this.blogConnection;
5388
+ }
5389
+ return toReturn;
5390
+ }
5391
+ }
5342
5392
  class ListBlogConnectionRequest {
5343
5393
  static fromProto(proto) {
5344
5394
  let m = new ListBlogConnectionRequest();
@@ -5435,6 +5485,9 @@ class UpdateBlogConnectionRequest {
5435
5485
  if (typeof this.version !== 'undefined') {
5436
5486
  toReturn['version'] = this.version;
5437
5487
  }
5488
+ if (typeof this.siteUrl !== 'undefined') {
5489
+ toReturn['siteUrl'] = this.siteUrl;
5490
+ }
5438
5491
  return toReturn;
5439
5492
  }
5440
5493
  }
@@ -5477,9 +5530,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5477
5530
  // API Service.
5478
5531
  // *********************************
5479
5532
  class SocialPostsApiService {
5480
- constructor() {
5481
- this.hostService = inject(HostService);
5482
- this.http = inject(HttpClient);
5533
+ constructor(http, hostService) {
5534
+ this.http = http;
5535
+ this.hostService = hostService;
5483
5536
  this._host = this.hostService.hostWithScheme;
5484
5537
  }
5485
5538
  apiOptions() {
@@ -5530,12 +5583,12 @@ class SocialPostsApiService {
5530
5583
  .pipe(map(resp => SuggestMessageResponse.fromProto(resp)));
5531
5584
  }
5532
5585
  }
5533
- SocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5586
+ 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 });
5534
5587
  SocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, providedIn: 'root' });
5535
5588
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsApiService, decorators: [{
5536
5589
  type: Injectable,
5537
5590
  args: [{ providedIn: 'root' }]
5538
- }] });
5591
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5539
5592
 
5540
5593
  class SocialPostsService {
5541
5594
  constructor(socialPostsApiService) {
@@ -5585,9 +5638,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5585
5638
  // API Service.
5586
5639
  // *********************************
5587
5640
  class BlogConnectionApiService {
5588
- constructor() {
5589
- this.hostService = inject(HostService);
5590
- this.http = inject(HttpClient);
5641
+ constructor(http, hostService) {
5642
+ this.http = http;
5643
+ this.hostService = hostService;
5591
5644
  this._host = this.hostService.hostWithScheme;
5592
5645
  }
5593
5646
  apiOptions() {
@@ -5612,13 +5665,18 @@ class BlogConnectionApiService {
5612
5665
  return this.http.post(this._host + "/socialposts.v2.BlogConnectionService/List", request.toApiJson(), this.apiOptions())
5613
5666
  .pipe(map(resp => ListBlogConnectionResponse.fromProto(resp)));
5614
5667
  }
5668
+ get(r) {
5669
+ const request = (r.toApiJson) ? r : new GetBlogConnectionRequest(r);
5670
+ return this.http.post(this._host + "/socialposts.v2.BlogConnectionService/Get", request.toApiJson(), this.apiOptions())
5671
+ .pipe(map(resp => GetBlogConnectionResponse.fromProto(resp)));
5672
+ }
5615
5673
  }
5616
- BlogConnectionApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5674
+ 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 });
5617
5675
  BlogConnectionApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, providedIn: 'root' });
5618
5676
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionApiService, decorators: [{
5619
5677
  type: Injectable,
5620
5678
  args: [{ providedIn: 'root' }]
5621
- }] });
5679
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5622
5680
 
5623
5681
  // *********************************
5624
5682
  // Code generated by sdkgen
@@ -5627,9 +5685,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5627
5685
  // API Service.
5628
5686
  // *********************************
5629
5687
  class ChatBotApiService {
5630
- constructor() {
5631
- this.hostService = inject(HostService);
5632
- this.http = inject(HttpClient);
5688
+ constructor(http, hostService) {
5689
+ this.http = http;
5690
+ this.hostService = hostService;
5633
5691
  this._host = this.hostService.hostWithScheme;
5634
5692
  }
5635
5693
  apiOptions() {
@@ -5655,12 +5713,12 @@ class ChatBotApiService {
5655
5713
  return this.http.post(this._host + "/socialposts.v2.ChatBot/EndChat", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
5656
5714
  }
5657
5715
  }
5658
- ChatBotApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5716
+ 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 });
5659
5717
  ChatBotApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, providedIn: 'root' });
5660
5718
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotApiService, decorators: [{
5661
5719
  type: Injectable,
5662
5720
  args: [{ providedIn: 'root' }]
5663
- }] });
5721
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5664
5722
 
5665
5723
  // *********************************
5666
5724
  // Code generated by sdkgen
@@ -5669,9 +5727,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5669
5727
  // API Service.
5670
5728
  // *********************************
5671
5729
  class ChatBotV2ApiService {
5672
- constructor() {
5673
- this.hostService = inject(HostService);
5674
- this.http = inject(HttpClient);
5730
+ constructor(http, hostService) {
5731
+ this.http = http;
5732
+ this.hostService = hostService;
5675
5733
  this._host = this.hostService.hostWithScheme;
5676
5734
  }
5677
5735
  apiOptions() {
@@ -5688,12 +5746,12 @@ class ChatBotV2ApiService {
5688
5746
  .pipe(map(resp => SendMessageV2Response.fromProto(resp)));
5689
5747
  }
5690
5748
  }
5691
- ChatBotV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5749
+ 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 });
5692
5750
  ChatBotV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, providedIn: 'root' });
5693
5751
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotV2ApiService, decorators: [{
5694
5752
  type: Injectable,
5695
5753
  args: [{ providedIn: 'root' }]
5696
- }] });
5754
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5697
5755
 
5698
5756
  // *********************************
5699
5757
  // Code generated by sdkgen
@@ -5702,9 +5760,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5702
5760
  // API Service.
5703
5761
  // *********************************
5704
5762
  class CommonAiInstructionsApiService {
5705
- constructor() {
5706
- this.hostService = inject(HostService);
5707
- this.http = inject(HttpClient);
5763
+ constructor(http, hostService) {
5764
+ this.http = http;
5765
+ this.hostService = hostService;
5708
5766
  this._host = this.hostService.hostWithScheme;
5709
5767
  }
5710
5768
  apiOptions() {
@@ -5731,12 +5789,12 @@ class CommonAiInstructionsApiService {
5731
5789
  .pipe(map(resp => GetCommonAiInstructionsResponse.fromProto(resp)));
5732
5790
  }
5733
5791
  }
5734
- CommonAiInstructionsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5792
+ 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 });
5735
5793
  CommonAiInstructionsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, providedIn: 'root' });
5736
5794
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CommonAiInstructionsApiService, decorators: [{
5737
5795
  type: Injectable,
5738
5796
  args: [{ providedIn: 'root' }]
5739
- }] });
5797
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5740
5798
 
5741
5799
  // *********************************
5742
5800
  // Code generated by sdkgen
@@ -5745,9 +5803,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5745
5803
  // API Service.
5746
5804
  // *********************************
5747
5805
  class ContentGenerationApiService {
5748
- constructor() {
5749
- this.hostService = inject(HostService);
5750
- this.http = inject(HttpClient);
5806
+ constructor(http, hostService) {
5807
+ this.http = http;
5808
+ this.hostService = hostService;
5751
5809
  this._host = this.hostService.hostWithScheme;
5752
5810
  }
5753
5811
  apiOptions() {
@@ -5764,12 +5822,12 @@ class ContentGenerationApiService {
5764
5822
  .pipe(map(resp => GeneratePostsResponse.fromProto(resp)));
5765
5823
  }
5766
5824
  }
5767
- ContentGenerationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5825
+ 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 });
5768
5826
  ContentGenerationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, providedIn: 'root' });
5769
5827
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContentGenerationApiService, decorators: [{
5770
5828
  type: Injectable,
5771
5829
  args: [{ providedIn: 'root' }]
5772
- }] });
5830
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5773
5831
 
5774
5832
  // *********************************
5775
5833
  // Code generated by sdkgen
@@ -5778,9 +5836,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5778
5836
  // API Service.
5779
5837
  // *********************************
5780
5838
  class CuratedContentApiService {
5781
- constructor() {
5782
- this.hostService = inject(HostService);
5783
- this.http = inject(HttpClient);
5839
+ constructor(http, hostService) {
5840
+ this.http = http;
5841
+ this.hostService = hostService;
5784
5842
  this._host = this.hostService.hostWithScheme;
5785
5843
  }
5786
5844
  apiOptions() {
@@ -5797,12 +5855,12 @@ class CuratedContentApiService {
5797
5855
  .pipe(map(resp => ListCuratedContentResponse.fromProto(resp)));
5798
5856
  }
5799
5857
  }
5800
- CuratedContentApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5858
+ 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 });
5801
5859
  CuratedContentApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, providedIn: 'root' });
5802
5860
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuratedContentApiService, decorators: [{
5803
5861
  type: Injectable,
5804
5862
  args: [{ providedIn: 'root' }]
5805
- }] });
5863
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5806
5864
 
5807
5865
  // *********************************
5808
5866
  // Code generated by sdkgen
@@ -5811,9 +5869,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5811
5869
  // API Service.
5812
5870
  // *********************************
5813
5871
  class HashTagsApiService {
5814
- constructor() {
5815
- this.hostService = inject(HostService);
5816
- this.http = inject(HttpClient);
5872
+ constructor(http, hostService) {
5873
+ this.http = http;
5874
+ this.hostService = hostService;
5817
5875
  this._host = this.hostService.hostWithScheme;
5818
5876
  }
5819
5877
  apiOptions() {
@@ -5838,12 +5896,12 @@ class HashTagsApiService {
5838
5896
  .pipe(map(resp => SearchHashtagResponse.fromProto(resp)));
5839
5897
  }
5840
5898
  }
5841
- HashTagsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5899
+ 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 });
5842
5900
  HashTagsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, providedIn: 'root' });
5843
5901
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HashTagsApiService, decorators: [{
5844
5902
  type: Injectable,
5845
5903
  args: [{ providedIn: 'root' }]
5846
- }] });
5904
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5847
5905
 
5848
5906
  // *********************************
5849
5907
  // Code generated by sdkgen
@@ -5852,9 +5910,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5852
5910
  // API Service.
5853
5911
  // *********************************
5854
5912
  class LinkedinApiService {
5855
- constructor() {
5856
- this.hostService = inject(HostService);
5857
- this.http = inject(HttpClient);
5913
+ constructor(http, hostService) {
5914
+ this.http = http;
5915
+ this.hostService = hostService;
5858
5916
  this._host = this.hostService.hostWithScheme;
5859
5917
  }
5860
5918
  apiOptions() {
@@ -5875,12 +5933,12 @@ class LinkedinApiService {
5875
5933
  .pipe(map(resp => MediaUploadResponse.fromProto(resp)));
5876
5934
  }
5877
5935
  }
5878
- LinkedinApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5936
+ 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 });
5879
5937
  LinkedinApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, providedIn: 'root' });
5880
5938
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LinkedinApiService, decorators: [{
5881
5939
  type: Injectable,
5882
5940
  args: [{ providedIn: 'root' }]
5883
- }] });
5941
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5884
5942
 
5885
5943
  // *********************************
5886
5944
  // Code generated by sdkgen
@@ -5889,9 +5947,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5889
5947
  // API Service.
5890
5948
  // *********************************
5891
5949
  class MultilocationPostApiService {
5892
- constructor() {
5893
- this.hostService = inject(HostService);
5894
- this.http = inject(HttpClient);
5950
+ constructor(http, hostService) {
5951
+ this.http = http;
5952
+ this.hostService = hostService;
5895
5953
  this._host = this.hostService.hostWithScheme;
5896
5954
  }
5897
5955
  apiOptions() {
@@ -5931,12 +5989,12 @@ class MultilocationPostApiService {
5931
5989
  .pipe(map(resp => GetMultilocationPostResponse.fromProto(resp)));
5932
5990
  }
5933
5991
  }
5934
- MultilocationPostApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5992
+ 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 });
5935
5993
  MultilocationPostApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, providedIn: 'root' });
5936
5994
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultilocationPostApiService, decorators: [{
5937
5995
  type: Injectable,
5938
5996
  args: [{ providedIn: 'root' }]
5939
- }] });
5997
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5940
5998
 
5941
5999
  // *********************************
5942
6000
  // Code generated by sdkgen
@@ -5945,9 +6003,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5945
6003
  // API Service.
5946
6004
  // *********************************
5947
6005
  class PartnerSocialPostsApiService {
5948
- constructor() {
5949
- this.hostService = inject(HostService);
5950
- this.http = inject(HttpClient);
6006
+ constructor(http, hostService) {
6007
+ this.http = http;
6008
+ this.hostService = hostService;
5951
6009
  this._host = this.hostService.hostWithScheme;
5952
6010
  }
5953
6011
  apiOptions() {
@@ -5969,12 +6027,12 @@ class PartnerSocialPostsApiService {
5969
6027
  .pipe(map(resp => PartnerListScheduledPostsResponse.fromProto(resp)));
5970
6028
  }
5971
6029
  }
5972
- PartnerSocialPostsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6030
+ 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 });
5973
6031
  PartnerSocialPostsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, providedIn: 'root' });
5974
6032
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PartnerSocialPostsApiService, decorators: [{
5975
6033
  type: Injectable,
5976
6034
  args: [{ providedIn: 'root' }]
5977
- }] });
6035
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
5978
6036
 
5979
6037
  // *********************************
5980
6038
  // Code generated by sdkgen
@@ -5983,9 +6041,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5983
6041
  // API Service.
5984
6042
  // *********************************
5985
6043
  class PixabayImagesApiService {
5986
- constructor() {
5987
- this.hostService = inject(HostService);
5988
- this.http = inject(HttpClient);
6044
+ constructor(http, hostService) {
6045
+ this.http = http;
6046
+ this.hostService = hostService;
5989
6047
  this._host = this.hostService.hostWithScheme;
5990
6048
  }
5991
6049
  apiOptions() {
@@ -6002,12 +6060,12 @@ class PixabayImagesApiService {
6002
6060
  .pipe(map(resp => ListPixabayImagesResponse.fromProto(resp)));
6003
6061
  }
6004
6062
  }
6005
- PixabayImagesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6063
+ 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 });
6006
6064
  PixabayImagesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, providedIn: 'root' });
6007
6065
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PixabayImagesApiService, decorators: [{
6008
6066
  type: Injectable,
6009
6067
  args: [{ providedIn: 'root' }]
6010
- }] });
6068
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
6011
6069
 
6012
6070
  // *********************************
6013
6071
  // Code generated by sdkgen
@@ -6016,9 +6074,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6016
6074
  // API Service.
6017
6075
  // *********************************
6018
6076
  class PostPerformanceApiService {
6019
- constructor() {
6020
- this.hostService = inject(HostService);
6021
- this.http = inject(HttpClient);
6077
+ constructor(http, hostService) {
6078
+ this.http = http;
6079
+ this.hostService = hostService;
6022
6080
  this._host = this.hostService.hostWithScheme;
6023
6081
  }
6024
6082
  apiOptions() {
@@ -6040,12 +6098,12 @@ class PostPerformanceApiService {
6040
6098
  .pipe(map(resp => GetGeneratedCSVForPerformanceStatsResponse.fromProto(resp)));
6041
6099
  }
6042
6100
  }
6043
- PostPerformanceApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6101
+ 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 });
6044
6102
  PostPerformanceApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, providedIn: 'root' });
6045
6103
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostPerformanceApiService, decorators: [{
6046
6104
  type: Injectable,
6047
6105
  args: [{ providedIn: 'root' }]
6048
- }] });
6106
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
6049
6107
 
6050
6108
  // *********************************
6051
6109
  // Code generated by sdkgen
@@ -6054,9 +6112,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6054
6112
  // API Service.
6055
6113
  // *********************************
6056
6114
  class PostTemplatesApiService {
6057
- constructor() {
6058
- this.hostService = inject(HostService);
6059
- this.http = inject(HttpClient);
6115
+ constructor(http, hostService) {
6116
+ this.http = http;
6117
+ this.hostService = hostService;
6060
6118
  this._host = this.hostService.hostWithScheme;
6061
6119
  }
6062
6120
  apiOptions() {
@@ -6091,12 +6149,12 @@ class PostTemplatesApiService {
6091
6149
  return this.http.post(this._host + "/socialposts.v1.PostTemplates/DeletePostTemplate", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
6092
6150
  }
6093
6151
  }
6094
- PostTemplatesApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6152
+ 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 });
6095
6153
  PostTemplatesApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, providedIn: 'root' });
6096
6154
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PostTemplatesApiService, decorators: [{
6097
6155
  type: Injectable,
6098
6156
  args: [{ providedIn: 'root' }]
6099
- }] });
6157
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
6100
6158
 
6101
6159
  // *********************************
6102
6160
  // Code generated by sdkgen
@@ -6105,9 +6163,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6105
6163
  // API Service.
6106
6164
  // *********************************
6107
6165
  class SocialPostsV2ApiService {
6108
- constructor() {
6109
- this.hostService = inject(HostService);
6110
- this.http = inject(HttpClient);
6166
+ constructor(http, hostService) {
6167
+ this.http = http;
6168
+ this.hostService = hostService;
6111
6169
  this._host = this.hostService.hostWithScheme;
6112
6170
  }
6113
6171
  apiOptions() {
@@ -6148,12 +6206,12 @@ class SocialPostsV2ApiService {
6148
6206
  return this.http.post(this._host + "/socialposts.v2.SocialPostsV2/RepostSocialPost", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
6149
6207
  }
6150
6208
  }
6151
- SocialPostsV2ApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6209
+ 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 });
6152
6210
  SocialPostsV2ApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, providedIn: 'root' });
6153
6211
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsV2ApiService, decorators: [{
6154
6212
  type: Injectable,
6155
6213
  args: [{ providedIn: 'root' }]
6156
- }] });
6214
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
6157
6215
 
6158
6216
  // *********************************
6159
6217
  // Code generated by sdkgen
@@ -6162,9 +6220,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6162
6220
  // API Service.
6163
6221
  // *********************************
6164
6222
  class TenorGifsApiService {
6165
- constructor() {
6166
- this.hostService = inject(HostService);
6167
- this.http = inject(HttpClient);
6223
+ constructor(http, hostService) {
6224
+ this.http = http;
6225
+ this.hostService = hostService;
6168
6226
  this._host = this.hostService.hostWithScheme;
6169
6227
  }
6170
6228
  apiOptions() {
@@ -6186,12 +6244,12 @@ class TenorGifsApiService {
6186
6244
  .pipe(map(resp => ListTenorGifsResponse.fromProto(resp)));
6187
6245
  }
6188
6246
  }
6189
- TenorGifsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6247
+ 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 });
6190
6248
  TenorGifsApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, providedIn: 'root' });
6191
6249
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TenorGifsApiService, decorators: [{
6192
6250
  type: Injectable,
6193
6251
  args: [{ providedIn: 'root' }]
6194
- }] });
6252
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
6195
6253
 
6196
6254
  // *********************************
6197
6255
  // Code generated by sdkgen
@@ -6200,9 +6258,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6200
6258
  // API Service.
6201
6259
  // *********************************
6202
6260
  class UnsplashApiService {
6203
- constructor() {
6204
- this.hostService = inject(HostService);
6205
- this.http = inject(HttpClient);
6261
+ constructor(http, hostService) {
6262
+ this.http = http;
6263
+ this.hostService = hostService;
6206
6264
  this._host = this.hostService.hostWithScheme;
6207
6265
  }
6208
6266
  apiOptions() {
@@ -6224,12 +6282,12 @@ class UnsplashApiService {
6224
6282
  .pipe(map(resp => UploadToStorageResponse.fromProto(resp)));
6225
6283
  }
6226
6284
  }
6227
- UnsplashApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6285
+ 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 });
6228
6286
  UnsplashApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, providedIn: 'root' });
6229
6287
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UnsplashApiService, decorators: [{
6230
6288
  type: Injectable,
6231
6289
  args: [{ providedIn: 'root' }]
6232
- }] });
6290
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
6233
6291
 
6234
6292
  // *********************************
6235
6293
  // Code generated by sdkgen
@@ -6672,6 +6730,12 @@ class BlogConnectionService {
6672
6730
  list(listBlogConnectionRequest) {
6673
6731
  return this.blogConnectionApiService.list(listBlogConnectionRequest);
6674
6732
  }
6733
+ update(updateBlogConnectionRequest) {
6734
+ return this.blogConnectionApiService.update(updateBlogConnectionRequest);
6735
+ }
6736
+ get(getBlogConnectionRequest) {
6737
+ return this.blogConnectionApiService.get(getBlogConnectionRequest);
6738
+ }
6675
6739
  }
6676
6740
  BlogConnectionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionService, deps: [{ token: BlogConnectionApiService }], target: i0.ɵɵFactoryTarget.Injectable });
6677
6741
  BlogConnectionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BlogConnectionService, providedIn: 'root' });
@@ -6684,5 +6748,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6684
6748
  * Generated bundle index. Do not edit.
6685
6749
  */
6686
6750
 
6687
- 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, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GeneratePostsRequest, GeneratePostsResponse, GeneratePostsResponsePost, 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, 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, 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 };
6751
+ 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, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GeneratePostsRequest, GeneratePostsResponse, GeneratePostsResponsePost, 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, 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, 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 };
6688
6752
  //# sourceMappingURL=vendasta-social-posts.mjs.map