@vendasta/social-posts 5.45.8 → 5.47.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 (51) hide show
  1. package/esm2020/lib/_internal/enums/engagement.enum.mjs +13 -0
  2. package/esm2020/lib/_internal/enums/index.mjs +3 -1
  3. package/esm2020/lib/_internal/enums/stock-image.enum.mjs +12 -0
  4. package/esm2020/lib/_internal/image-library.api.service.mjs +40 -0
  5. package/esm2020/lib/_internal/index.mjs +4 -1
  6. package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/engagement.interface.mjs +2 -0
  8. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  9. package/esm2020/lib/_internal/interfaces/social-post-stats.interface.mjs +1 -1
  10. package/esm2020/lib/_internal/interfaces/social-posts.interface.mjs +1 -1
  11. package/esm2020/lib/_internal/interfaces/stock-image.interface.mjs +8 -0
  12. package/esm2020/lib/_internal/multilocation-post.api.service.mjs +2 -3
  13. package/esm2020/lib/_internal/objects/api.mjs +83 -2
  14. package/esm2020/lib/_internal/objects/engagement.mjs +221 -0
  15. package/esm2020/lib/_internal/objects/index.mjs +7 -5
  16. package/esm2020/lib/_internal/objects/social-post-stats.mjs +213 -1
  17. package/esm2020/lib/_internal/objects/social-posts.mjs +33 -1
  18. package/esm2020/lib/_internal/objects/stock-image.mjs +110 -0
  19. package/esm2020/lib/_internal/social-mentions.api.service.mjs +40 -0
  20. package/esm2020/lib/_internal/social-post-engagements.api.service.mjs +40 -0
  21. package/esm2020/lib/index.mjs +2 -1
  22. package/esm2020/lib/multilocation-posts.service.mjs +1 -1
  23. package/esm2020/lib/social-mentions.service.mjs +27 -0
  24. package/fesm2015/vendasta-social-posts.mjs +962 -164
  25. package/fesm2015/vendasta-social-posts.mjs.map +1 -1
  26. package/fesm2020/vendasta-social-posts.mjs +962 -164
  27. package/fesm2020/vendasta-social-posts.mjs.map +1 -1
  28. package/lib/_internal/enums/engagement.enum.d.ts +5 -0
  29. package/lib/_internal/enums/index.d.ts +2 -0
  30. package/lib/_internal/enums/stock-image.enum.d.ts +4 -0
  31. package/lib/_internal/image-library.api.service.d.ts +13 -0
  32. package/lib/_internal/index.d.ts +3 -0
  33. package/lib/_internal/interfaces/api.interface.d.ts +17 -1
  34. package/lib/_internal/interfaces/engagement.interface.d.ts +37 -0
  35. package/lib/_internal/interfaces/index.d.ts +6 -4
  36. package/lib/_internal/interfaces/social-post-stats.interface.d.ts +32 -0
  37. package/lib/_internal/interfaces/social-posts.interface.d.ts +7 -0
  38. package/lib/_internal/interfaces/stock-image.interface.d.ts +21 -0
  39. package/lib/_internal/multilocation-post.api.service.d.ts +1 -1
  40. package/lib/_internal/objects/api.d.ts +26 -1
  41. package/lib/_internal/objects/engagement.d.ts +60 -0
  42. package/lib/_internal/objects/index.d.ts +6 -4
  43. package/lib/_internal/objects/social-post-stats.d.ts +44 -0
  44. package/lib/_internal/objects/social-posts.d.ts +10 -0
  45. package/lib/_internal/objects/stock-image.d.ts +32 -0
  46. package/lib/_internal/social-mentions.api.service.d.ts +13 -0
  47. package/lib/_internal/social-post-engagements.api.service.d.ts +13 -0
  48. package/lib/index.d.ts +1 -0
  49. package/lib/multilocation-posts.service.d.ts +1 -1
  50. package/lib/social-mentions.service.d.ts +11 -0
  51. package/package.json +1 -1
@@ -0,0 +1,5 @@
1
+ export declare enum SortBySortDirection {
2
+ SORT_DIRECTION_INVALID = 0,
3
+ SORT_DIRECTION_ASCENDING = 1,
4
+ SORT_DIRECTION_DESCENDING = 2
5
+ }
@@ -1,5 +1,7 @@
1
1
  export { CallToActionCallToActionType, SocialPostDeletionStatus, MLPostState, MessageLength, PostType, PostingStatus, YoutubeCustomizationPrivacyStatus, SocialPostService, TemplateType, } from './social-posts.enum';
2
2
  export { CustomizationStatus, RemoveReason, } from './multilocation-post.enum';
3
+ export { SortBySortDirection, } from './engagement.enum';
4
+ export { ImageSource, } from './stock-image.enum';
3
5
  export { BulkPostStatus, } from './api.enum';
4
6
  export { PostStatusV2, PostTypeV2, YoutubeCustomizationV2PrivacyStatusV2, } from './social-post-v2.enum';
5
7
  export { MediaType, } from './linkedin-v2.enum';
@@ -0,0 +1,4 @@
1
+ export declare enum ImageSource {
2
+ PEXELS = 0,
3
+ PIXABAY = 1
4
+ }
@@ -0,0 +1,13 @@
1
+ import { ListStockImagesRequest, ListStockImagesResponse } from './objects/';
2
+ import { ListStockImagesRequestInterface } from './interfaces/';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ImageLibraryApiService {
6
+ private readonly hostService;
7
+ private readonly http;
8
+ private _host;
9
+ private apiOptions;
10
+ listStockImages(r: ListStockImagesRequest | ListStockImagesRequestInterface): Observable<ListStockImagesResponse>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageLibraryApiService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<ImageLibraryApiService>;
13
+ }
@@ -10,6 +10,7 @@ export { CommonAiInstructionsApiService } from './common-ai-instructions.api.ser
10
10
  export { ContentGenerationApiService } from './content-generation.api.service';
11
11
  export { CuratedContentApiService } from './curated-content.api.service';
