jamespot-front-business 1.1.87 → 1.1.88
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/dist/cjs.js +4 -1
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +4 -1
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +378 -86
- package/package.json +2 -2
package/dist/cjs.js
CHANGED
|
@@ -723,7 +723,10 @@ const initialState$j = {
|
|
|
723
723
|
const fetchComments = toolkit.createAsyncThunk('commentList/fetchCommentList', (params, { extra, rejectWithValue, dispatch }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
724
724
|
var _a;
|
|
725
725
|
try {
|
|
726
|
-
const res = yield extra.jApi.article.getComments(params, {
|
|
726
|
+
const res = yield extra.jApi.article.getComments(params, {
|
|
727
|
+
format: 'raw-list',
|
|
728
|
+
formatExtension: ['socialActions'],
|
|
729
|
+
});
|
|
727
730
|
return { idArticle: params.idArticle, list: res.result };
|
|
728
731
|
}
|
|
729
732
|
catch (error) {
|