@vendasta/social-posts 5.45.7 → 5.45.8
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/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/social-posts.service.mjs +7 -1
- package/fesm2015/vendasta-social-posts.mjs +6 -0
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +6 -0
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/social-posts.service.d.ts +4 -1
- package/package.json +1 -1
|
@@ -7930,6 +7930,12 @@ class SocialPostsService {
|
|
|
7930
7930
|
const req = new SuggestMessageRequest({ businessId: businessId, prompt: prompt, length: postLength, type: templateType, metadata: metadata });
|
|
7931
7931
|
return this.socialPostsApiService.suggestMessage(req);
|
|
7932
7932
|
}
|
|
7933
|
+
deleteSocialPost(req) {
|
|
7934
|
+
return this.socialPostsApiService.deleteSocialPost(req);
|
|
7935
|
+
}
|
|
7936
|
+
getMultiSocialPostStats(req) {
|
|
7937
|
+
return this.socialPostsApiService.getMultiSocialPostStats(req);
|
|
7938
|
+
}
|
|
7933
7939
|
}
|
|
7934
7940
|
SocialPostsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsService, deps: [{ token: SocialPostsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7935
7941
|
SocialPostsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SocialPostsService, providedIn: 'root' });
|