12
12
  export { HashTagsApiService } from './hash-tags.api.service';
13
+ export { ImageLibraryApiService } from './image-library.api.service';
13
14
  export { LinkedinApiService } from './linkedin.api.service';
14
15
  export { MultilocationPostApiService } from './multilocation-post.api.service';
15
16
  export { PartnerSocialPostsApiService } from './partner-social-posts.api.service';
@@ -17,6 +18,8 @@ export { PexelsImagesApiService } from './pexels-images.api.service';
17
18
  export { PixabayImagesApiService } from './pixabay-images.api.service';
18
19
  export { PostPerformanceApiService } from './post-performance.api.service';
19
20
  export { PostTemplatesApiService } from './post-templates.api.service';
21
+ export { SocialMentionsApiService } from './social-mentions.api.service';
22
+ export { SocialPostEngagementsApiService } from './social-post-engagements.api.service';
20
23
  export { SocialPostsApiService } from './social-posts.api.service';
21
24
  export { SocialPostsV2ApiService } from './social-posts-v2.api.service';
22
25
  export { TenorGifsApiService } from './tenor-gifs.api.service';
@@ -1,7 +1,7 @@
1
1
  import { FieldMaskInterface } from './field-mask.interface';
2
2
  import { HashtagInterface } from './hashtag.interface';
3
3
  import { LocationInterface, BulkUploadMultilocationInterface, MultilocationPostErrorInterface, PostCustomizationInterface, PostCustomizationByLocationInterface, MultilocationPostInterface, MultilocationServicesInterface } from './multilocation-post.interface';
4
- import { MediaEntryInterface, MetaDataInterface, SSIDPostTypeInterface, MLPostCategoryInterface, YoutubeCustomizationInterface, SocialPostInterface, PostTemplateInterface, SocialPostDataInterface, SchedulePostStatusInterface } from './social-posts.interface';
4
+ import { MediaEntryInterface, MetaDataInterface, SSIDPostTypeInterface, MLPostCategoryInterface, YoutubeCustomizationInterface, SocialPostInterface, PostTemplateInterface, FacebookPageInfoInterface, SocialPostDataInterface, SchedulePostStatusInterface } from './social-posts.interface';
5
5
  import { PexelsImageInterface } from './pexels-image.interface';
6
6
  import { PixabayImageInterface } from './pixabay-image.interface';
7
7
  import { SocialPostStatsInterface } from './social-post-stats.interface';
@@ -107,6 +107,18 @@ export interface EditMultilocationPostResponseInterface {
107
107
  post?: MultilocationPostInterface;
108
108
  errors?: MultilocationPostErrorInterface[];
109
109
  }
