@vendasta/social-posts 5.39.1 → 5.41.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/content-generation.api.service.mjs +8 -3
- package/esm2020/lib/_internal/enums/api.enum.mjs +12 -0
- package/esm2020/lib/_internal/enums/index.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/api-v2.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/multilocation-post.interface.mjs +1 -1
- package/esm2020/lib/_internal/multilocation-post.api.service.mjs +7 -2
- package/esm2020/lib/_internal/objects/api-v2.mjs +107 -89
- package/esm2020/lib/_internal/objects/api.mjs +63 -2
- package/esm2020/lib/_internal/objects/index.mjs +4 -4
- package/esm2020/lib/_internal/objects/multilocation-post.mjs +69 -1
- package/esm2020/lib/content-generation.service.mjs +4 -1
- package/esm2020/lib/multilocation-posts.service.mjs +4 -1
- package/fesm2015/vendasta-social-posts.mjs +265 -90
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +265 -90
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/content-generation.api.service.d.ts +4 -3
- package/lib/_internal/enums/api.enum.d.ts +4 -0
- package/lib/_internal/enums/index.d.ts +1 -0
- package/lib/_internal/interfaces/api-v2.interface.d.ts +21 -15
- package/lib/_internal/interfaces/api.interface.d.ts +10 -1
- package/lib/_internal/interfaces/index.d.ts +3 -3
- package/lib/_internal/interfaces/multilocation-post.interface.d.ts +14 -0
- package/lib/_internal/multilocation-post.api.service.d.ts +3 -2
- package/lib/_internal/objects/api-v2.d.ts +34 -28
- package/lib/_internal/objects/api.d.ts +16 -1
- package/lib/_internal/objects/index.d.ts +3 -3
- package/lib/_internal/objects/multilocation-post.d.ts +17 -0
- package/lib/content-generation.service.d.ts +2 -1
- package/lib/multilocation-posts.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest,
|
|
2
|
-
import { GenerateAiRequestInterface, GenerateBlogPostCampaignRequestInterface, GenerateContentMetaDataRequestInterface, GeneratePostCampaignRequestInterface, GeneratePostsRequestInterface } from './interfaces/';
|
|
1
|
+
import { FetchLibraryImagesRequest, FetchLibraryImagesResponse, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest, GenerateContentMetaDataRequest, GenerateContentMetaDataResponse, GeneratePostCampaignRequest, GeneratePostCampaignResponse, GeneratePostsRequest, GeneratePostsResponse } from './objects/';
|
|
2
|
+
import { FetchLibraryImagesRequestInterface, GenerateAiRequestInterface, GenerateBlogPostCampaignRequestInterface, GenerateContentMetaDataRequestInterface, GeneratePostCampaignRequestInterface, GeneratePostsRequestInterface } from './interfaces/';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ContentGenerationApiService {
|
|
@@ -10,8 +10,9 @@ export declare class ContentGenerationApiService {
|
|
|
10
10
|
generatePosts(r: GeneratePostsRequest | GeneratePostsRequestInterface): Observable<GeneratePostsResponse>;
|
|
11
11
|
generate(r: GenerateAiRequest | GenerateAiRequestInterface): Observable<GenerateAiResponse>;
|
|
12
12
|
generateContentMetaData(r: GenerateContentMetaDataRequest | GenerateContentMetaDataRequestInterface): Observable<GenerateContentMetaDataResponse>;
|
|
13
|
-
generateBlogPostCampaign(r: GenerateBlogPostCampaignRequest | GenerateBlogPostCampaignRequestInterface): Observable<
|
|
13
|
+
generateBlogPostCampaign(r: GenerateBlogPostCampaignRequest | GenerateBlogPostCampaignRequestInterface): Observable<GeneratePostCampaignResponse>;
|
|
14
14
|
generatePostCampaign(r: GeneratePostCampaignRequest | GeneratePostCampaignRequestInterface): Observable<GeneratePostCampaignResponse>;
|
|
15
|
+
fetchLibraryImages(r: FetchLibraryImagesRequest | FetchLibraryImagesRequestInterface): Observable<FetchLibraryImagesResponse>;
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContentGenerationApiService, never>;
|
|
16
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContentGenerationApiService>;
|
|
17
18
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { CallToActionCallToActionType, SocialPostDeletionStatus, MessageLength, PostType, PostingStatus, YoutubeCustomizationPrivacyStatus, SocialPostService, TemplateType, } from './social-posts.enum';
|
|
2
2
|
export { RemoveReason, } from './multilocation-post.enum';
|
|
3
|
+
export { BulkPostStatus, } from './api.enum';
|
|
3
4
|
export { PostStatusV2, PostTypeV2, YoutubeCustomizationV2PrivacyStatusV2, } from './social-post-v2.enum';
|
|
4
5
|
export { MediaType, } from './linkedin-v2.enum';
|
|
5
6
|
export { ContentLength, GenerateType, Network, PostCategory, Tone, } from './api-v2.enum';
|
|
@@ -12,6 +12,7 @@ export interface AiInstructionsInterface {
|
|
|
12
12
|
export interface BlogPostCampaignInterface {
|
|
13
13
|
blogPostId?: string;
|
|
14
14
|
blogPostType?: e.PostCategory;
|
|
15
|
+
noOfPosts?: number;
|
|
15
16
|
}
|
|
16
17
|
export interface CreateCommonAiInstructionsRequestInterface {
|
|
17
18
|
businessId?: string;
|
|
@@ -49,6 +50,14 @@ export interface DeletePostRequestInterface {
|
|
|
49
50
|
accessToken?: string;
|
|
50
51
|
postId?: string;
|
|
51
52
|
}
|
|
53
|
+
export interface FetchLibraryImagesRequestInterface {
|
|
54
|
+
businessId?: string;
|
|
55
|
+
keywordInput?: KeywordGenerationInterface;
|
|
56
|
+
imageCount?: number;
|
|
57
|
+
}
|
|
58
|
+
export interface FetchLibraryImagesResponseInterface {
|
|
59
|
+
images?: ImageResponseInterface[];
|
|
60
|
+
}
|
|
52
61
|
export interface GenerateAiRequestInterface {
|
|
53
62
|
goal?: string;
|
|
54
63
|
instruction?: string;
|
|
@@ -68,9 +77,6 @@ export interface GenerateBlogPostCampaignRequestInterface {
|
|
|
68
77
|
blogCampaign?: BlogPostCampaignInterface;
|
|
69
78
|
partnerId?: string;
|
|
70
79
|
}
|
|
71
|
-
export interface GenerateBlogPostCampaignResponseInterface {
|
|
72
|
-
posts?: PostsInterface[];
|
|
73
|
-
}
|
|
74
80
|
export interface GenerateContentMetaDataRequestInterface {
|
|
75
81
|
businessId?: string;
|
|
76
82
|
titleInput?: TitleGenerationInterface;
|
|
@@ -87,7 +93,7 @@ export interface GeneratePostCampaignRequestInterface {
|
|
|
87
93
|
partnerId?: string;
|
|
88
94
|
}
|
|
89
95
|
export interface GeneratePostCampaignResponseInterface {
|
|
90
|
-
|
|
96
|
+
posts?: PostInterface[];
|
|
91
97
|
}
|
|
92
98
|
export interface GeneratePostsRequestInterface {
|
|
93
99
|
numberOfPosts?: number;
|
|
@@ -116,12 +122,18 @@ export interface ImageCreatedInterface {
|
|
|
116
122
|
b64Json?: string;
|
|
117
123
|
revisedPrompt?: string;
|
|
118
124
|
}
|
|
125
|
+
export interface ImageResponseInterface {
|
|
126
|
+
type?: string;
|
|
127
|
+
webformatUrl?: string;
|
|
128
|
+
fullHdUrl?: string;
|
|
129
|
+
}
|
|
119
130
|
export interface ImageUrlInterface {
|
|
120
131
|
url?: string;
|
|
121
132
|
}
|
|
122
133
|
export interface KeywordGenerationInterface {
|
|
123
134
|
blogPostId?: string;
|
|
124
135
|
keywordCount?: number;
|
|
136
|
+
postType?: e.PostCategory;
|
|
125
137
|
}
|
|
126
138
|
export interface KeywordListInterface {
|
|
127
139
|
keywords?: string[];
|
|
@@ -169,16 +181,14 @@ export interface MultiResponseInterface {
|
|
|
169
181
|
export interface GeneratePostsResponsePostInterface {
|
|
170
182
|
text?: string;
|
|
171
183
|
}
|
|
172
|
-
export interface
|
|
173
|
-
singlePost?: SinglePostInterface[];
|
|
174
|
-
}
|
|
175
|
-
export interface PostListInterface {
|
|
184
|
+
export interface PostInterface {
|
|
176
185
|
topic?: string;
|
|
177
|
-
posts?: PostsInterface[];
|
|
178
|
-
}
|
|
179
|
-
export interface PostsInterface {
|
|
180
186
|
postContent?: PostContentInterface[];
|
|
181
187
|
}
|
|
188
|
+
export interface PostContentInterface {
|
|
189
|
+
socialNetwork?: e.Network;
|
|
190
|
+
post?: string;
|
|
191
|
+
}
|
|
182
192
|
export interface PostsGenerationInterface {
|
|
183
193
|
topic?: string[];
|
|
184
194
|
goal?: string;
|
|
@@ -194,10 +204,6 @@ export interface RepostSocialPostRequestInterface {
|
|
|
194
204
|
export interface ResponseInterface {
|
|
195
205
|
content?: string;
|
|
196
206
|
}
|
|
197
|
-
export interface SinglePostInterface {
|
|
198
|
-
socialNetwork?: e.Network;
|
|
199
|
-
post?: string;
|
|
200
|
-
}
|
|
201
207
|
export interface SocialPostOutputInterface {
|
|
202
208
|
internalPostId?: string;
|
|
203
209
|
socialPost?: SocialPostV2Interface;
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
import { FieldMaskInterface } from './field-mask.interface';
|
|
2
2
|
import { HashtagInterface } from './hashtag.interface';
|
|
3
|
-
import { LocationInterface, PostCustomizationInterface, MultilocationPostInterface
|
|
3
|
+
import { LocationInterface, BulkUploadMultilocationInterface, MultilocationPostErrorInterface, PostCustomizationInterface, MultilocationPostInterface } from './multilocation-post.interface';
|
|
4
4
|
import { MediaEntryInterface, MetaDataInterface, SSIDPostTypeInterface, YoutubeCustomizationInterface, SocialPostInterface, PostTemplateInterface, SocialPostDataInterface, SchedulePostStatusInterface } from './social-posts.interface';
|
|
5
5
|
import { PixabayImageInterface } from './pixabay-image.interface';
|
|
6
6
|
import { SocialPostStatsInterface } from './social-post-stats.interface';
|
|
7
7
|
import { TenorGifInterface } from './tenor-gif.interface';
|
|
8
8
|
import * as e from '../enums';
|
|
9
|
+
export interface BulkCreateMultilocationPostRequestInterface {
|
|
10
|
+
brandId?: string;
|
|
11
|
+
locations?: LocationInterface[];
|
|
12
|
+
request?: BulkUploadMultilocationInterface[];
|
|
13
|
+
}
|
|
14
|
+
export interface BulkCreateMultilocationPostResponseInterface {
|
|
15
|
+
status?: e.BulkPostStatus;
|
|
16
|
+
error?: MultilocationPostErrorInterface[];
|
|
17
|
+
}
|
|
9
18
|
export interface CreateMultilocationPostRequestInterface {
|
|
10
19
|
brandId?: string;
|
|
11
20
|
text?: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
2
2
|
export { HashtagInterface, } from './hashtag.interface';
|
|
3
3
|
export { BlogPostCustomizationInterface, CallToActionInterface, ErrorInterface, EventInterface, MediaEntryInterface, MetaDataInterface, PostTemplateInterface, SSIDPostTypeInterface, SchedulePostStatusInterface, SocialCampaignInterface, SocialPostInterface, SocialPostDataInterface, TikTokCustomizationInterface, YoutubeCustomizationInterface, } from './social-posts.interface';
|
|
4
|
-
export { LocationInterface, MultilocationPostInterface, MultilocationPostErrorInterface, PostActionInterface, PostCustomizationInterface, PostEventInterface, } from './multilocation-post.interface';
|
|
4
|
+
export { BulkUploadMultilocationInterface, LocationInterface, MultilocationPostInterface, MultilocationPostErrorInterface, PostActionInterface, PostCustomizationInterface, PostEventInterface, } from './multilocation-post.interface';
|
|
5
5
|
export { PixabayImageInterface, } from './pixabay-image.interface';
|
|
6
6
|
export { FacebookPostStatsInterface, SocialPostStatsInterface, TwitterPostStatsInterface, } from './social-post-stats.interface';
|
|
7
7
|
export { TenorGifMediaMapEntryInterface, TenorGifInterface, TenorMediaObjectInterface, } from './tenor-gif.interface';
|
|
8
|
-
export { 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, 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';
|
|
8
|
+
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, 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';
|
|
9
9
|
export { AccessInterface, } from './annotations.interface';
|
|
10
10
|
export { LinkV2Interface, MetadataV2Interface, PostActionV2Interface, PostContentV2Interface, PostCustomizationV2Interface, PostEventV2Interface, PostMediaV2Interface, SocialPostV2Interface, TikTokCustomizationV2Interface, YoutubeCustomizationV2Interface, } from './social-post-v2.interface';
|
|
11
11
|
export { MediaInterface, } from './linkedin-v2.interface';
|
|
12
12
|
export { AncestryInterface, CollectionInterface, ImageInterface, LinksInterface, PhotoInterface, SocialInterface, SourceInterface, SubAncestryInterface, TagsInterface, UrlsInterface, UserInterface, UserLinkInterface, } from './unsplash-image.interface';
|
|
13
|
-
export { AiInstructionsInterface, BlogPostCampaignInterface, CreateCommonAiInstructionsRequestInterface, CreateCommonAiInstructionsResponseInterface, CreateImageRequestInterface, CreateImageResponseInterface, CuratedContentPostInterface, DeletePostRequestInterface, GenerateAiRequestInterface, GenerateAiResponseInterface, GenerateBlogPostCampaignRequestInterface,
|
|
13
|
+
export { AiInstructionsInterface, BlogPostCampaignInterface, CreateCommonAiInstructionsRequestInterface, CreateCommonAiInstructionsResponseInterface, CreateImageRequestInterface, CreateImageResponseInterface, CuratedContentPostInterface, DeletePostRequestInterface, FetchLibraryImagesRequestInterface, FetchLibraryImagesResponseInterface, GenerateAiRequestInterface, GenerateAiResponseInterface, GenerateBlogPostCampaignRequestInterface, GenerateContentMetaDataRequestInterface, GenerateContentMetaDataResponseInterface, GeneratePostCampaignRequestInterface, GeneratePostCampaignResponseInterface, GeneratePostsRequestInterface, GeneratePostsResponseInterface, GetCommonAiInstructionsRequestInterface, GetCommonAiInstructionsResponseInterface, ImageBlobInterface, ImageCreatedInterface, ImageResponseInterface, ImageUrlInterface, KeywordGenerationInterface, KeywordListInterface, ListCuratedContentRequestInterface, ListCuratedContentResponseInterface, ListUnsplashImagesRequestInterface, ListUnsplashImagesResponseInterface, MediaUploadRequestInterface, MediaUploadResponseInterface, MultiResponseInterface, GeneratePostsResponsePostInterface, PostInterface, PostContentInterface, PostsGenerationInterface, RepostSocialPostRequestInterface, ResponseInterface, SocialPostOutputInterface, SocialPostRequestInterface, SocialPostResponseInterface, TitleGenerationInterface, UpdateCommonAiInstructionsRequestInterface, UpdateCommonAiInstructionsResponseInterface, UpdateSocialPostRequestInterface, UpdateSocialPostResponseInterface, UploadToStorageRequestInterface, UploadToStorageResponseInterface, UploadedMediaInterface, } from './api-v2.interface';
|
|
14
14
|
export { ActionInterface, EndChatRequestInterface, SendMessageRequestInterface, SendMessageResponseInterface, StartChatRequestInterface, StartChatResponseInterface, } from './chat-bot.interface';
|
|
15
15
|
export { ChatMessageInterface, SendMessageV2RequestInterface, SendMessageV2ResponseInterface, } from './chat-bot-v2.interface';
|
|
16
16
|
export { BlogConnectionInterface, CreateBlogConnectionRequestInterface, CreateBlogConnectionResponseInterface, DeleteBlogConnectionRequestInterface, GetBlogConnectionRequestInterface, GetBlogConnectionResponseInterface, ListBlogConnectionRequestInterface, ListBlogConnectionResponseInterface, UpdateBlogConnectionRequestInterface, } from './blog-connection.interface';
|
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
import { MediaEntryInterface, MetaDataInterface, SSIDPostTypeInterface } from './social-posts.interface';
|
|
2
|
+
export interface BulkUploadMultilocationInterface {
|
|
3
|
+
text?: string;
|
|
4
|
+
media?: string[];
|
|
5
|
+
scheduledDate?: Date;
|
|
6
|
+
gifs?: string[];
|
|
7
|
+
videos?: string[];
|
|
8
|
+
mediaEntries?: MediaEntryInterface[];
|
|
9
|
+
metaData?: MetaDataInterface[];
|
|
10
|
+
tags?: string[];
|
|
11
|
+
customization?: PostCustomizationInterface;
|
|
12
|
+
linkShortCode?: string;
|
|
13
|
+
postTypes?: SSIDPostTypeInterface[];
|
|
14
|
+
multilocationId?: string;
|
|
15
|
+
}
|
|
2
16
|
export interface LocationInterface {
|
|
3
17
|
socialServiceIds?: string[];
|
|
4
18
|
accountGroupId?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CreateMultilocationPostRequest, CreateMultilocationPostResponse, DeleteMultilocationPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, RemoveFromMultilocationPostRequest } from './objects/';
|
|
2
|
-
import { CreateMultilocationPostRequestInterface, DeleteMultilocationPostRequestInterface, EditMultilocationPostRequestInterface, GetMultilocationPostRequestInterface, ListMultilocationPostsForBrandRequestInterface, RemoveFromMultilocationPostRequestInterface } from './interfaces/';
|
|
1
|
+
import { BulkCreateMultilocationPostRequest, BulkCreateMultilocationPostResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, DeleteMultilocationPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, RemoveFromMultilocationPostRequest } from './objects/';
|
|
2
|
+
import { BulkCreateMultilocationPostRequestInterface, CreateMultilocationPostRequestInterface, DeleteMultilocationPostRequestInterface, EditMultilocationPostRequestInterface, GetMultilocationPostRequestInterface, ListMultilocationPostsForBrandRequestInterface, RemoveFromMultilocationPostRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -14,6 +14,7 @@ export declare class MultilocationPostApiService {
|
|
|
14
14
|
listMultilocationPostsForBrand(r: ListMultilocationPostsForBrandRequest | ListMultilocationPostsForBrandRequestInterface): Observable<ListMultilocationPostsForBrandResponse>;
|
|
15
15
|
deleteMultilocationPost(r: DeleteMultilocationPostRequest | DeleteMultilocationPostRequestInterface): Observable<HttpResponse<null>>;
|
|
16
16
|
getMultilocationPost(r: GetMultilocationPostRequest | GetMultilocationPostRequestInterface): Observable<GetMultilocationPostResponse>;
|
|
17
|
+
bulkCreateMultilocationPost(r: BulkCreateMultilocationPostRequest | BulkCreateMultilocationPostRequestInterface): Observable<BulkCreateMultilocationPostResponse>;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultilocationPostApiService, never>;
|
|
18
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<MultilocationPostApiService>;
|
|
19
20
|
}
|
|
@@ -17,6 +17,7 @@ export declare class AiInstructions implements i.AiInstructionsInterface {
|
|
|
17
17
|
export declare class BlogPostCampaign implements i.BlogPostCampaignInterface {
|
|
18
18
|
blogPostId: string;
|
|
19
19
|
blogPostType: e.PostCategory;
|
|
20
|
+
noOfPosts: number;
|
|
20
21
|
static fromProto(proto: any): BlogPostCampaign;
|
|
21
22
|
constructor(kwargs?: i.BlogPostCampaignInterface);
|
|
22
23
|
toApiJson(): object;
|
|
@@ -75,6 +76,20 @@ export declare class DeletePostRequest implements i.DeletePostRequestInterface {
|
|
|
75
76
|
constructor(kwargs?: i.DeletePostRequestInterface);
|
|
76
77
|
toApiJson(): object;
|
|
77
78
|
}
|
|
79
|
+
export declare class FetchLibraryImagesRequest implements i.FetchLibraryImagesRequestInterface {
|
|
80
|
+
businessId: string;
|
|
81
|
+
keywordInput: KeywordGeneration;
|
|
82
|
+
imageCount: number;
|
|
83
|
+
static fromProto(proto: any): FetchLibraryImagesRequest;
|
|
84
|
+
constructor(kwargs?: i.FetchLibraryImagesRequestInterface);
|
|
85
|
+
toApiJson(): object;
|
|
86
|
+
}
|
|
87
|
+
export declare class FetchLibraryImagesResponse implements i.FetchLibraryImagesResponseInterface {
|
|
88
|
+
images: ImageResponse[];
|
|
89
|
+
static fromProto(proto: any): FetchLibraryImagesResponse;
|
|
90
|
+
constructor(kwargs?: i.FetchLibraryImagesResponseInterface);
|
|
91
|
+
toApiJson(): object;
|
|
92
|
+
}
|
|
78
93
|
export declare class GenerateAiRequest implements i.GenerateAiRequestInterface {
|
|
79
94
|
goal: string;
|
|
80
95
|
instruction: string;
|
|
@@ -103,12 +118,6 @@ export declare class GenerateBlogPostCampaignRequest implements i.GenerateBlogPo
|
|
|
103
118
|
constructor(kwargs?: i.GenerateBlogPostCampaignRequestInterface);
|
|
104
119
|
toApiJson(): object;
|
|
105
120
|
}
|
|
106
|
-
export declare class GenerateBlogPostCampaignResponse implements i.GenerateBlogPostCampaignResponseInterface {
|
|
107
|
-
posts: Posts[];
|
|
108
|
-
static fromProto(proto: any): GenerateBlogPostCampaignResponse;
|
|
109
|
-
constructor(kwargs?: i.GenerateBlogPostCampaignResponseInterface);
|
|
110
|
-
toApiJson(): object;
|
|
111
|
-
}
|
|
112
121
|
export declare class GenerateContentMetaDataRequest implements i.GenerateContentMetaDataRequestInterface {
|
|
113
122
|
businessId: string;
|
|
114
123
|
titleInput: TitleGeneration;
|
|
@@ -134,7 +143,7 @@ export declare class GeneratePostCampaignRequest implements i.GeneratePostCampai
|
|
|
134
143
|
toApiJson(): object;
|
|
135
144
|
}
|
|
136
145
|
export declare class GeneratePostCampaignResponse implements i.GeneratePostCampaignResponseInterface {
|
|
137
|
-
|
|
146
|
+
posts: Post[];
|
|
138
147
|
static fromProto(proto: any): GeneratePostCampaignResponse;
|
|
139
148
|
constructor(kwargs?: i.GeneratePostCampaignResponseInterface);
|
|
140
149
|
toApiJson(): object;
|
|
@@ -184,6 +193,14 @@ export declare class ImageCreated implements i.ImageCreatedInterface {
|
|
|
184
193
|
constructor(kwargs?: i.ImageCreatedInterface);
|
|
185
194
|
toApiJson(): object;
|
|
186
195
|
}
|
|
196
|
+
export declare class ImageResponse implements i.ImageResponseInterface {
|
|
197
|
+
type: string;
|
|
198
|
+
webformatUrl: string;
|
|
199
|
+
fullHdUrl: string;
|
|
200
|
+
static fromProto(proto: any): ImageResponse;
|
|
201
|
+
constructor(kwargs?: i.ImageResponseInterface);
|
|
202
|
+
toApiJson(): object;
|
|
203
|
+
}
|
|
187
204
|
export declare class ImageUrl implements i.ImageUrlInterface {
|
|
188
205
|
url: string;
|
|
189
206
|
static fromProto(proto: any): ImageUrl;
|
|
@@ -193,6 +210,7 @@ export declare class ImageUrl implements i.ImageUrlInterface {
|
|
|
193
210
|
export declare class KeywordGeneration implements i.KeywordGenerationInterface {
|
|
194
211
|
blogPostId: string;
|
|
195
212
|
keywordCount: number;
|
|
213
|
+
postType: e.PostCategory;
|
|
196
214
|
static fromProto(proto: any): KeywordGeneration;
|
|
197
215
|
constructor(kwargs?: i.KeywordGenerationInterface);
|
|
198
216
|
toApiJson(): object;
|
|
@@ -270,23 +288,18 @@ export declare class GeneratePostsResponsePost implements i.GeneratePostsRespons
|
|
|
270
288
|
constructor(kwargs?: i.GeneratePostsResponsePostInterface);
|
|
271
289
|
toApiJson(): object;
|
|
272
290
|
}
|
|
273
|
-
export declare class
|
|
274
|
-
singlePost: SinglePost[];
|
|
275
|
-
static fromProto(proto: any): PostContent;
|
|
276
|
-
constructor(kwargs?: i.PostContentInterface);
|
|
277
|
-
toApiJson(): object;
|
|
278
|
-
}
|
|
279
|
-
export declare class PostList implements i.PostListInterface {
|
|
291
|
+
export declare class Post implements i.PostInterface {
|
|
280
292
|
topic: string;
|
|
281
|
-
|
|
282
|
-
static fromProto(proto: any):
|
|
283
|
-
constructor(kwargs?: i.
|
|
293
|
+
postContent: PostContent[];
|
|
294
|
+
static fromProto(proto: any): Post;
|
|
295
|
+
constructor(kwargs?: i.PostInterface);
|
|
284
296
|
toApiJson(): object;
|
|
285
297
|
}
|
|
286
|
-
export declare class
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
298
|
+
export declare class PostContent implements i.PostContentInterface {
|
|
299
|
+
socialNetwork: e.Network;
|
|
300
|
+
post: string;
|
|
301
|
+
static fromProto(proto: any): PostContent;
|
|
302
|
+
constructor(kwargs?: i.PostContentInterface);
|
|
290
303
|
toApiJson(): object;
|
|
291
304
|
}
|
|
292
305
|
export declare class PostsGeneration implements i.PostsGenerationInterface {
|
|
@@ -313,13 +326,6 @@ export declare class Response implements i.ResponseInterface {
|
|
|
313
326
|
constructor(kwargs?: i.ResponseInterface);
|
|
314
327
|
toApiJson(): object;
|
|
315
328
|
}
|
|
316
|
-
export declare class SinglePost implements i.SinglePostInterface {
|
|
317
|
-
socialNetwork: e.Network;
|
|
318
|
-
post: string;
|
|
319
|
-
static fromProto(proto: any): SinglePost;
|
|
320
|
-
constructor(kwargs?: i.SinglePostInterface);
|
|
321
|
-
toApiJson(): object;
|
|
322
|
-
}
|
|
323
329
|
export declare class SocialPostOutput implements i.SocialPostOutputInterface {
|
|
324
330
|
internalPostId: string;
|
|
325
331
|
socialPost: SocialPostV2;
|
|
@@ -1,13 +1,28 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
2
|
import { FieldMask } from './field-mask';
|
|
3
3
|
import { Hashtag } from './hashtag';
|
|
4
|
-
import { Location, PostCustomization, MultilocationPost
|
|
4
|
+
import { Location, BulkUploadMultilocation, MultilocationPostError, PostCustomization, MultilocationPost } from './multilocation-post';
|
|
5
5
|
import { MediaEntry, MetaData, SSIDPostType, YoutubeCustomization, SocialPost, PostTemplate, SocialPostData, SchedulePostStatus } from './social-posts';
|
|
6
6
|
import { PixabayImage } from './pixabay-image';
|
|
7
7
|
import { SocialPostStats } from './social-post-stats';
|
|
8
8
|
import { TenorGif } from './tenor-gif';
|
|
9
9
|
import * as e from '../enums';
|
|
10
10
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
11
|
+
export declare class BulkCreateMultilocationPostRequest implements i.BulkCreateMultilocationPostRequestInterface {
|
|
12
|
+
brandId: string;
|
|
13
|
+
locations: Location[];
|
|
14
|
+
request: BulkUploadMultilocation[];
|
|
15
|
+
static fromProto(proto: any): BulkCreateMultilocationPostRequest;
|
|
16
|
+
constructor(kwargs?: i.BulkCreateMultilocationPostRequestInterface);
|
|
17
|
+
toApiJson(): object;
|
|
18
|
+
}
|
|
19
|
+
export declare class BulkCreateMultilocationPostResponse implements i.BulkCreateMultilocationPostResponseInterface {
|
|
20
|
+
status: e.BulkPostStatus;
|
|
21
|
+
error: MultilocationPostError[];
|
|
22
|
+
static fromProto(proto: any): BulkCreateMultilocationPostResponse;
|
|
23
|
+
constructor(kwargs?: i.BulkCreateMultilocationPostResponseInterface);
|
|
24
|
+
toApiJson(): object;
|
|
25
|
+
}
|
|
11
26
|
export declare class CreateMultilocationPostRequest implements i.CreateMultilocationPostRequestInterface {
|
|
12
27
|
brandId: string;
|
|
13
28
|
text: string;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export { FieldMask, } from './field-mask';
|
|
2
2
|
export { Hashtag, } from './hashtag';
|
|
3
3
|
export { BlogPostCustomization, CallToAction, Error, Event, MediaEntry, MetaData, PostTemplate, SSIDPostType, SchedulePostStatus, SocialCampaign, SocialPost, SocialPostData, TikTokCustomization, YoutubeCustomization, } from './social-posts';
|
|
4
|
-
export { Location, MultilocationPost, MultilocationPostError, PostAction, PostCustomization, PostEvent, } from './multilocation-post';
|
|
4
|
+
export { BulkUploadMultilocation, Location, MultilocationPost, MultilocationPostError, PostAction, PostCustomization, PostEvent, } from './multilocation-post';
|
|
5
5
|
export { PixabayImage, } from './pixabay-image';
|
|
6
6
|
export { FacebookPostStats, SocialPostStats, TwitterPostStats, } from './social-post-stats';
|
|
7
7
|
export { TenorGifMediaMapEntry, TenorGif, TenorMediaObject, } from './tenor-gif';
|
|
8
|
-
export { 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, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PostData, RemoveFromMultilocationPostRequest, ReplaceHashtagsRequest, SchedulePostRequest, SchedulePostResponse, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SuggestMessageRequest, SuggestMessageResponse, UpdatePostTemplateRequest, } from './api';
|
|
8
|
+
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, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PostData, RemoveFromMultilocationPostRequest, ReplaceHashtagsRequest, SchedulePostRequest, SchedulePostResponse, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SuggestMessageRequest, SuggestMessageResponse, UpdatePostTemplateRequest, } from './api';
|
|
9
9
|
export { Access, } from './annotations';
|
|
10
10
|
export { LinkV2, MetadataV2, PostActionV2, PostContentV2, PostCustomizationV2, PostEventV2, PostMediaV2, SocialPostV2, TikTokCustomizationV2, YoutubeCustomizationV2, } from './social-post-v2';
|
|
11
11
|
export { Media, } from './linkedin-v2';
|
|
12
12
|
export { Ancestry, Collection, Image, Links, Photo, Social, Source, SubAncestry, Tags, Urls, User, UserLink, } from './unsplash-image';
|
|
13
|
-
export { AiInstructions, BlogPostCampaign, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CuratedContentPost, DeletePostRequest, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest,
|
|
13
|
+
export { AiInstructions, BlogPostCampaign, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CuratedContentPost, DeletePostRequest, FetchLibraryImagesRequest, FetchLibraryImagesResponse, GenerateAiRequest, GenerateAiResponse, GenerateBlogPostCampaignRequest, GenerateContentMetaDataRequest, GenerateContentMetaDataResponse, GeneratePostCampaignRequest, GeneratePostCampaignResponse, GeneratePostsRequest, GeneratePostsResponse, GetCommonAiInstructionsRequest, GetCommonAiInstructionsResponse, ImageBlob, ImageCreated, ImageResponse, ImageUrl, KeywordGeneration, KeywordList, ListCuratedContentRequest, ListCuratedContentResponse, ListUnsplashImagesRequest, ListUnsplashImagesResponse, MediaUploadRequest, MediaUploadResponse, MultiResponse, GeneratePostsResponsePost, Post, PostContent, PostsGeneration, RepostSocialPostRequest, Response, SocialPostOutput, SocialPostRequest, SocialPostResponse, TitleGeneration, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, UploadedMedia, } from './api-v2';
|
|
14
14
|
export { Action, EndChatRequest, SendMessageRequest, SendMessageResponse, StartChatRequest, StartChatResponse, } from './chat-bot';
|
|
15
15
|
export { ChatMessage, SendMessageV2Request, SendMessageV2Response, } from './chat-bot-v2';
|
|
16
16
|
export { BlogConnection, CreateBlogConnectionRequest, CreateBlogConnectionResponse, DeleteBlogConnectionRequest, GetBlogConnectionRequest, GetBlogConnectionResponse, ListBlogConnectionRequest, ListBlogConnectionResponse, UpdateBlogConnectionRequest, } from './blog-connection';
|
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
import * as i from '../interfaces';
|
|
2
2
|
import { MediaEntry, MetaData, SSIDPostType } from './social-posts';
|
|
3
3
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
4
|
+
export declare class BulkUploadMultilocation implements i.BulkUploadMultilocationInterface {
|
|
5
|
+
text: string;
|
|
6
|
+
media: string[];
|
|
7
|
+
scheduledDate: Date;
|
|
8
|
+
gifs: string[];
|
|
9
|
+
videos: string[];
|
|
10
|
+
mediaEntries: MediaEntry[];
|
|
11
|
+
metaData: MetaData[];
|
|
12
|
+
tags: string[];
|
|
13
|
+
customization: PostCustomization;
|
|
14
|
+
linkShortCode: string;
|
|
15
|
+
postTypes: SSIDPostType[];
|
|
16
|
+
multilocationId: string;
|
|
17
|
+
static fromProto(proto: any): BulkUploadMultilocation;
|
|
18
|
+
constructor(kwargs?: i.BulkUploadMultilocationInterface);
|
|
19
|
+
toApiJson(): object;
|
|
20
|
+
}
|
|
4
21
|
export declare class Location implements i.LocationInterface {
|
|
5
22
|
socialServiceIds: string[];
|
|
6
23
|
accountGroupId: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { ContentGenerationApiService, GenerateAiRequest, GenerateAiRequestInterface, GenerateAiResponse, GenerateContentMetaDataRequest, GenerateContentMetaDataRequestInterface, GenerateContentMetaDataResponse, GeneratePostsRequest, GeneratePostsRequestInterface, GeneratePostsResponse } from './_internal';
|
|
2
|
+
import { ContentGenerationApiService, FetchLibraryImagesRequest, FetchLibraryImagesRequestInterface, FetchLibraryImagesResponse, GenerateAiRequest, GenerateAiRequestInterface, GenerateAiResponse, GenerateContentMetaDataRequest, GenerateContentMetaDataRequestInterface, GenerateContentMetaDataResponse, GeneratePostsRequest, GeneratePostsRequestInterface, GeneratePostsResponse } from './_internal';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ContentGenerationService {
|
|
5
5
|
private contentGenerationApiService;
|
|
@@ -7,6 +7,7 @@ export declare class ContentGenerationService {
|
|
|
7
7
|
generatePosts(r: GeneratePostsRequest | GeneratePostsRequestInterface): Observable<GeneratePostsResponse>;
|
|
8
8
|
generate(r: GenerateAiRequest | GenerateAiRequestInterface): Observable<GenerateAiResponse>;
|
|
9
9
|
generateContentMetaData(r: GenerateContentMetaDataRequest | GenerateContentMetaDataRequestInterface): Observable<GenerateContentMetaDataResponse>;
|
|
10
|
+
fetchLibraryImages(r: FetchLibraryImagesRequest | FetchLibraryImagesRequestInterface): Observable<FetchLibraryImagesResponse>;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContentGenerationService, never>;
|
|
11
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContentGenerationService>;
|
|
12
13
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpResponse } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { CreateMultilocationPostResponse, EditMultilocationPostResponse, GetMultilocationPostResponse, ListMultilocationPostsForBrandResponse } from './_internal/objects/api';
|
|
3
|
+
import { CreateMultilocationPostResponse, EditMultilocationPostResponse, GetMultilocationPostResponse, ListMultilocationPostsForBrandResponse, BulkCreateMultilocationPostRequest, BulkCreateMultilocationPostResponse } from './_internal/objects/api';
|
|
4
4
|
import { MultilocationPostApiService } from './_internal/multilocation-post.api.service';
|
|
5
5
|
import { FieldMask } from './_internal/objects/field-mask';
|
|
6
6
|
import { Location, PostCustomization } from './_internal/objects/multilocation-post';
|
|
@@ -16,6 +16,7 @@ export declare class MultilocationPostsService {
|
|
|
16
16
|
listMultilocationPostsForBrand(brandId: string, startDate: Date, endDate: Date, cursor: string, pageSize: number): Observable<ListMultilocationPostsForBrandResponse>;
|
|
17
17
|
deleteMultilocationPost(brandId: string, multilocationId: string): Observable<HttpResponse<null>>;
|
|
18
18
|
getMultilocationPost(brandId: string, multilocationId: string): Observable<GetMultilocationPostResponse>;
|
|
19
|
+
bulkCreateMultilocationPost(BulkCreateMultilocationPostRequest: BulkCreateMultilocationPostRequest): Observable<BulkCreateMultilocationPostResponse>;
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultilocationPostsService, never>;
|
|
20
21
|
static ɵprov: i0.ɵɵInjectableDeclaration<MultilocationPostsService>;
|
|
21
22
|
}
|