@vendasta/social-posts 5.20.2 → 5.20.4
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/interfaces/api-v2.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api-v2.mjs +4 -1
- package/esm2020/lib/ai-instructions.service.mjs +7 -5
- package/esm2020/lib/chat-bot.service.mjs +32 -0
- package/esm2020/lib/index.mjs +2 -1
- package/fesm2015/vendasta-social-posts.mjs +37 -5
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +37 -5
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/interfaces/api-v2.interface.d.ts +1 -0
- package/lib/_internal/objects/api-v2.d.ts +1 -0
- package/lib/ai-instructions.service.d.ts +2 -2
- package/lib/chat-bot.service.d.ts +14 -0
- package/lib/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4050,6 +4050,9 @@ class AiInstructions {
|
|
|
4050
4050
|
if (typeof this.commonAiInstructions !== 'undefined') {
|
|
4051
4051
|
toReturn['commonAiInstructions'] = this.commonAiInstructions;
|
|
4052
4052
|
}
|
|
4053
|
+
if (typeof this.dataUsageStatus !== 'undefined') {
|
|
4054
|
+
toReturn['dataUsageStatus'] = this.dataUsageStatus;
|
|
4055
|
+
}
|
|
4053
4056
|
return toReturn;
|
|
4054
4057
|
}
|
|
4055
4058
|
}
|
|
@@ -5940,9 +5943,10 @@ class AiInstructionService {
|
|
|
5940
5943
|
});
|
|
5941
5944
|
return this.instructionsService.getCommonAiInstructions(request);
|
|
5942
5945
|
}
|
|
5943
|
-
createAiInstructions(businessId, partnerId, instructions) {
|
|
5946
|
+
createAiInstructions(businessId, partnerId, instructions, dataUsageStatus) {
|
|
5944
5947
|
const aiInstructions = new AiInstructions({
|
|
5945
|
-
commonAiInstructions: instructions
|
|
5948
|
+
commonAiInstructions: instructions,
|
|
5949
|
+
dataUsageStatus: dataUsageStatus,
|
|
5946
5950
|
});
|
|
5947
5951
|
const request = new CreateCommonAiInstructionsRequest({
|
|
5948
5952
|
businessId: businessId,
|
|
@@ -5951,9 +5955,10 @@ class AiInstructionService {
|
|
|
5951
5955
|
});
|
|
5952
5956
|
return this.instructionsService.createCommonAiInstructions(request);
|
|
5953
5957
|
}
|
|
5954
|
-
updateAiInstructions(businessId, partnerId, instructions) {
|
|
5958
|
+
updateAiInstructions(businessId, partnerId, instructions, dataUsageStatus) {
|
|
5955
5959
|
const aiInstructions = new AiInstructions({
|
|
5956
|
-
commonAiInstructions: instructions
|
|
5960
|
+
commonAiInstructions: instructions,
|
|
5961
|
+
dataUsageStatus: dataUsageStatus,
|
|
5957
5962
|
});
|
|
5958
5963
|
const request = new UpdateCommonAiInstructionsRequest({
|
|
5959
5964
|
businessId: businessId,
|
|
@@ -6039,9 +6044,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6039
6044
|
args: [{ providedIn: 'root' }]
|
|
6040
6045
|
}], ctorParameters: function () { return [{ type: UnsplashApiService }]; } });
|
|
6041
6046
|
|
|
6047
|
+
class ChatBotService {
|
|
6048
|
+
constructor(chatBotApiService) {
|
|
6049
|
+
this.chatBotApiService = chatBotApiService;
|
|
6050
|
+
}
|
|
6051
|
+
startChat() {
|
|
6052
|
+
return this.chatBotApiService.startChat({});
|
|
6053
|
+
}
|
|
6054
|
+
sendMessage(messageContent, threadId, actions) {
|
|
6055
|
+
const messageRequest = new SendMessageRequest({
|
|
6056
|
+
messageContent,
|
|
6057
|
+
threadId,
|
|
6058
|
+
actions,
|
|
6059
|
+
});
|
|
6060
|
+
return this.chatBotApiService.sendMessage(messageRequest);
|
|
6061
|
+
}
|
|
6062
|
+
endChat(threadId) {
|
|
6063
|
+
const endChatRequest = new SendMessageRequest({ threadId });
|
|
6064
|
+
return this.chatBotApiService.endChat(endChatRequest);
|
|
6065
|
+
}
|
|
6066
|
+
}
|
|
6067
|
+
ChatBotService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotService, deps: [{ token: ChatBotApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6068
|
+
ChatBotService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotService, providedIn: 'root' });
|
|
6069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChatBotService, decorators: [{
|
|
6070
|
+
type: Injectable,
|
|
6071
|
+
args: [{ providedIn: 'root' }]
|
|
6072
|
+
}], ctorParameters: function () { return [{ type: ChatBotApiService }]; } });
|
|
6073
|
+
|
|
6042
6074
|
/**
|
|
6043
6075
|
* Generated bundle index. Do not edit.
|
|
6044
6076
|
*/
|
|
6045
6077
|
|
|
6046
|
-
export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, CallToAction, CallToActionCallToActionType, Collection, ContentGenerationService, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, 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, 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, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SendMessageRequest, SendMessageResponse, 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, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, Urls, User, UserLink, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
|
|
6078
|
+
export { Access, Action, ActionType, AiInstructionService, AiInstructions, Ancestry, CallToAction, CallToActionCallToActionType, ChatBotService, Collection, ContentGenerationService, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, 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, 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, SSIDPostType, SchedulePostRequest, SchedulePostResponse, SchedulePostStatus, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SendMessageRequest, SendMessageResponse, 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, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdatePostTemplateRequest, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, Urls, User, UserLink, YoutubeCustomization, YoutubeCustomizationPrivacyStatus, YoutubeCustomizationV2, YoutubeCustomizationV2PrivacyStatusV2 };
|
|
6047
6079
|
//# sourceMappingURL=vendasta-social-posts.mjs.map
|