110
+ export interface FetchFacebookMentionInfoRequestInterface {
111
+ accountGroupId?: string;
112
+ partnerId?: string;
113
+ socialServiceId?: string;
114
+ socialProfileId?: string;
115
+ pageIds?: string[];
116
+ }
117
+ export interface FetchFacebookMentionInfoResponseInterface {
118
+ pageInfo?: {
119
+ [key: string]: FacebookPageInfoInterface;
120
+ };
121
+ }
110
122
  export interface PartnerListScheduledSocialPostsRequestFiltersInterface {
111
123
  dateRange?: DateRangeFilterInterface;
112
124
  partnerId?: string;
@@ -241,6 +253,10 @@ export interface ListTenorGifsResponseInterface {
241
253
  next?: string;
242
254
  results?: TenorGifInterface[];
243
255
  }
256
+ export interface FetchFacebookMentionInfoResponsePageInfoEntryInterface {
257
+ key?: string;
258
+ value?: FacebookPageInfoInterface;
259
+ }
244
260
  export interface PartnerListScheduledPostsResponseInterface {
245
261
  socialPosts?: SocialPostInterface[];
246
262
  nextCursor?: string;
@@ -0,0 +1,37 @@
1
+ import { SocialPostInterface } from './social-posts.interface';
2
+ import * as e from '../enums';
3
+ export interface DateRangeInterface {
4
+ start?: Date;
5
+ end?: Date;
6
+ }
7
+ export interface EngagementParameterInterface {
8
+ engagementParameter?: string;
9
+ value?: string;
10
+ }
11
+ export interface ListSocialPostEngagementsRequestInterface {
12
+ accountGroupId?: string;
13
+ networks?: string[];
14
+ dateRange?: DateRangeInterface;
15
+ sortBy?: SortByInterface[];
16
+ limit?: number;
17
+ isPostDataNeeded?: boolean;
18
+ cursor?: string;
19
+ }
20
+ export interface ListSocialPostEngagementsResponseInterface {
21
+ socialPostEngagements?: SocialPostEngagementInterface[];
22
+ cursor?: string;
23
+ }
24
+ export interface SocialEngagementInterface {
25
+ calculatedEngagementRate?: string;
26
+ engagementParameters?: EngagementParameterInterface[];
27
+ }
28
+ export interface SocialPostEngagementInterface {
29
+ socialPost?: SocialPostInterface;
30
+ socialEngagement?: SocialEngagementInterface;
31
+ network?: string;
32
+ errorMessage?: string;
33
+ }
34
+ export interface SortByInterface {
35
+ field?: string;
36
+ sortDirection?: e.SortBySortDirection;
37
+ }
@@ -1,13 +1,15 @@
1
1
  export { FieldMaskInterface, } from './field-mask.interface';
2
2
  export { HashtagInterface, } from './hashtag.interface';
3
- export { AuthorInterface, BlogPostCustomizationInterface, CallToActionInterface, CategoryInterface, ErrorInterface, EventInterface, MLPostCategoryInterface, MediaEntryInterface, MetaDataInterface, PostTemplateInterface, SSIDPostTypeInterface, SchedulePostStatusInterface, SocialCampaignInterface, SocialPostInterface, SocialPostDataInterface, TikTokCustomizationInterface, YoutubeCustomizationInterface, } from './social-posts.interface';
3
+ export { BlogPostCustomizationInterface, CallToActionInterface, ErrorInterface, EventInterface, FacebookPageInfoInterface, MLPostCategoryInterface, MediaEntryInterface, MetaDataInterface, PostTemplateInterface, SSIDPostTypeInterface, SchedulePostStatusInterface, SocialCampaignInterface, SocialPostInterface, SocialPostDataInterface, TikTokCustomizationInterface, YoutubeCustomizationInterface, } from './social-posts.interface';
4
4
  export { BulkUploadMultilocationInterface, LocationInterface, MultilocationPostInterface, MultilocationPostErrorInterface, MultilocationServicesInterface, PostActionInterface, PostCustomizationInterface, PostCustomizationByLocationInterface, PostEventInterface, } from './multilocation-post.interface';
5
5
  export { PixabayImageInterface, } from './pixabay-image.interface';
6
- export { FacebookPostStatsInterface, SocialPostStatsInterface, TwitterPostStatsInterface, } from './social-post-stats.interface';
6
+ export { FacebookPostStatsInterface, InstagramPostStatsInterface, LinkedInPostStatsInterface, SocialPostStatsInterface, TikTokPostStatsInterface, TwitterPostStatsInterface, YoutubePostStatsInterface, } from './social-post-stats.interface';
7
7
  export { TenorGifMediaMapEntryInterface, TenorGifInterface, TenorMediaObjectInterface, } from './tenor-gif.interface';
8
8
  export { PexelsImageInterface, } from './pexels-image.interface';
9
+ export { DateRangeInterface, EngagementParameterInterface, ListSocialPostEngagementsRequestInterface, ListSocialPostEngagementsResponseInterface, SocialEngagementInterface, SocialPostEngagementInterface, SortByInterface, } from './engagement.interface';
10
+ export { ListStockImagesRequestInterface, ListStockImagesResponseInterface, StockImageInterface, } from './stock-image.interface';
9
11
  export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
10
- export { BulkCreateMultilocationPostRequestInterface, BulkCreateMultilocationPostResponseInterface, CreateMultilocationPostRequestInterface, CreateMultilocationPostResponseInterface, CreatePostTemplateRequestInterface, CreatePostTemplateResponseInterface, DateRangeFilterInterface, DeleteHashtagsRequestInterface, DeleteMultilocationPostRequestInterface, DeletePostTemplateRequestInterface, DeleteSocialPostRequestInterface, EditMultilocationPostRequestInterface, EditMultilocationPostResponseInterface, PartnerListScheduledSocialPostsRequestFiltersInterface, GenerateCSVForPerformanceStatsRequestInterface, GenerateCSVForPerformanceStatsResponseInterface, GetGeneratedCSVForPerformanceStatsRequestInterface, GetGeneratedCSVForPerformanceStatsResponseInterface, GetMultiSocialPostStatsRequestInterface, GetMultiSocialPostStatsResponseInterface, GetMultiSocialPostsRequestInterface, GetMultiSocialPostsResponseInterface, GetMultilocationPostRequestInterface, GetMultilocationPostResponseInterface, GetPostTemplateRequestInterface, GetPostTemplateResponseInterface, GetScheduledPostCountRequestInterface, GetScheduledPostCountResponseInterface, GetTenorAnonymousIdRequestInterface, GetTenorAnonymousIdResponseInterface, ListMultilocationPostsForBrandRequestInterface, ListMultilocationPostsForBrandResponseInterface, ListPexelsImagesRequestInterface, ListPexelsImagesResponseInterface, ListPixabayImagesRequestInterface, ListPixabayImagesResponseInterface, ListPostTemplatesRequestInterface, ListPostTemplatesResponseInterface, ListSocialPostsRequestInterface, ListSocialPostsResponseInterface, ListTenorGifsRequestInterface, ListTenorGifsResponseInterface, PartnerListScheduledPostsResponseInterface, PartnerListScheduledSocialPostsRequestInterface, PostDataInterface, RemoveFromMultilocationPostRequestInterface, ReplaceHashtagsRequestInterface, SchedulePostRequestInterface, SchedulePostResponseInterface, ScheduleToAllPagesRequestInterface, ScheduleToAllPagesResponseInterface, SearchHashtagRequestInterface, SearchHashtagResponseInterface, SuggestMessageRequestInterface, SuggestMessageResponseInterface, UpdatePostTemplateRequestInterface, } from './api.interface';
12
+ export { BulkCreateMultilocationPostRequestInterface, BulkCreateMultilocationPostResponseInterface, CreateMultilocationPostRequestInterface, CreateMultilocationPostResponseInterface, CreatePostTemplateRequestInterface, CreatePostTemplateResponseInterface, DateRangeFilterInterface, DeleteHashtagsRequestInterface, DeleteMultilocationPostRequestInterface, DeletePostTemplateRequestInterface, DeleteSocialPostRequestInterface, EditMultilocationPostRequestInterface, EditMultilocationPostResponseInterface, FetchFacebookMentionInfoRequestInterface, FetchFacebookMentionInfoResponseInterface, PartnerListScheduledSocialPostsRequestFiltersInterface, GenerateCSVForPerformanceStatsRequestInterface, GenerateCSVForPerformanceStatsResponseInterface, GetGeneratedCSVForPerformanceStatsRequestInterface, GetGeneratedCSVForPerformanceStatsResponseInterface, GetMultiSocialPostStatsRequestInterface, GetMultiSocialPostStatsResponseInterface, GetMultiSocialPostsRequestInterface, GetMultiSocialPostsResponseInterface, GetMultilocationPostRequestInterface, GetMultilocationPostResponseInterface, GetPostTemplateRequestInterface, GetPostTemplateResponseInterface, GetScheduledPostCountRequestInterface, GetScheduledPostCountResponseInterface, GetTenorAnonymousIdRequestInterface, GetTenorAnonymousIdResponseInterface, ListMultilocationPostsForBrandRequestInterface, ListMultilocationPostsForBrandResponseInterface, ListPexelsImagesRequestInterface, ListPexelsImagesResponseInterface, ListPixabayImagesRequestInterface, ListPixabayImagesResponseInterface, ListPostTemplatesRequestInterface, ListPostTemplatesResponseInterface, ListSocialPostsRequestInterface, ListSocialPostsResponseInterface, ListTenorGifsRequestInterface, ListTenorGifsResponseInterface, FetchFacebookMentionInfoResponsePageInfoEntryInterface, PartnerListScheduledPostsResponseInterface, PartnerListScheduledSocialPostsRequestInterface, PostDataInterface, RemoveFromMultilocationPostRequestInterface, ReplaceHashtagsRequestInterface, SchedulePostRequestInterface, SchedulePostResponseInterface, ScheduleToAllPagesRequestInterface, ScheduleToAllPagesResponseInterface, SearchHashtagRequestInterface, SearchHashtagResponseInterface, SuggestMessageRequestInterface, SuggestMessageResponseInterface, UpdatePostTemplateRequestInterface, } from './api.interface';
11
13
  export { LinkV2Interface, MetadataV2Interface, PostActionV2Interface, PostContentV2Interface, PostCustomizationV2Interface, PostEventV2Interface, PostMediaV2Interface, SocialPostV2Interface, TikTokCustomizationV2Interface, YoutubeCustomizationV2Interface, } from './social-post-v2.interface';
12
14
  export { MediaInterface, } from './linkedin-v2.interface';
13
15
  export { AncestryInterface, CollectionInterface, ImageInterface, LinksInterface, PhotoInterface, SocialInterface, SourceInterface, SubAncestryInterface, TagsInterface, UrlsInterface, UserInterface, UserLinkInterface, } from './unsplash-image.interface';
@@ -15,5 +17,5 @@ export { AiInstructionsInterface, BlogPostCampaignInterface, CreateCommonAiInstr
15
17
  export { ActionInterface, EndChatRequestInterface, SendMessageRequestInterface, SendMessageResponseInterface, StartChatRequestInterface, StartChatResponseInterface, } from './chat-bot.interface';
16
18
  export { ChatMessageInterface, SendMessageV2RequestInterface, SendMessageV2ResponseInterface, } from './chat-bot-v2.interface';
17
19
  export { BlogConnectionInterface, CreateBlogConnectionRequestInterface, CreateBlogConnectionResponseInterface, DeleteBlogConnectionRequestInterface, GetBlogConnectionRequestInterface, GetBlogConnectionResponseInterface, ListBlogConnectionRequestInterface, ListBlogConnectionResponseInterface, UpdateBlogConnectionRequestInterface, } from './blog-connection.interface';
18
- export { AuthorInterface as WordpressAuthorInterface, AuthorsRequestInterface, AuthorsResponseInterface, BlogImageInterface, BlogPostInterface, BlogVideoInterface, CategoryInterface as WordpressCategoryInterface, CategoryRequestInterface, CategoryResponseInterface, DeleteBlogPostRequestInterface, GetMultiBlogPostsRequestInterface, GetMultiBlogPostsResponseInterface, MediaPropertyInterface, PublishPostRequestInterface, PublishPostResponseInterface, RepostBlogPostRequestInterface, StatusRequestInterface, StatusResponseInterface, UpdateBlogPostRequestInterface, } from './wordpress-plugin.interface';
20
+ export { AuthorInterface, AuthorsRequestInterface, AuthorsResponseInterface, BlogImageInterface, BlogPostInterface, BlogVideoInterface, CategoryInterface, CategoryRequestInterface, CategoryResponseInterface, DeleteBlogPostRequestInterface, GetMultiBlogPostsRequestInterface, GetMultiBlogPostsResponseInterface, MediaPropertyInterface, PublishPostRequestInterface, PublishPostResponseInterface, RepostBlogPostRequestInterface, StatusRequestInterface, StatusResponseInterface, UpdateBlogPostRequestInterface, } from './wordpress-plugin.interface';
19
21
  export { CampaignInterface, CreateCampaignRequestInterface, CreateCampaignResponseInterface, DeleteCampaignRequestInterface, GetCampaignRequestInterface, GetCampaignResponseInterface, GetMultiCampaignsRequestInterface, GetMultiCampaignsResponseInterface, UpdateCampaignIdRequestInterface, UpdateCampaignRequestInterface, } from './campaign.interface';
@@ -7,10 +7,34 @@ export interface FacebookPostStatsInterface {
7
7
  reactions?: number;
8
8
  peopleReached?: number;
9
9
  }
10
+ export interface InstagramPostStatsInterface {
11
+ likeCount?: number;
12
+ commentCount?: number;
13
+ saves?: number;
14
+ reach?: number;
15
+ videoViews?: number;
16
+ }
17
+ export interface LinkedInPostStatsInterface {
18
+ likeCount?: number;
19
+ commentCount?: number;
20
+ shareCount?: number;
21
+ clicks?: number;
22
+ impressions?: number;
23
+ }
10
24
  export interface SocialPostStatsInterface {
11
25
  internalPostId?: string;
12
26
  facebookPostStats?: FacebookPostStatsInterface;
13
27
  twitterPostStats?: TwitterPostStatsInterface;
28
+ linkedinPostStats?: LinkedInPostStatsInterface;
29
+ instagramPostStats?: InstagramPostStatsInterface;
30
+ youtubePostStats?: YoutubePostStatsInterface;
31
+ tiktokPostStats?: TikTokPostStatsInterface;
32
+ }
33
+ export interface TikTokPostStatsInterface {
34
+ likeCount?: number;
35
+ commentCount?: number;
36
+ shareCount?: number;
37
+ peopleReached?: number;
14
38
  }
15
39
  export interface TwitterPostStatsInterface {
16
40
  favourites?: number;
@@ -18,3 +42,11 @@ export interface TwitterPostStatsInterface {
18
42
  retweets?: number;
19
43
  hasRetweeted?: boolean;
20
44
  }
45
+ export interface YoutubePostStatsInterface {
46
+ likeCount?: number;
47
+ commentCount?: number;
48
+ favourites?: number;
49
+ views?: number;
50
+ videoViews?: number;
51
+ dislikeCount?: number;
52
+ }
@@ -26,6 +26,13 @@ export interface EventInterface {
26
26
  startDatetime?: Date;
27
27
  endDatetime?: Date;
28
28
  }
29
+ export interface FacebookPageInfoInterface {
30
+ id?: string;
31
+ name?: string;
32
+ category?: string;
33
+ profileUrl?: string;
34
+ profileImageUrl?: string;
35
+ }
29
36
  export interface MLPostCategoryInterface {
30
37
  isDraft?: boolean;
31
38
  isHidden?: boolean;
@@ -0,0 +1,21 @@
1
+ import * as e from '../enums';
2
+ export interface ListStockImagesRequestInterface {
3
+ namespaceId?: string;
4
+ keywords?: string[];
5
+ imageCount?: number;
6
+ imageSource?: e.ImageSource;
7
+ orientation?: string;
8
+ size?: string;
9
+ page?: number;
10
+ perPage?: number;
11
+ }
12
+ export interface ListStockImagesResponseInterface {
13
+ images?: StockImageInterface[];
14
+ }
15
+ export interface StockImageInterface {
16
+ publicUrl?: string;
17
+ storageUrl?: string;
18
+ source?: e.ImageSource;
19
+ photographerName?: string;
20
+ photographerUrl?: string;
21
+ }
@@ -10,7 +10,7 @@ export declare class MultilocationPostApiService {
10
10
  private apiOptions;
11
11
  createMultilocationPost(r: CreateMultilocationPostRequest | CreateMultilocationPostRequestInterface): Observable<CreateMultilocationPostResponse>;
12
12
  editMultilocationPost(r: EditMultilocationPostRequest | EditMultilocationPostRequestInterface): Observable<EditMultilocationPostResponse>;
13
- editMultilocationPostV2(r: EditMultilocationPostRequest | EditMultilocationPostRequestInterface): Observable<EditMultilocationPostResponse>;
13
+ editMultilocationPostV2(r: EditMultilocationPostRequest | EditMultilocationPostRequestInterface): Observable<HttpResponse<null>>;
14
14
  removeFromMultilocationPost(r: RemoveFromMultilocationPostRequest | RemoveFromMultilocationPostRequestInterface): Observable<HttpResponse<null>>;
15
15
  listMultilocationPostsForBrand(r: ListMultilocationPostsForBrandRequest | ListMultilocationPostsForBrandRequestInterface): Observable<ListMultilocationPostsForBrandResponse>;
16
16
  deleteMultilocationPost(r: DeleteMultilocationPostRequest | DeleteMultilocationPostRequestInterface): Observable<HttpResponse<null>>;
@@ -2,7 +2,7 @@ import * as i from '../interfaces';
2
2
  import { FieldMask } from './field-mask';
3
3
  import { Hashtag } from './hashtag';
4
4
  import { Location, BulkUploadMultilocation, MultilocationPostError, PostCustomization, PostCustomizationByLocation, MultilocationPost, MultilocationServices } from './multilocation-post';
5
- import { MediaEntry, MetaData, SSIDPostType, MLPostCategory, YoutubeCustomization, SocialPost, PostTemplate, SocialPostData, SchedulePostStatus } from './social-posts';
5
+ import { MediaEntry, MetaData, SSIDPostType, MLPostCategory, YoutubeCustomization, SocialPost, PostTemplate, FacebookPageInfo, SocialPostData, SchedulePostStatus } from './social-posts';
6
6
  import { PexelsImage } from './pexels-image';
7
7
  import { PixabayImage } from './pixabay-image';
8
8
  import { SocialPostStats } from './social-post-stats';
@@ -148,6 +148,24 @@ export declare class EditMultilocationPostResponse implements i.EditMultilocatio
148
148
  constructor(kwargs?: i.EditMultilocationPostResponseInterface);
149
149
  toApiJson(): object;
150
150
  }
151
+ export declare class FetchFacebookMentionInfoRequest implements i.FetchFacebookMentionInfoRequestInterface {
152
+ accountGroupId: string;
153
+ partnerId: string;
154
+ socialServiceId: string;
155
+ socialProfileId: string;
156
+ pageIds: string[];
157
+ static fromProto(proto: any): FetchFacebookMentionInfoRequest;
158
+ constructor(kwargs?: i.FetchFacebookMentionInfoRequestInterface);
159
+ toApiJson(): object;
160
+ }
161
+ export declare class FetchFacebookMentionInfoResponse implements i.FetchFacebookMentionInfoResponseInterface {
162
+ pageInfo: {
163
+ [key: string]: FacebookPageInfo;
164
+ };
165
+ static fromProto(proto: any): FetchFacebookMentionInfoResponse;
166
+ constructor(kwargs?: i.FetchFacebookMentionInfoResponseInterface);
167
+ toApiJson(): object;
168
+ }
151
169
  export declare class PartnerListScheduledSocialPostsRequestFilters implements i.PartnerListScheduledSocialPostsRequestFiltersInterface {
152
170
  dateRange: DateRangeFilter;
153
171
  partnerId: string;
@@ -369,6 +387,13 @@ export declare class ListTenorGifsResponse implements i.ListTenorGifsResponseInt
369
387
  constructor(kwargs?: i.ListTenorGifsResponseInterface);
370
388
  toApiJson(): object;
371
389
  }
390
+ export declare class FetchFacebookMentionInfoResponsePageInfoEntry implements i.FetchFacebookMentionInfoResponsePageInfoEntryInterface {
391
+ key: string;
392
+ value: FacebookPageInfo;
393
+ static fromProto(proto: any): FetchFacebookMentionInfoResponsePageInfoEntry;
394
+ constructor(kwargs?: i.FetchFacebookMentionInfoResponsePageInfoEntryInterface);
395
+ toApiJson(): object;
396
+ }
372
397
  export declare class PartnerListScheduledPostsResponse implements i.PartnerListScheduledPostsResponseInterface {
373
398
  socialPosts: SocialPost[];
374
399
  nextCursor: string;
@@ -0,0 +1,60 @@
1
+ import * as i from '../interfaces';
2
+ import { SocialPost } from './social-posts';
3
+ import * as e from '../enums';
4
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
5
+ export declare class DateRange implements i.DateRangeInterface {
6
+ start: Date;
7
+ end: Date;
8
+ static fromProto(proto: any): DateRange;
9
+ constructor(kwargs?: i.DateRangeInterface);
10
+ toApiJson(): object;
11
+ }
12
+ export declare class EngagementParameter implements i.EngagementParameterInterface {
13
+ engagementParameter: string;
14
+ value: string;
15
+ static fromProto(proto: any): EngagementParameter;
16
+ constructor(kwargs?: i.EngagementParameterInterface);
17
+ toApiJson(): object;
18
+ }
19
+ export declare class ListSocialPostEngagementsRequest implements i.ListSocialPostEngagementsRequestInterface {
20
+ accountGroupId: string;
21
+ networks: string[];
22
+ dateRange: DateRange;
23
+ sortBy: SortBy[];
24
+ limit: number;
25
+ isPostDataNeeded: boolean;
26
+ cursor: string;
27
+ static fromProto(proto: any): ListSocialPostEngagementsRequest;
28
+ constructor(kwargs?: i.ListSocialPostEngagementsRequestInterface);
29
+ toApiJson(): object;
30
+ }
31
+ export declare class ListSocialPostEngagementsResponse implements i.ListSocialPostEngagementsResponseInterface {
32
+ socialPostEngagements: SocialPostEngagement[];
33
+ cursor: string;
34
+ static fromProto(proto: any): ListSocialPostEngagementsResponse;
35
+ constructor(kwargs?: i.ListSocialPostEngagementsResponseInterface);
36
+ toApiJson(): object;
37
+ }
38
+ export declare class SocialEngagement implements i.SocialEngagementInterface {
39
+ calculatedEngagementRate: string;
40
+ engagementParameters: EngagementParameter[];
41
+ static fromProto(proto: any): SocialEngagement;
42
+ constructor(kwargs?: i.SocialEngagementInterface);
43
+ toApiJson(): object;
44
+ }
45
+ export declare class SocialPostEngagement implements i.SocialPostEngagementInterface {
46
+ socialPost: SocialPost;
47
+ socialEngagement: SocialEngagement;
48
+ network: string;
49
+ errorMessage: string;
50
+ static fromProto(proto: any): SocialPostEngagement;
51
+ constructor(kwargs?: i.SocialPostEngagementInterface);
52
+ toApiJson(): object;
53
+ }
54
+ export declare class SortBy implements i.SortByInterface {
55
+ field: string;
56
+ sortDirection: e.SortBySortDirection;
57
+ static fromProto(proto: any): SortBy;
58
+ constructor(kwargs?: i.SortByInterface);
59
+ toApiJson(): object;
60
+ }
@@ -1,13 +1,15 @@
1
1
  export { FieldMask, } from './field-mask';
2
2
  export { Hashtag, } from './hashtag';
3
- export { Author, BlogPostCustomization, CallToAction, Category, Error, Event, MLPostCategory, MediaEntry, MetaData, PostTemplate, SSIDPostType, SchedulePostStatus, SocialCampaign, SocialPost, SocialPostData, TikTokCustomization, YoutubeCustomization, } from './social-posts';
3
+ export { BlogPostCustomization, CallToAction, Error, Event, FacebookPageInfo, MLPostCategory, MediaEntry, MetaData, PostTemplate, SSIDPostType, SchedulePostStatus, SocialCampaign, SocialPost, SocialPostData, TikTokCustomization, YoutubeCustomization, } from './social-posts';
4
4
  export { BulkUploadMultilocation, Location, MultilocationPost, MultilocationPostError, MultilocationServices, PostAction, PostCustomization, PostCustomizationByLocation, PostEvent, } from './multilocation-post';
5
5
  export { PixabayImage, } from './pixabay-image';
6
- export { FacebookPostStats, SocialPostStats, TwitterPostStats, } from './social-post-stats';
6
+ export { FacebookPostStats, InstagramPostStats, LinkedInPostStats, SocialPostStats, TikTokPostStats, TwitterPostStats, YoutubePostStats, } from './social-post-stats';
7
7
  export { TenorGifMediaMapEntry, TenorGif, TenorMediaObject, } from './tenor-gif';
8
8
  export { PexelsImage, } from './pexels-image';
9
+ export { DateRange, EngagementParameter, ListSocialPostEngagementsRequest, ListSocialPostEngagementsResponse, SocialEngagement, SocialPostEngagement, SortBy, } from './engagement';
10
+ export { ListStockImagesRequest, ListStockImagesResponse, StockImage, } from './stock-image';
9
11
  export { Access, MCPOptions, } from './annotations';
10
- export { BulkCreateMultilocationPostRequest, BulkCreateMultilocationPostResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, DateRangeFilter, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, PartnerListScheduledSocialPostsRequestFilters, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPexelsImagesRequest, ListPexelsImagesResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PostData, RemoveFromMultilocationPostRequest, ReplaceHashtagsRequest, SchedulePostRequest, SchedulePostResponse, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SuggestMessageRequest, SuggestMessageResponse, UpdatePostTemplateRequest, } from './api';
12
+ export { BulkCreateMultilocationPostRequest, BulkCreateMultilocationPostResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, DateRangeFilter, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, FetchFacebookMentionInfoRequest, FetchFacebookMentionInfoResponse, PartnerListScheduledSocialPostsRequestFilters, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPexelsImagesRequest, ListPexelsImagesResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, FetchFacebookMentionInfoResponsePageInfoEntry, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PostData, RemoveFromMultilocationPostRequest, ReplaceHashtagsRequest, SchedulePostRequest, SchedulePostResponse, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SuggestMessageRequest, SuggestMessageResponse, UpdatePostTemplateRequest, } from './api';
11
13
  export { LinkV2, MetadataV2, PostActionV2, PostContentV2, PostCustomizationV2, PostEventV2, PostMediaV2, SocialPostV2, TikTokCustomizationV2, YoutubeCustomizationV2, } from './social-post-v2';
12
14
  export { Media, } from './linkedin-v2';
13
15
  export { Ancestry, Collection, Image, Links, Photo, Social, Source, SubAncestry, Tags, Urls, User, UserLink, } from './unsplash-image';
@@ -15,5 +17,5 @@ export { AiInstructions, BlogPostCampaign, CreateCommonAiInstructionsRequest, Cr
15
17
  export { Action, EndChatRequest, SendMessageRequest, SendMessageResponse, StartChatRequest, StartChatResponse, } from './chat-bot';
16
18
  export { ChatMessage, SendMessageV2Request, SendMessageV2Response, } from './chat-bot-v2';
17
19
  export { BlogConnection, CreateBlogConnectionRequest, CreateBlogConnectionResponse, DeleteBlogConnectionRequest, GetBlogConnectionRequest, GetBlogConnectionResponse, ListBlogConnectionRequest, ListBlogConnectionResponse, UpdateBlogConnectionRequest, } from './blog-connection';
18
- export { Author as WordpressAuthor, AuthorsRequest, AuthorsResponse, BlogImage, BlogPost, BlogVideo, Category as WordpressCategory, CategoryRequest, CategoryResponse, DeleteBlogPostRequest, GetMultiBlogPostsRequest, GetMultiBlogPostsResponse, MediaProperty, PublishPostRequest, PublishPostResponse, RepostBlogPostRequest, StatusRequest, StatusResponse, UpdateBlogPostRequest, } from './wordpress-plugin';
20
+ export { Author, AuthorsRequest, AuthorsResponse, BlogImage, BlogPost, BlogVideo, Category, CategoryRequest, CategoryResponse, DeleteBlogPostRequest, GetMultiBlogPostsRequest, GetMultiBlogPostsResponse, MediaProperty, PublishPostRequest, PublishPostResponse, RepostBlogPostRequest, StatusRequest, StatusResponse, UpdateBlogPostRequest, } from './wordpress-plugin';
19
21
  export { Campaign, CreateCampaignRequest, CreateCampaignResponse, DeleteCampaignRequest, GetCampaignRequest, GetCampaignResponse, GetMultiCampaignsRequest, GetMultiCampaignsResponse, UpdateCampaignIdRequest, UpdateCampaignRequest, } from './campaign';
@@ -12,14 +12,47 @@ export declare class FacebookPostStats implements i.FacebookPostStatsInterface {
12
12
  constructor(kwargs?: i.FacebookPostStatsInterface);
13
13
  toApiJson(): object;
14
14
  }
15
+ export declare class InstagramPostStats implements i.InstagramPostStatsInterface {
16
+ likeCount: number;
17
+ commentCount: number;
18
+ saves: number;
19
+ reach: number;
20
+ videoViews: number;
21
+ static fromProto(proto: any): InstagramPostStats;
22
+ constructor(kwargs?: i.InstagramPostStatsInterface);
23
+ toApiJson(): object;
24
+ }
25
+ export declare class LinkedInPostStats implements i.LinkedInPostStatsInterface {
26
+ likeCount: number;
27
+ commentCount: number;
28
+ shareCount: number;
29
+ clicks: number;
30
+ impressions: number;
31
+ static fromProto(proto: any): LinkedInPostStats;
32
+ constructor(kwargs?: i.LinkedInPostStatsInterface);
33
+ toApiJson(): object;
34
+ }
15
35
  export declare class SocialPostStats implements i.SocialPostStatsInterface {
16
36
  internalPostId: string;
17
37
  facebookPostStats: FacebookPostStats;
18
38
  twitterPostStats: TwitterPostStats;
39
+ linkedinPostStats: LinkedInPostStats;
40
+ instagramPostStats: InstagramPostStats;
41
+ youtubePostStats: YoutubePostStats;
42
+ tiktokPostStats: TikTokPostStats;
19
43
  static fromProto(proto: any): SocialPostStats;
20
44
  constructor(kwargs?: i.SocialPostStatsInterface);
21
45
  toApiJson(): object;
22
46
  }
47
+ export declare class TikTokPostStats implements i.TikTokPostStatsInterface {
48
+ likeCount: number;
49
+ commentCount: number;
50
+ shareCount: number;
51
+ peopleReached: number;
52
+ static fromProto(proto: any): TikTokPostStats;
53
+ constructor(kwargs?: i.TikTokPostStatsInterface);
54
+ toApiJson(): object;
55
+ }
23
56
  export declare class TwitterPostStats implements i.TwitterPostStatsInterface {
24
57
  favourites: number;
25
58
  hasFavourited: boolean;
@@ -29,3 +62,14 @@ export declare class TwitterPostStats implements i.TwitterPostStatsInterface {
29
62
  constructor(kwargs?: i.TwitterPostStatsInterface);
30
63
  toApiJson(): object;
31
64
  }
65
+ export declare class YoutubePostStats implements i.YoutubePostStatsInterface {
66
+ likeCount: number;
67
+ commentCount: number;
68
+ favourites: number;
69
+ views: number;
70
+ videoViews: number;
71
+ dislikeCount: number;
72
+ static fromProto(proto: any): YoutubePostStats;
73
+ constructor(kwargs?: i.YoutubePostStatsInterface);
74
+ toApiJson(): object;
75
+ }
@@ -46,6 +46,16 @@ export declare class Event implements i.EventInterface {
46
46
  constructor(kwargs?: i.EventInterface);
47
47
  toApiJson(): object;
48
48
  }
49
+ export declare class FacebookPageInfo implements i.FacebookPageInfoInterface {
50
+ id: string;
51
+ name: string;
52
+ category: string;
53
+ profileUrl: string;
54
+ profileImageUrl: string;
55
+ static fromProto(proto: any): FacebookPageInfo;
56
+ constructor(kwargs?: i.FacebookPageInfoInterface);
57
+ toApiJson(): object;
58
+ }
49
59
  export declare class MLPostCategory implements i.MLPostCategoryInterface {
50
60
  isDraft: boolean;
51
61
  isHidden: boolean;
@@ -0,0 +1,32 @@
1
+ import * as i from '../interfaces';
2
+ import * as e from '../enums';
3
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
+ export declare class ListStockImagesRequest implements i.ListStockImagesRequestInterface {
5
+ namespaceId: string;
6
+ keywords: string[];
7
+ imageCount: number;
8
+ imageSource: e.ImageSource;
9
+ orientation: string;
10
+ size: string;
11
+ page: number;
12
+ perPage: number;
13
+ static fromProto(proto: any): ListStockImagesRequest;
14
+ constructor(kwargs?: i.ListStockImagesRequestInterface);
15
+ toApiJson(): object;
16
+ }
17
+ export declare class ListStockImagesResponse implements i.ListStockImagesResponseInterface {
18
+ images: StockImage[];
19
+ static fromProto(proto: any): ListStockImagesResponse;
20
+ constructor(kwargs?: i.ListStockImagesResponseInterface);
21
+ toApiJson(): object;
22
+ }
23
+ export declare class StockImage implements i.StockImageInterface {
24
+ publicUrl: string;
25
+ storageUrl: string;
26
+ source: e.ImageSource;
27
+ photographerName: string;
28
+ photographerUrl: string;
29
+ static fromProto(proto: any): StockImage;
30
+ constructor(kwargs?: i.StockImageInterface);
31
+ toApiJson(): object;
32
+ }
@@ -0,0 +1,13 @@
1
+ import { FetchFacebookMentionInfoRequest, FetchFacebookMentionInfoResponse } from './objects/';
2
+ import { FetchFacebookMentionInfoRequestInterface } from './interfaces/';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SocialMentionsApiService {
6
+ private readonly hostService;
7
+ private readonly http;
8
+ private _host;
9
+ private apiOptions;
10
+ fetchFacebookMentionInfo(r: FetchFacebookMentionInfoRequest | FetchFacebookMentionInfoRequestInterface): Observable<FetchFacebookMentionInfoResponse>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SocialMentionsApiService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<SocialMentionsApiService>;
13
+ }
@@ -0,0 +1,13 @@
1
+ import { ListSocialPostEngagementsRequest, ListSocialPostEngagementsResponse } from './objects/';
2
+ import { ListSocialPostEngagementsRequestInterface } from './interfaces/';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SocialPostEngagementsApiService {
6
+ private readonly hostService;
7
+ private readonly http;
8
+ private _host;
9
+ private apiOptions;
10
+ listSocialPostEngagements(r: ListSocialPostEngagementsRequest | ListSocialPostEngagementsRequestInterface): Observable<ListSocialPostEngagementsResponse>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SocialPostEngagementsApiService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<SocialPostEngagementsApiService>;
13
+ }
package/lib/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { SocialPostsService } from './social-posts.service';
2
+ export { SocialMentionsService } from './social-mentions.service';
2
3
  export { PostTemplatesService } from './post-templates.service';
3
4
  export { MultilocationPostsService } from './multilocation-posts.service';
4
5
  export { TenorGifsService } from './tenor-gifs.service';
@@ -12,7 +12,7 @@ export declare class MultilocationPostsService {
12
12
  constructor(multilocationApiService: MultilocationPostApiService);
13
13
  createMultilocationPost(brandId: string, text: string, media: string[], gifs: string[], videos: string[], scheduledDate: Date, locations: Location[], mediaEntries?: MediaEntry[], postCustomization?: PostCustomization, linkShortCode?: string, metadata?: MetaData[], postTypes?: SSIDPostType[], postCategory?: MLPostCategory, postCustomizationByLocation?: PostCustomizationByLocationInterface): Observable<CreateMultilocationPostResponse>;
14
14
  editMultilocationPost(brandId: string, multilocationId: string, text: string, media: string[], gifs: string[], videos: string[], scheduledDate: Date, locations: Location[], fieldMask: FieldMask, mediaEntries?: MediaEntry[], postCustomization?: PostCustomization, linkShortCode?: string, metadata?: MetaData[], postTypes?: SSIDPostType[], postCategory?: MLPostCategory, newServices?: MultilocationServices[], deletedServices?: MultilocationServices[], postCustomizationByLocation?: PostCustomizationByLocationInterface): Observable<EditMultilocationPostResponse>;
15
- editMultilocationPostV2(req: EditMultilocationPostRequest | EditMultilocationPostRequestInterface): Observable<EditMultilocationPostResponse>;
15
+ editMultilocationPostV2(req: EditMultilocationPostRequest | EditMultilocationPostRequestInterface): Observable<HttpResponse<null>>;
16
16
  removeFromMultilocationPost(reason: RemoveReason, brandId: string, multilocationId: string, locations: Location[]): Observable<HttpResponse<null>>;
17
17
  listMultilocationPostsForBrand(brandId: string, startDate: Date, endDate: Date, cursor: string, pageSize: number): Observable<ListMultilocationPostsForBrandResponse>;
18
18
  deleteMultilocationPost(brandId: string, multilocationId: string): Observable<HttpResponse<null>>;
@@ -0,0 +1,11 @@
1
+ import { Observable } from 'rxjs';
2
+ import { FetchFacebookMentionInfoResponse } from './_internal/objects/api';
3
+ import { SocialMentionsApiService } from './_internal/social-mentions.api.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SocialMentionsService {
6
+ private socialMentionsApiService;
7
+ constructor(socialMentionsApiService: SocialMentionsApiService);
8
+ fetchFacebookMentionInfo(accountGroupId: string, partnerId: string, socialServiceId: string, socialProfileId: string, pageIds: string[]): Observable<FetchFacebookMentionInfoResponse>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SocialMentionsService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<SocialMentionsService>;
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/social-posts",
3
- "version": "5.45.8",
3
+ "version": "5.47.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"